-- MySQL dump 10.13  Distrib 5.6.29, for Linux (x86_64)
--
-- Host: localhost    Database: freere13_8252046
-- ------------------------------------------------------
-- Server version	5.6.29-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 `wp_backup_and_move`
--

DROP TABLE IF EXISTS `wp_backup_and_move`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_backup_and_move` (
  `bid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `bfile` text NOT NULL,
  `backup_created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `backup_created_by` varchar(60) NOT NULL,
  PRIMARY KEY (`bid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_backup_and_move`
--

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

--
-- Table structure for table `wp_cat_redirect`
--

DROP TABLE IF EXISTS `wp_cat_redirect`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cat_redirect` (
  `id` mediumint(10) NOT NULL AUTO_INCREMENT,
  `cat_id` mediumint(10) NOT NULL,
  `url` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_cat_redirect`
--

LOCK TABLES `wp_cat_redirect` WRITE;
/*!40000 ALTER TABLE `wp_cat_redirect` DISABLE KEYS */;
INSERT INTO `wp_cat_redirect` VALUES (1,1,'http://freereincenter.com/?page_id=44'),(2,4,'http://freereincenter.com/?page_id=163'),(3,3,'http://freereincenter.com/?page_id=187');
/*!40000 ALTER TABLE `wp_cat_redirect` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

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

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

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

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

--
-- Table structure for table `wp_custom_headers`
--

DROP TABLE IF EXISTS `wp_custom_headers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_custom_headers` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `post_id` bigint(11) NOT NULL DEFAULT '0',
  `url` varchar(255) NOT NULL,
  `header_type` varchar(255) NOT NULL,
  `filetype` varchar(255) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=437 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_custom_headers`
--

LOCK TABLES `wp_custom_headers` WRITE;
/*!40000 ALTER TABLE `wp_custom_headers` DISABLE KEYS */;
INSERT INTO `wp_custom_headers` VALUES (1,1,'','media',''),(2,5,'Default','media','Default'),(3,7,'image1.jpg','media','jpg'),(4,9,'image3.jpg','media','jpg'),(5,10,'Default','media','Default'),(6,12,'Default','media','Default'),(7,13,'','media',''),(8,14,'image3.jpg','media','jpg'),(9,16,'Default','media','Default'),(10,18,'Default','media','Default'),(11,20,'image1.jpg','media','jpg'),(12,21,'','media',''),(13,22,'','media',''),(14,23,'','media',''),(15,24,'','media',''),(16,25,'','media',''),(17,26,'','media',''),(18,27,'','media',''),(19,28,'','media',''),(20,29,'','media',''),(21,30,'','media',''),(22,2,'','media',''),(23,42,'Default','media','Default'),(24,48,'','media',''),(25,54,'','media',''),(26,55,'','media',''),(27,58,'','media',''),(28,63,'Default','media','Default'),(29,65,'Default','media','Default'),(30,80,'','media',''),(31,101,'','media',''),(32,108,'','media',''),(33,109,'','media',''),(34,110,'','media',''),(35,114,'','media',''),(36,122,'','media',''),(37,123,'','media',''),(38,125,'Default','media','Default'),(39,135,'','media',''),(40,147,'','media',''),(41,148,'','media',''),(42,149,'','media',''),(43,151,'Default','media','Default'),(44,166,'','media',''),(45,167,'','media',''),(46,174,'','media',''),(47,175,'','media',''),(48,180,'','media',''),(49,181,'','media',''),(50,190,'Default','media','Default'),(51,205,'','media',''),(52,210,'','media',''),(53,219,'','media',''),(54,223,'','media',''),(55,233,'','media',''),(56,237,'','media',''),(57,240,'','media',''),(58,241,'','media',''),(59,263,'','media',''),(60,266,'','media',''),(61,272,'','media',''),(62,273,'','media',''),(63,276,'','media',''),(64,291,'','media',''),(65,296,'','media',''),(66,300,'','media',''),(67,301,'','media',''),(68,305,'','media',''),(69,318,'','media',''),(70,320,'Default','media','Default'),(71,329,'','media',''),(72,330,'','media',''),(73,331,'','media',''),(74,335,'','media',''),(75,336,'','media',''),(76,354,'','media',''),(77,360,'','media',''),(78,361,'','media',''),(79,371,'','media',''),(80,374,'','media',''),(81,376,'','media',''),(82,383,'','media',''),(83,384,'Default','media','Default'),(84,395,'','media',''),(85,400,'','media',''),(86,412,'','media',''),(87,414,'','media',''),(88,428,'','media',''),(89,429,'','media',''),(90,430,'','media',''),(91,431,'','media',''),(92,433,'','media',''),(93,439,'','media',''),(94,440,'','media',''),(95,441,'','media',''),(96,11475,'','media',''),(97,11476,'','media',''),(98,11477,'','media',''),(99,11478,'','media',''),(100,11479,'','media',''),(101,11480,'','media',''),(102,11481,'','media',''),(103,11482,'','media',''),(104,11483,'','media',''),(105,1876,'','media',''),(106,1877,'','media',''),(107,1878,'','media',''),(108,1879,'','media',''),(109,1880,'','media',''),(110,1881,'','media',''),(111,11485,'','media',''),(112,11486,'','media',''),(113,11487,'','media',''),(114,11488,'','media',''),(115,11489,'','media',''),(116,11490,'','media',''),(117,11491,'','media',''),(118,11492,'','media',''),(119,11493,'','media',''),(120,11494,'','media',''),(121,11495,'','media',''),(122,11496,'','media',''),(123,11497,'','media',''),(124,11498,'','media',''),(125,11499,'','media',''),(126,11500,'','media',''),(127,11501,'','media',''),(128,11502,'','media',''),(129,11503,'','media',''),(130,11504,'','media',''),(131,11505,'','media',''),(132,11506,'','media',''),(133,11507,'','media',''),(134,11508,'','media',''),(135,11509,'','media',''),(136,11510,'','media',''),(137,11511,'','media',''),(138,11512,'','media',''),(139,11513,'','media',''),(140,11514,'','media',''),(141,11515,'','media',''),(142,11516,'','media',''),(143,11517,'','media',''),(144,11518,'','media',''),(145,11519,'','media',''),(146,11520,'','media',''),(147,11521,'','media',''),(148,11522,'','media',''),(149,11523,'','media',''),(150,11524,'','media',''),(151,11525,'','media',''),(152,730,'','media',''),(153,1290,'','media',''),(154,1298,'','media',''),(155,1345,'','media',''),(156,1522,'','media',''),(157,1693,'','media',''),(158,2291,'','media',''),(159,2300,'','media',''),(160,2318,'','media',''),(161,2367,'','media',''),(162,2398,'','media',''),(163,2466,'','media',''),(164,2660,'','media',''),(165,2712,'','media',''),(166,2745,'','media',''),(167,2776,'','media',''),(168,2803,'','media',''),(169,3073,'','media',''),(170,3089,'','media',''),(171,3474,'','media',''),(172,3492,'','media',''),(173,3494,'','media',''),(174,3496,'','media',''),(175,3524,'','media',''),(176,3526,'','media',''),(177,3528,'','media',''),(178,3530,'','media',''),(179,3610,'','media',''),(180,3628,'','media',''),(181,3638,'','media',''),(182,3652,'','media',''),(183,3655,'','media',''),(184,3658,'','media',''),(185,3660,'','media',''),(186,3662,'','media',''),(187,3678,'','media',''),(188,4204,'','media',''),(189,3697,'','media',''),(190,3698,'','media',''),(191,3699,'','media',''),(192,3700,'','media',''),(193,3705,'','media',''),(194,3713,'','media',''),(195,3717,'','media',''),(196,3719,'','media',''),(197,3725,'','media',''),(198,3727,'','media',''),(199,3729,'','media',''),(200,3731,'','media',''),(201,3733,'','media',''),(202,3735,'','media',''),(203,3737,'','media',''),(204,3739,'','media',''),(205,3741,'','media',''),(206,3743,'','media',''),(207,3745,'','media',''),(208,3747,'','media',''),(209,3749,'','media',''),(210,3751,'','media',''),(211,3754,'','media',''),(212,3756,'','media',''),(213,3813,'','media',''),(214,3815,'','media',''),(215,4097,'','media',''),(216,4098,'','media',''),(217,4099,'','media',''),(218,4100,'','media',''),(219,4120,'','media',''),(220,4126,'','media',''),(221,4138,'','media',''),(222,4140,'','media',''),(223,4142,'','media',''),(224,4144,'','media',''),(225,4146,'','media',''),(226,4148,'','media',''),(227,4150,'','media',''),(228,4169,'','media',''),(229,4172,'','media',''),(230,4356,'','media',''),(231,4427,'','media',''),(232,4442,'','media',''),(233,4461,'','media',''),(234,4546,'','media',''),(235,4548,'','media',''),(236,9829,'','media',''),(237,9831,'','media',''),(238,9833,'','media',''),(239,9883,'','media',''),(240,10013,'','media',''),(241,10015,'','media',''),(242,10038,'','media',''),(243,10040,'','media',''),(244,10042,'','media',''),(245,10045,'','media',''),(246,10047,'','media',''),(247,10049,'','media',''),(248,10050,'','media',''),(249,10051,'','media',''),(250,10052,'','media',''),(251,10075,'','media',''),(252,10489,'','media',''),(253,10519,'','media',''),(254,10522,'','media',''),(255,10526,'','media',''),(256,10585,'','media',''),(257,10589,'','media',''),(258,10595,'','media',''),(259,10598,'','media',''),(260,10602,'','media',''),(261,10643,'','media',''),(262,10646,'','media',''),(263,10709,'','media',''),(264,10813,'','media',''),(265,11034,'','media',''),(266,11177,'','media',''),(267,11188,'','media',''),(268,11195,'','media',''),(269,11526,'','media',''),(270,11527,'','media',''),(271,11528,'','media',''),(272,211,'','media',''),(273,11529,'','media',''),(274,11530,'','media',''),(275,4112,'','media',''),(276,4114,'','media',''),(277,4115,'','media',''),(278,4116,'','media',''),(279,4117,'','media',''),(280,11204,'','media',''),(281,11229,'','media',''),(282,11234,'','media',''),(283,11245,'','media',''),(284,11251,'','media',''),(285,11255,'','media',''),(286,11297,'','media',''),(287,11304,'','media',''),(288,11313,'','media',''),(289,4118,'','media',''),(290,4124,'','media',''),(291,4125,'','media',''),(292,11531,'','media',''),(293,11532,'','media',''),(294,11533,'','media',''),(295,11534,'','media',''),(296,11535,'','media',''),(297,11536,'','media',''),(298,11537,'','media',''),(299,11538,'','media',''),(300,11539,'','media',''),(301,11540,'','media',''),(302,11541,'','media',''),(303,11542,'','media',''),(304,11543,'','media',''),(305,11544,'','media',''),(306,11545,'','media',''),(307,11546,'','media',''),(308,11547,'','media',''),(309,11548,'','media',''),(310,11549,'','media',''),(311,11550,'','media',''),(312,11551,'','media',''),(313,11552,'','media',''),(314,11553,'','media',''),(315,11554,'','media',''),(316,11555,'','media',''),(317,11556,'','media',''),(318,11557,'','media',''),(319,11558,'','media',''),(320,11559,'','media',''),(321,11560,'','media',''),(322,11561,'','media',''),(323,11562,'','media',''),(324,11563,'','media',''),(325,11564,'','media',''),(326,11565,'','media',''),(327,11566,'','media',''),(328,11567,'','media',''),(329,11568,'','media',''),(330,11569,'','media',''),(331,11570,'','media',''),(332,11571,'','media',''),(333,11572,'','media',''),(334,11573,'','media',''),(335,11574,'','media',''),(336,11575,'','media',''),(337,11576,'','media',''),(338,11577,'','media',''),(339,11578,'','media',''),(340,11579,'','media',''),(341,11580,'','media',''),(342,11581,'','media',''),(343,11582,'','media',''),(344,11583,'','media',''),(345,11584,'','media',''),(346,11585,'','media',''),(347,11586,'','media',''),(348,11587,'','media',''),(349,11588,'','media',''),(350,11589,'','media',''),(351,11590,'','media',''),(352,11591,'','media',''),(353,11592,'','media',''),(354,11593,'','media',''),(355,11594,'','media',''),(356,11595,'','media',''),(357,11596,'','media',''),(358,11597,'','media',''),(359,11598,'','media',''),(360,11599,'','media',''),(361,11600,'','media',''),(362,11601,'','media',''),(363,11602,'','media',''),(364,11603,'','media',''),(365,11604,'','media',''),(366,11605,'','media',''),(367,11606,'','media',''),(368,11607,'','media',''),(369,11608,'','media',''),(370,11609,'','media',''),(371,11610,'','media',''),(372,11611,'','media',''),(373,11612,'','media',''),(374,11613,'','media',''),(375,11614,'','media',''),(376,11615,'','media',''),(377,11616,'','media',''),(378,11617,'','media',''),(379,11618,'','media',''),(380,11619,'','media',''),(381,11620,'','media',''),(382,11621,'','media',''),(383,11622,'','media',''),(384,11623,'','media',''),(385,11624,'','media',''),(386,11625,'','media',''),(387,11626,'','media',''),(388,11627,'','media',''),(389,11628,'','media',''),(390,11629,'','media',''),(391,11630,'','media',''),(392,11631,'','media',''),(393,11632,'','media',''),(394,11633,'','media',''),(395,11634,'','media',''),(396,11635,'','media',''),(397,11636,'','media',''),(398,11637,'','media',''),(399,11638,'','media',''),(400,11639,'','media',''),(401,11640,'','media',''),(402,11641,'','media',''),(403,11642,'','media',''),(404,11643,'','media',''),(405,11644,'','media',''),(406,11645,'','media',''),(407,11646,'','media',''),(408,11647,'','media',''),(409,11648,'','media',''),(410,11649,'','media',''),(411,11650,'','media',''),(412,11651,'','media',''),(413,11652,'','media',''),(414,11653,'','media',''),(415,11654,'','media',''),(416,11655,'','media',''),(417,11656,'','media',''),(418,11657,'','media',''),(419,11658,'','media',''),(420,11659,'','media',''),(421,11660,'','media',''),(422,11661,'','media',''),(423,11662,'','media',''),(424,11663,'','media',''),(425,11664,'','media',''),(426,11665,'','media',''),(427,11666,'','media',''),(428,11667,'','media',''),(429,11668,'','media',''),(430,11669,'','media',''),(431,11670,'','media',''),(432,11671,'','media',''),(433,11672,'','media',''),(434,11673,'','media',''),(435,11674,'','media',''),(436,11683,'','media','');
/*!40000 ALTER TABLE `wp_custom_headers` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_layerslider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_layerslider` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `author` int(10) NOT NULL DEFAULT '0',
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `data` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_c` int(10) NOT NULL,
  `date_m` int(11) NOT NULL,
  `flag_hidden` tinyint(1) NOT NULL DEFAULT '0',
  `flag_deleted` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_layerslider`
--

LOCK TABLES `wp_layerslider` WRITE;
/*!40000 ALTER TABLE `wp_layerslider` DISABLE KEYS */;
INSERT INTO `wp_layerslider` VALUES (1,1,'Avada Captions Tall','','{\"properties\":{\"post_taxonomy\":\"0\",\"post_orderby\":\"date\",\"post_order\":\"DESC\",\"post_offset\":\"-1\",\"title\":\"Avada Captions Tall\",\"slug\":\"\",\"width\":\"615px\",\"height\":\"434px\",\"responsive\":\"on\",\"maxwidth\":\"\",\"responsiveunder\":\"0\",\"sublayercontainer\":\"0\",\"autostart\":\"on\",\"firstlayer\":\"1\",\"animatefirstlayer\":\"on\",\"keybnav\":\"on\",\"touchnav\":\"on\",\"loops\":\"0\",\"forceloopnum\":\"on\",\"twowayslideshow\":\"on\",\"skin\":\"borderlesslight\",\"backgroundcolor\":\"transparent\",\"backgroundimage\":\"\",\"sliderstyle\":\"margin-bottom: 50px;\",\"thumb_nav\":\"disabled\",\"thumb_container_width\":\"60%\",\"thumb_width\":\"100\",\"thumb_height\":\"60\",\"thumb_active_opacity\":\"35\",\"thumb_inactive_opacity\":\"100\",\"autoplayvideos\":\"on\",\"autopauseslideshow\":\"auto\",\"youtubepreview\":\"maxresdefault.jpg\",\"imgpreload\":\"on\",\"yourlogoId\":\"\",\"yourlogo\":\"\",\"yourlogostyle\":\"left: 10px; top: 10px;\",\"yourlogolink\":\"\",\"yourlogotarget\":\"_self\",\"cbinit\":\"function(element) { }\",\"cbstart\":\"function(data) { }\",\"cbstop\":\"function(data) { }\",\"cbpause\":\"function(data) { }\",\"cbanimstart\":\"function(data) { }\",\"cbanimstop\":\"function(data) { }\",\"cbprev\":\"function(data) { }\",\"cbnext\":\"function(data) { }\"},\"layers\":[{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2012\\/07\\/portfolio_2.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2012\\/07\\/portfolio_2.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"4000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"Layer #3\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Avada Theme\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"267px\",\"left\":\"31px\",\"style\":\"color: #fff; \\r\\ntext-shadow: none; \\r\\nfont-size: 22px; \\r\\nline-height: 34px; \\r\\npadding: 0px 10px; \\r\\npadding-top: 1px;\\r\\nmargin: 0px; \\r\\nborder-width: 0px; \\r\\nborder-style: none; \\r\\nbackground-color:#000;\\t\\r\\nfont-family: PTSansRegular, Arial, Helvetica, sans-serif;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #1\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Amazingly Flexible\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"left\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"310px\",\"left\":\"31px\",\"style\":\"font-size: 42px; \\r\\nline-height: 45px; \\r\\nfont-family: museoslab500regular;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #2\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"We include so many features, shortcodes and options <br> that provides endless combinations for page layouts\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"15px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"21px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"364px\",\"left\":\"32px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]},{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2012\\/07\\/portfolio_1.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2012\\/07\\/portfolio_1.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"4000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"Layer #3\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Avada Is\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"267px\",\"left\":\"31px\",\"style\":\"color: #fff; \\r\\ntext-shadow: none; \\r\\nfont-size: 22px; \\r\\nline-height: 34px; \\r\\npadding: 0px 10px; \\r\\npadding-top: 1px;\\r\\nmargin: 0px; \\r\\nborder-width: 0px; \\r\\nborder-style: none; \\r\\nbackground-color:#000;\\t\\r\\nfont-family: PTSansRegular, Arial, Helvetica, sans-serif;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #1\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Built For You\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"left\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"museoslab500regular\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"42px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"310px\",\"left\":\"31px\",\"style\":\"\\r\\n\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #2\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"We\\\\\'ve put so much thought and care into <br> making Avada user friendly for everyone\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"15px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"21px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"364px\",\"left\":\"32px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]}]}',1472502003,1472502003,0,0),(2,1,'Avada Full Width','','{\"properties\":{\"post_taxonomy\":\"0\",\"post_orderby\":\"date\",\"post_order\":\"DESC\",\"post_offset\":\"-1\",\"title\":\"Avada Full Width\",\"slug\":\"\",\"width\":\"100%\",\"height\":\"400px\",\"maxwidth\":\"\",\"forceresponsive\":\"on\",\"responsiveunder\":\"960\",\"sublayercontainer\":\"960\",\"autostart\":\"on\",\"pauseonhover\":\"on\",\"firstlayer\":\"1\",\"animatefirstlayer\":\"on\",\"keybnav\":\"on\",\"touchnav\":\"on\",\"loops\":\"0\",\"forceloopnum\":\"on\",\"twowayslideshow\":\"on\",\"skin\":\"avada\",\"backgroundcolor\":\"#f6f6f6\",\"backgroundimage\":\"\",\"sliderstyle\":\"margin-bottom: 0px;\",\"navprevnext\":\"on\",\"navstartstop\":\"on\",\"navbuttons\":\"on\",\"circletimer\":\"on\",\"thumb_nav\":\"hover\",\"thumb_container_width\":\"60%\",\"thumb_width\":\"100\",\"thumb_height\":\"60\",\"thumb_active_opacity\":\"35\",\"thumb_inactive_opacity\":\"100\",\"autopauseslideshow\":\"auto\",\"youtubepreview\":\"maxresdefault.jpg\",\"imgpreload\":\"on\",\"yourlogoId\":\"\",\"yourlogo\":\"\",\"yourlogostyle\":\"left: -10px; top: -10px;\",\"yourlogolink\":\"\",\"yourlogotarget\":\"_self\",\"cbinit\":\"function(element) { }\",\"cbstart\":\"function(data) { }\",\"cbstop\":\"function(data) { }\",\"cbpause\":\"function(data) { }\",\"cbanimstart\":\"function(data) { }\",\"cbanimstop\":\"function(data) { }\",\"cbprev\":\"function(data) { }\",\"cbnext\":\"function(data) { }\"},\"layers\":[{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"\",\"background\":\"\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"6000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"Clouds\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_4.jpg\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_4.jpg\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"0px\",\"left\":\"0px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Mac\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/mac.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/mac.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"left\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"34px\",\"left\":\"506px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"iPad\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"157px\",\"left\":\"457px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"iPhone\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"800\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"209px\",\"left\":\"403px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Avada Wordpress Theme\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Avada WP Theme\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1400\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"40\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"83px\",\"left\":\"1px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Made With Care...\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Made With Care For Our Users\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1800\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"357\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"38\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"24\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"38\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\"}\",\"top\":\"135px\",\"left\":\"1px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Lid est laborum ...\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Lid est laborum dolo rumes fugats untras. Et harums ser quidem<br \\/> \\r\\nrerum facilisdolores nemis omnis fugiats vitaes nemo minima<br \\/> \\r\\nrerums unsers sadips amets sadips ipsums\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2200\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"195px\",\"left\":\"2px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Purchase Now\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"[button link=\\\\\\\"http:\\/\\/themeforest.net\\/item\\/avada-responsive-multipurpose-theme\\/2833226?ref=ThemeFusion\\\\\\\" color=\\\\\\\"default\\\\\\\" size=\\\\\\\"\\\\\\\" type=\\\\\\\"\\\\\\\" shape=\\\\\\\"\\\\\\\" target=\\\\\\\"_self\\\\\\\" title=\\\\\\\"\\\\\\\" gradient_colors=\\\\\\\"|\\\\\\\" gradient_hover_colors=\\\\\\\"|\\\\\\\" accent_color=\\\\\\\"\\\\\\\" accent_hover_color=\\\\\\\"\\\\\\\" bevel_color=\\\\\\\"\\\\\\\" border_width=\\\\\\\"1px\\\\\\\" shadow=\\\\\\\"\\\\\\\" icon=\\\\\\\"\\\\\\\" icon_divider=\\\\\\\"yes\\\\\\\" icon_position=\\\\\\\"left\\\\\\\" modal=\\\\\\\"\\\\\\\" animation_type=\\\\\\\"0\\\\\\\" animation_direction=\\\\\\\"down\\\\\\\" animation_speed=\\\\\\\"0.1\\\\\\\" class=\\\\\\\"\\\\\\\" id=\\\\\\\"\\\\\\\"]Purchase Now![\\/button]\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2400\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"279px\",\"left\":\"1px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]},{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_5.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_5.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"4000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"iPad\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\".2\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\".2\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"54px\",\"left\":\"-1px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Avada Is Better ...\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Avada Is Better Than Ever\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"700\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"295\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"22px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"67px\",\"left\":\"666px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"100% Fully Responsive\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"100% Fully Responsive\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1100\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"250\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"22px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"106px\",\"left\":\"711px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"With Numerous\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"With Numerous\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"190\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"22px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\"}\",\"top\":\"175px\",\"left\":\"770px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Additions & Optimizations\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Additions & Optimizations\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1800\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"285\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"22px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333333\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\"}\",\"top\":\"215px\",\"left\":\"675px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"It Doesn\\\\\'t Get Better\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"It Doesn\\\\\'t Get Better Than This\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2100\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"342\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"22px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#333333\\\\\\\"}\",\"top\":\"289px\",\"left\":\"617px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]},{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_3.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_3.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"4000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"Create Fantastic...\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"Create Fantastic Sliders With Animations\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"top\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"200\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"430\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"21px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#000000\\\\\\\"}\",\"top\":\"82px\",\"left\":\"270px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Be Creative\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"BE CREATIVE\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"700\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"150px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\"}\",\"top\":\"178px\",\"left\":\"81px\",\"style\":\"text-align: center; font-weight: normal; text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"The Possibilities Are...\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"The Possibilities Are Endless And Results Stunning\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"bottom\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":false,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"right\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":false,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1.0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"515\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"21px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"35\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#000000\\\\\\\"}\",\"top\":\"275px\",\"left\":\"232px\",\"style\":\"text-align: center; font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]}]}',1472502003,1472502003,0,0),(3,1,'Avada Small Slider','','{\"properties\":{\"title\":\"Avada Small Slider\",\"width\":\"451px\",\"height\":\"220px\",\"responsive\":\"on\",\"responsiveunder\":\"0\",\"sublayercontainer\":\"0\",\"autostart\":\"on\",\"pauseonhover\":\"on\",\"firstlayer\":\"1\",\"animatefirstlayer\":\"on\",\"twowayslideshow\":\"on\",\"loops\":\"0\",\"forceloopnum\":\"on\",\"autoplayvideos\":\"on\",\"autopauseslideshow\":\"auto\",\"youtubepreview\":\"maxresdefault.jpg\",\"keybnav\":\"on\",\"touchnav\":\"on\",\"skin\":\"borderlesslight3d\",\"backgroundcolor\":\"#f6f6f6\",\"backgroundimage\":\"\",\"sliderstyle\":\"\",\"navstartstop\":\"on\",\"navbuttons\":\"on\",\"hoverprevnext\":\"on\",\"circletimer\":\"on\",\"thumb_nav\":\"hover\",\"thumb_width\":\"100\",\"thumb_height\":\"60\",\"thumb_container_width\":\"60%\",\"thumb_active_opacity\":\"35\",\"thumb_inactive_opacity\":\"100\",\"imgpreload\":\"on\",\"bodyinclude\":\"on\",\"yourlogo\":\"\",\"yourlogostyle\":\"left: 10px; top: 10px;\",\"yourlogolink\":\"\",\"yourlogotarget\":\"_self\",\"cbinit\":\"function(element) { }\",\"cbstart\":\"function(data) { }\",\"cbstop\":\"function(data) { }\",\"cbpause\":\"function(data) { }\",\"cbanimstart\":\"function(data) { }\",\"cbanimstop\":\"function(data) { }\",\"cbprev\":\"function(data) { }\",\"cbnext\":\"function(data) { }\"},\"layers\":[{\"properties\":{\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"background\":\"\",\"thumbnail\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"slidedelay\":\"4000\",\"new_transitions\":\"on\",\"slidedirection\":\"right\",\"timeshift\":\"0\",\"durationin\":\"1500\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"0\",\"durationout\":\"1500\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\",\"thumbnailId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\"},\"sublayers\":[{\"subtitle\":\"iPhone\",\"type\":\"img\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"html\":\"\",\"slidedirection\":\"right\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"200\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"28px\",\"left\":\"73px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\"},{\"subtitle\":\"Logo\",\"type\":\"img\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\",\"html\":\"\",\"slidedirection\":\"top\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"500\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"66px\",\"left\":\"194px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\"},{\"subtitle\":\"Wordpress Theme\",\"type\":\"p\",\"image\":\"\",\"html\":\"Wordpress Theme\",\"slidedirection\":\"bottom\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"1000\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"23px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\"}\",\"top\":\"114px\",\"left\":\"195px\",\"style\":\"font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]},{\"properties\":{\"3d_transitions\":\"\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"background\":\"\",\"thumbnail\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"slidedelay\":\"4000\",\"new_transitions\":\"on\",\"slidedirection\":\"right\",\"timeshift\":\"0\",\"durationin\":\"1500\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"0\",\"durationout\":\"1500\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\",\"thumbnailId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\"},\"sublayers\":[{\"subtitle\":\"iPad\",\"type\":\"img\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"html\":\"\",\"slidedirection\":\"right\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"200\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"33px\",\"left\":\"40px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\"},{\"subtitle\":\"Logo\",\"type\":\"img\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\",\"html\":\"\",\"slidedirection\":\"top\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"500\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"70px\",\"left\":\"235px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\"},{\"subtitle\":\"#1 Selling Theme\",\"type\":\"p\",\"image\":\"\",\"html\":\"#1 Selling Theme\",\"slidedirection\":\"bottom\",\"durationin\":\"1000\",\"easingin\":\"easeInOutQuint\",\"delayin\":\"1000\",\"rotatein\":\"0\",\"scalein\":\"1.0\",\"slideoutdirection\":\"auto\",\"durationout\":\"1000\",\"easingout\":\"easeInOutQuint\",\"delayout\":\"0\",\"rotateout\":\"0\",\"scaleout\":\"1.0\",\"level\":\"-1\",\"showuntil\":\"0\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"23px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#a0ce4e\\\\\\\"}\",\"top\":\"115px\",\"left\":\"234px\",\"style\":\"font-weight: normal;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]}]}',1472502003,1472502003,0,0),(4,1,'Avada Transparent Header','','{\"properties\":{\"post_type\":[\"attachment\"],\"post_taxonomy\":\"0\",\"post_orderby\":\"date\",\"post_order\":\"DESC\",\"post_offset\":\"-1\",\"title\":\"Avada Transparent Header\",\"slug\":\"\",\"width\":\"100%\",\"height\":\"650px\",\"maxwidth\":\"\",\"forceresponsive\":\"on\",\"responsiveunder\":\"940\",\"sublayercontainer\":\"1100\",\"autostart\":\"on\",\"firstlayer\":\"1\",\"animatefirstlayer\":\"on\",\"keybnav\":\"on\",\"touchnav\":\"on\",\"loops\":\"0\",\"skin\":\"v5\",\"backgroundcolor\":\"\",\"backgroundimage\":\"\",\"sliderstyle\":\"margin-bottom: 0px;\",\"navprevnext\":\"on\",\"navstartstop\":\"on\",\"navbuttons\":\"on\",\"hoverprevnext\":\"on\",\"circletimer\":\"on\",\"thumb_nav\":\"hover\",\"thumb_container_width\":\"60%\",\"thumb_width\":\"100\",\"thumb_height\":\"60\",\"thumb_active_opacity\":\"35\",\"thumb_inactive_opacity\":\"100\",\"autopauseslideshow\":\"auto\",\"youtubepreview\":\"maxresdefault.jpg\",\"imgpreload\":\"on\",\"lazyload\":\"on\",\"yourlogoId\":\"\",\"yourlogo\":\"\",\"yourlogostyle\":\"left: -10px; top: -10px;\",\"yourlogolink\":\"\",\"yourlogotarget\":\"_self\",\"cbinit\":\"function(element) {\\r\\n\\r\\n}\",\"cbstart\":\"function(data) {\\r\\n\\r\\n}\",\"cbstop\":\"function(data) {\\r\\n\\r\\n}\",\"cbpause\":\"function(data) {\\r\\n\\r\\n}\",\"cbanimstart\":\"function(data) {\\r\\n\\r\\n}\",\"cbanimstop\":\"function(data) {\\r\\n\\r\\n}\",\"cbprev\":\"function(data) {\\r\\n\\r\\n}\",\"cbnext\":\"function(data) {\\r\\n\\r\\n}\"},\"layers\":[{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"75,79\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/ls_bkgd_color1.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/ls_bkgd_color1.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"11000\",\"timeshift\":\"0\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"5-1\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_1.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_1.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"right -50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"390px\",\"left\":\"0px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"5-2\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_2.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_2.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1300\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left -50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"390px\",\"left\":\"135px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"5-3\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_3.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_3.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1600\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% bottom 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"267px\",\"left\":\"135px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"5-4\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_4.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_4.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1900\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"-90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"right 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"right 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"267px\",\"left\":\"0px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"5-5\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_5.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_5.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2200\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% bottom 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"right 150% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"145px\",\"left\":\"0px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"5-6\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_6.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/A2_6.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left 150% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"145px\",\"left\":\"135px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"AVADA\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"AVADA\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"3000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeOutElastic\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% bottom 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"-90\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left bottom 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"340px\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"70px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#000\\\\\\\",\\\\\\\"border-radius\\\\\\\":\\\\\\\"5px\\\\\\\"}\",\"top\":\"132px\",\"left\":\"294px\",\"style\":\"font-weight: 500; text-align: center;  \\r\\nletter-spacing: .1em;\\r\\nfont-family: museoslab500regular; line-height: 115%;\\r\\nopacity: .3;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"POWERFUL OPTIONS\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"POWERFUL OPTIONS\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"80\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"4000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"30\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"-30\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"height\\\\\\\":\\\\\\\"40px\\\\\\\",\\\\\\\"padding-right\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"padding-left\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"37px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#fa6b4b\\\\\\\",\\\\\\\"border-radius\\\\\\\":\\\\\\\"4px\\\\\\\"}\",\"top\":\"242px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"for just about anything you need!\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"for just about anything you need to help customize!\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"4400\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"25% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"100\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"24\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333\\\\\\\"}\",\"top\":\"288px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"AMAZING SLIDERS\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"AMAZING SLIDERS\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"80\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"4700\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"30\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"-30\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"height\\\\\\\":\\\\\\\"40px\\\\\\\",\\\\\\\"padding-right\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"padding-left\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"37px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#fa6b4b\\\\\\\",\\\\\\\"border-radius\\\\\\\":\\\\\\\"4px\\\\\\\"}\",\"top\":\"343px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"slide, fade, scale, skew and rotate layers!\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"slide, fade, scale, skew and rotate your individual layers!\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"5100\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"25% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"100\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"24\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333\\\\\\\"}\",\"top\":\"391px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"OUTSTANDING SUPPORT\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"OUTSTANDING SUPPORT\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"80\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"5400\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"30\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"20\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"-30\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"left 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"height\\\\\\\":\\\\\\\"40px\\\\\\\",\\\\\\\"padding-right\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"padding-left\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"37px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#fa6b4b\\\\\\\",\\\\\\\"border-radius\\\\\\\":\\\\\\\"4px\\\\\\\"}\",\"top\":\"445px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"trust in us for after sale support!\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"trust in us for after sale support, we got your back!\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"5800\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"25% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"100\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"750\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"24\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#333\\\\\\\"}\",\"top\":\"490px\",\"left\":\"325px\",\"style\":\"font-weight: 300;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #14\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/html5-color.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/html5-color.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"-100\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"6300\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutCubic\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"-180\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"189px\",\"left\":\"990px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #14 copy\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/vimeo-color.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/vimeo-color.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"-100\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"6500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutCubic\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"-180\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"305px\",\"left\":\"990px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"Layer #14 copy copy\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/youtube-color.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/youtube-color.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"-100\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"6700\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutCubic\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"-180\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"430px\",\"left\":\"990px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]},{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"\",\"2d_transitions\":\"21,105\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/bg6b.jpg\",\"background\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/bg6b.jpg\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"8000\",\"timeshift\":\"-1000\",\"layer_link\":\"\",\"layer_link_target\":\"_self\",\"id\":\"\",\"deeplink\":\"\"},\"sublayers\":[{\"subtitle\":\"circle\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/circle.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/circle.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"3000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"linear\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"linear\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"2\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"2\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"115px\",\"left\":\"50%\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"circle 2\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/circle.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/layerslider\\/Transparent-Header-Slider\\/circle.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"4000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"linear\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"linear\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"2\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"2\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"115px\",\"left\":\"50%\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"&\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"&\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"200px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#f06a52\\\\\\\"}\",\"top\":\"65px\",\"left\":\"2px\",\"style\":\"font-weight: 300; opacity: .4\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"all these features\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"ALL THIS\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"-50\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-50\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"height\\\\\\\":\\\\\\\"40px\\\\\\\",\\\\\\\"padding-right\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"padding-left\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"29px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"37px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#bd5949\\\\\\\"}\",\"top\":\"149px\",\"left\":\"0px\",\"style\":\"font-weight: 300; background: white; background: rgba(255,255,255,.85)\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"much more!\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"much more!\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"50\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2000\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"-60\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-50\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"-60\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"29px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#bd5949\\\\\\\"}\",\"top\":\"199px\",\"left\":\"45px\",\"style\":\"font-weight: 500;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"to create\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"...to create\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"right bottom 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"right bottom 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#bd5949\\\\\\\"}\",\"top\":\"422px\",\"left\":\"958px\",\"style\":\"font-weight: 500; text-align: right;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"the best slider\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"THE BEST SLIDER\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"3250\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeOutElastic\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% top 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% bottom 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"260px\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"40px\\\\\\\",\\\\\\\"padding-right\\\\\\\":\\\\\\\"10px\\\\\\\",\\\\\\\"font-family\\\\\\\":\\\\\\\"Lato, \\\\\'Open Sans\\\\\', sans-serif\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"37px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"background\\\\\\\":\\\\\\\"#f06a52\\\\\\\"}\",\"top\":\"463px\",\"left\":\"828px\",\"style\":\"font-weight: 300; text-align: right;\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"with no compromises\",\"media\":\"text\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"with no compromises!\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"-50\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"3500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-50\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"1000\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1.5\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"\\\\\'Indie Flower\\\\\'\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"30px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"#d9482b\\\\\\\"}\",\"top\":\"512px\",\"left\":\"829px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"},{\"subtitle\":\"ls5box\",\"media\":\"img\",\"type\":\"p\",\"imageId\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad.png\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad.png\",\"html\":\"\",\"post_text_length\":\"\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"80\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\".8\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\".8\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\".8\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\".8\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"url\":\"\",\"target\":\"_self\",\"styles\":\"{}\",\"top\":\"147px\",\"left\":\"289px\",\"style\":\"\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\"}]}]}',1472502003,1472502003,0,0);
/*!40000 ALTER TABLE `wp_layerslider` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 `wp_links`
--

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

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

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `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=77157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://freereincenter.com','yes'),(2,'blogname','Avada Classic','yes'),(3,'blogdescription','Horses Helping Humans Heal','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','freerein1325@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','closed','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:21:{i:0;s:27:\"LayerSlider/layerslider.php\";i:1;s:35:\"backup-and-move/backup_and_move.php\";i:2;s:19:\"bbpress/bbpress.php\";i:3;s:37:\"boldgrid-staging/boldgrid-staging.php\";i:4;s:55:\"category-redirect-to-post-or-page/category_redirect.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:33:\"dynamic-headers/custom-header.php\";i:7;s:29:\"easy-columns/easy-columns.php\";i:8;s:31:\"exclude-pages/exclude_pages.php\";i:9;s:49:\"facebook-button-plugin/facebook-button-plugin.php\";i:10;s:27:\"fusion-core/fusion-core.php\";i:11;s:35:\"googleanalytics/googleanalytics.php\";i:12;s:19:\"jetpack/jetpack.php\";i:13;s:29:\"my-page-order/mypageorder.php\";i:14;s:31:\"page-links-to/page-links-to.php\";i:15;s:35:\"post-page-notes/post-page-notes.php\";i:16;s:23:\"revslider/revslider.php\";i:17;s:35:\"si-contact-form/si-contact-form.php\";i:18;s:43:\"the-events-calendar/the-events-calendar.php\";i:19;s:27:\"woocommerce/woocommerce.php\";i:20;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(36,'home','http://freereincenter.com','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','0','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:83:\"/home/freere13/public_html/wp-content/plugins/boldgrid-staging/boldgrid-staging.php\";i:1;s:67:\"/home/freere13/public_html/wp-content/themes/800pxmock_v3/style.css\";i:2;s:71:\"/home/content/20/10648920/html/wp-content/themes/800pxmock_v3/style.css\";i:3;s:99:\"/home/content/20/10648920/html/wp-content/plugins/facebook-button-plugin/facebook-button-plugin.php\";i:4;s:85:\"/home/content/20/10648920/html/wp-content/plugins/backup-and-move/backup_and_move.php\";}','no'),(44,'template','Avada','yes'),(45,'stylesheet','Avada','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','37965','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','wp-content/uploads','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','2','yes'),(57,'show_on_front','page','yes'),(58,'tag_base','','yes'),(59,'show_avatars','','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','1','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'widget_categories','a:3:{i:1;a:0:{}i:7;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'),(83,'widget_text','a:13:{i:2;a:3:{s:5:\"title\";s:16:\"Additional Links\";s:4:\"text\";s:216:\"<p><a href=\"http://freereincenter.com/?page_id=63\">Camp Rockbrook</a></p>\r\n<p><a href=\"http://freereincenter.com/?page_id=65\">PATH Intl.</a></p>\r\n<p><a href=\"http://freereincenter.com/?page_id=20\">Donate Now!</a></p>\";s:6:\"filter\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:1099:\"[accordian][toggle title=\"Our Company Mission\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Philosophy\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Promise\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"We Can Deliver On Projects\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian]\";s:6:\"filter\";b:0;}i:7;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:489:\"[testimonials]\r\n[testimonial name=\"John Doe\" company=\"My Company\"]Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consec tetur, adipisci velit, sed quia non numquam eius modi tempora voluptas amets unser. [/testimonial]\r\n[testimonial name=\"Luke Beck\" company=\"Theme Fusion\"]Aliquam erat volutpat. Quisque at est id ligula facilisis laoreet eget pulvinar nibh. Suspendisse at ultrices dui. Curabitur ac felis arcu sadips ipsums fugiats nemis.[/testimonial]\r\n[/testimonials]\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:369:\"<img src=\"http://avada.theme-fusion.com/avada-xml/wp-content/uploads/sites/12/2016/04/logo_white_big.png\" alt=\"\" />\r\n<p>Lorem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae, sed et vivendo ali Lorem ipsum ex vix illud nonummy, novum tation et his. At vix scripta patrioque scribentur...</p>\";s:6:\"filter\";b:1;}i:10;a:3:{s:5:\"title\";s:23:\"This Is A Custom Widget\";s:4:\"text\";s:364:\"This Sliding Bar can be switched on or off in theme options, and can take any widget you throw at it or even fill it with your custom HTML Code. Its perfect for grabbing the attention of your viewers. Choose between 1, 2, 3 or 4 columns, set the background color, widget divider color, activate transparency, a top border or fully disable it on desktop and mobile.\";s:6:\"filter\";b:0;}i:11;a:3:{s:5:\"title\";s:23:\"This Is A Custom Widget\";s:4:\"text\";s:364:\"This Sliding Bar can be switched on or off in theme options, and can take any widget you throw at it or even fill it with your custom HTML Code. Its perfect for grabbing the attention of your viewers. Choose between 1, 2, 3 or 4 columns, set the background color, widget divider color, activate transparency, a top border or fully disable it on desktop and mobile.\";s:6:\"filter\";b:0;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:826:\"[accordian][toggle title=\"Our Company Mission\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Philosophy\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Promise\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[/accordian]\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:489:\"[testimonials]\r\n[testimonial name=\"John Doe\" company=\"My Company\"]Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consec tetur, adipisci velit, sed quia non numquam eius modi tempora voluptas amets unser. [/testimonial]\r\n[testimonial name=\"Luke Beck\" company=\"Theme Fusion\"]Aliquam erat volutpat. Quisque at est id ligula facilisis laoreet eget pulvinar nibh. Suspendisse at ultrices dui. Curabitur ac felis arcu sadips ipsums fugiats nemis.[/testimonial]\r\n[/testimonials]\";s:6:\"filter\";b:0;}i:9;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:1099:\"[accordian][toggle title=\"Our Company Mission\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Philosophy\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"The Avada Promise\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle]\r\n[toggle title=\"We Can Deliver On Projects\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian]\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:17:\"Basic Text Widget\";s:4:\"text\";s:189:\"Fugiat dapibus, tellus ac cursus commo do, mauris sit condime ntum nibh, uter sitse fermentum massa justo vitaes amet r quia consequuntur magni uns mauris sit condime ntum nibh, uter sitse.\";s:6:\"filter\";b:0;}i:13;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:349:\"[map address=\"new york city, ny | 579 Allen Road Basking Ridge, NJ 07920 | Mount Arlington, NJ 07856\" type=\"roadmap\" width=\"244px\" height=\"150px\" zoom=\"8\" scrollwheel=\"false\" scale=\"false\" zoom_pancontrol=\"false\" popup=\"false\"][/map]\r\n<br />\r\n<strong>Come Check Us out!</strong><br />\r\nMonday Through Friday: 8am-8pm<br />\r\nPhone: 800-555-5555\r\n\r\n\r\n\";s:6:\"filter\";b:0;}i:12;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:345:\"<img src=\"http://avada.theme-fusion.comxml/wp-content/uploads/2012/07/blog_6.jpg\" alt=\"\" />\r\n<p>Lorem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae, sed et vivendo ali Lorem ipsum ex vix illud nonummy, novum tation et his. At vix scripta patrioque scribentur...</p>\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(84,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(85,'uninstall_plugins','a:5:{s:25:\"duplicator/duplicator.php\";s:20:\"duplicator_uninstall\";s:35:\"si-contact-form/si-contact-form.php\";s:24:\"si_contact_unset_options\";s:49:\"facebook-button-plugin/facebook-button-plugin.php\";s:23:\"fcbkbttn_delete_options\";s:29:\"easy-columns/easy-columns.php\";a:2:{i:0;s:11:\"EasyColumns\";i:1;s:9:\"uninstall\";}s:27:\"LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";}','no'),(86,'timezone_string','','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','10709','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','22441','yes'),(92,'wp_user_roles','a:12:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:162:{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: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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:65:{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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:25:{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:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:11:{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:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:29:{s:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:1:{s:8:\"spectate\";b:1;}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:28:{s:8:\"spectate\";b:0;s:11:\"participate\";b:0;s:8:\"moderate\";b:0;s:8:\"throttle\";b:0;s:10:\"view_trash\";b:0;s:14:\"publish_forums\";b:0;s:11:\"edit_forums\";b:0;s:18:\"edit_others_forums\";b:0;s:13:\"delete_forums\";b:0;s:20:\"delete_others_forums\";b:0;s:19:\"read_private_forums\";b:0;s:18:\"read_hidden_forums\";b:0;s:14:\"publish_topics\";b:0;s:11:\"edit_topics\";b:0;s:18:\"edit_others_topics\";b:0;s:13:\"delete_topics\";b:0;s:20:\"delete_others_topics\";b:0;s:19:\"read_private_topics\";b:0;s:15:\"publish_replies\";b:0;s:12:\"edit_replies\";b:0;s:19:\"edit_others_replies\";b:0;s:14:\"delete_replies\";b:0;s:21:\"delete_others_replies\";b:0;s:20:\"read_private_replies\";b:0;s:17:\"manage_topic_tags\";b:0;s:15:\"edit_topic_tags\";b:0;s:17:\"delete_topic_tags\";b:0;s:17:\"assign_topic_tags\";b:0;}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:25:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:8:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:19:\"read_private_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:17:\"assign_topic_tags\";b:1;}}}','yes'),(93,'widget_search','a:4:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}i:4;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:5:{i:1;a:0:{}i:5;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(96,'widget_archives','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(97,'widget_meta','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(98,'sidebars_widgets','a:15:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:8:{i:0;s:8:\"search-2\";i:1;s:6:\"text-2\";i:2;s:18:\"pyre_tabs-widget-6\";i:3;s:6:\"text-6\";i:4;s:21:\"recent_works-widget-4\";i:5;s:14:\"recent-posts-5\";i:6;s:6:\"text-7\";i:7;s:21:\"contact_info-widget-3\";}s:21:\"avada-footer-widget-1\";a:1:{i:0;s:6:\"text-3\";}s:21:\"avada-footer-widget-2\";a:1:{i:0;s:14:\"recent-posts-6\";}s:21:\"avada-footer-widget-3\";a:1:{i:0;s:12:\"categories-7\";}s:21:\"avada-footer-widget-4\";a:1:{i:0;s:21:\"recent_works-widget-6\";}s:25:\"avada-slidingbar-widget-1\";a:1:{i:0;s:7:\"text-10\";}s:25:\"avada-slidingbar-widget-2\";a:1:{i:0;s:7:\"text-11\";}s:35:\"avada-custom-sidebar-contactsidebar\";a:3:{i:0;s:21:\"contact_info-widget-2\";i:1;s:6:\"text-8\";i:2;s:21:\"social_links-widget-3\";}s:24:\"avada-custom-sidebar-faq\";a:2:{i:0;s:8:\"search-3\";i:1;s:18:\"pyre_tabs-widget-5\";}s:36:\"avada-custom-sidebar-homepagesidebar\";a:5:{i:0;s:8:\"search-4\";i:1;s:18:\"pyre_tabs-widget-4\";i:2;s:21:\"recent_works-widget-5\";i:3;s:14:\"recent-posts-3\";i:4;s:6:\"text-5\";}s:30:\"avada-custom-sidebar-portfolio\";a:3:{i:0;s:18:\"pyre_tabs-widget-3\";i:1;s:6:\"text-9\";i:2;s:6:\"text-4\";}s:30:\"avada-custom-sidebar-megamenu1\";a:1:{i:0;s:7:\"text-13\";}s:30:\"avada-custom-sidebar-megamenu2\";a:1:{i:0;s:7:\"text-12\";}s:13:\"array_version\";i:3;}','yes'),(99,'jetpack_activated','1','yes'),(101,'cron','a:12:{i:1472508975;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1472509937;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1472515200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1472544720;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1472547293;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:1472571373;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:1472583231;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:1472587920;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1472588060;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1472736367;a:1:{s:18:\"wpseo_onpage_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1473120000;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(104,'current_theme','Avada','yes'),(106,'_transient_random_seed','9f54afd0380f85fb71dae08fc29c5a75','yes'),(107,'nonce_key',',]i:;<h1fEmi^_zrVu]^b%n%,[I4K=5JF.7g0.Dl1r5G,b<CGUiL HDj8`Wo=G%R','yes'),(108,'nonce_salt','cP<xMX u5M,~@BHdU5V=#1{zPX:}0uWKHT=ycbHtg}V6LT@AARYO;w}RAC 4^y:M','yes'),(109,'auth_key','gPh3YW8~X6@p15Dj[oYfdv(12Vb{L(`Cn~$_{J(A>KAfY$-kmPe*._2_F:N6tAM(','yes'),(110,'auth_salt','jz![ vB*(70ucXK~y&LSaqh$4]~IdxU8ys?fdJ%Ra/S:BGkWcvz#F@:`*m@Y?$rd','yes'),(111,'logged_in_key','n<t~b)z8EU!V$N)a&a=_g6br$8itj3`b%{;4_k.: L=%1PW8m)0`j<ZTS%>Zzzkl','yes'),(112,'logged_in_salt','5h.Va{OqeBn4Oi|1Vmq4kSM{lLWLztyj7l-%%Or,>/+7{~yU?g,9$AQ/Y+u =75x','yes'),(196,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(118,'jetpack_options','a:7:{s:7:\"version\";s:16:\"3.9.7:1464380230\";s:11:\"old_version\";s:16:\"2.1.1:1363892032\";s:2:\"id\";i:62903740;s:6:\"public\";i:1;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:9:\"jumpstart\";s:14:\"new_connection\";}','yes'),(121,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:25:\"http://freereincenter.com\";s:4:\"link\";s:101:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://freereincenter.com/\";s:3:\"url\";s:134:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://freereincenter.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(42178,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1451357287','no'),(10447,'web_property_id','UA-47847529-1','yes'),(65204,'wpseo_sitemap_nav_menu_item_cache_validator','6iwjf','no'),(65205,'wpseo_sitemap_nav_menu_cache_validator','6iwjk','no'),(65206,'wpseo_sitemap_27_cache_validator','5Jz5M','no'),(65207,'wpseo_sitemap_166_cache_validator','5Jz5P','no'),(46620,'wpseo_sitemap_1_cache_validator','6r6OY','no'),(46621,'wpseo_sitemap_post_cache_validator','6r6P3','no'),(153,'recently_activated','a:0:{}','yes'),(154,'backup_and_move_database_version','1.0','yes'),(157,'theme_mods_twentytwelve','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1363892209;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'),(158,'theme_mods_800pxmock_v3','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:9:\"404_pages\";i:34;s:15:\"main_navigation\";i:35;s:14:\"top_navigation\";i:37;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1472504028;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:17:{i:0;s:8:\"search-3\";i:1;s:8:\"search-4\";i:2;s:6:\"text-6\";i:3;s:6:\"text-7\";i:4;s:6:\"text-3\";i:5;s:7:\"text-10\";i:6;s:7:\"text-11\";i:7;s:6:\"text-8\";i:8;s:6:\"text-5\";i:9;s:6:\"text-9\";i:10;s:6:\"text-4\";i:11;s:7:\"text-13\";i:12;s:7:\"text-12\";i:13;s:12:\"categories-7\";i:14;s:14:\"recent-posts-5\";i:15;s:14:\"recent-posts-6\";i:16;s:14:\"recent-posts-3\";}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:6:\"text-2\";}}}}','yes'),(159,'theme_switched','','yes'),(160,'dhnd_max_size','400','yes'),(161,'dhnd_default','FRheader.jpg','yes'),(162,'dhnd_homepage','FRheader.jpg','yes'),(163,'dhnd_footer_link','','yes'),(164,'dhnd_image_dir','wp-content/header-images/','yes'),(165,'txfx_plt_schema_version','3','yes'),(77071,'category_children','a:0:{}','yes'),(174,'dhnd_FRheader.jpg_link','http://','yes'),(175,'dhnd_FRheader.jpg_target','','yes'),(173,'dhnd_FRheader.jpg_alt','','yes'),(197,'si_contact_form_gb','a:5:{s:7:\"donated\";s:5:\"false\";s:9:\"max_forms\";i:4;s:10:\"max_fields\";s:1:\"4\";s:23:\"captcha_disable_session\";s:4:\"true\";s:5:\"2.6.3\";i:1;}','yes'),(198,'si_contact_form','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:22:\"freerein1325@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:9:\"email_bcc\";s:0:\"\";s:14:\"email_reply_to\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:13:\"captcha_small\";s:5:\"false\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:5:\"false\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:13:\"border_enable\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_message\";s:0:\"\";s:20:\"auto_respond_subject\";s:0:\"\";s:19:\"req_field_indicator\";s:2:\" *\";s:22:\"req_field_label_enable\";s:4:\"true\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(199,'si_contact_form2','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:4:\"true\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(200,'si_contact_form3','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:4:\"true\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(201,'si_contact_form4','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:4:\"true\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(12516,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"freerein1325@gmail.com\";s:7:\"version\";s:5:\"4.5.3\";s:9:\"timestamp\";i:1466530909;}','yes'),(19710,'widget_vertical-menu','a:0:{}','yes'),(19711,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19712,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19713,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19714,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19715,'widget_mypageorder','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20802,'easycol_options','a:38:{s:10:\"use_custom\";b:0;s:13:\"quarter_width\";s:0:\"\";s:18:\"quarter_width_type\";s:1:\"%\";s:14:\"quarter_margin\";s:0:\"\";s:19:\"quarter_margin_type\";s:1:\"%\";s:13:\"onehalf_width\";s:0:\"\";s:18:\"onehalf_width_type\";s:1:\"%\";s:14:\"onehalf_margin\";s:0:\"\";s:12:\"onehalf_type\";s:1:\"%\";s:18:\"threequarter_width\";s:0:\"\";s:23:\"threequarter_width_type\";s:1:\"%\";s:19:\"threequarter_margin\";s:0:\"\";s:17:\"threequarter_type\";s:1:\"%\";s:14:\"onethird_width\";s:0:\"\";s:19:\"onethird_width_type\";s:1:\"%\";s:15:\"onethird_margin\";s:0:\"\";s:20:\"onethird_margin_type\";s:1:\"%\";s:14:\"twothird_width\";s:0:\"\";s:19:\"twothird_width_type\";s:1:\"%\";s:15:\"twothird_margin\";s:0:\"\";s:20:\"twothird_margin_type\";s:1:\"%\";s:14:\"onefifth_width\";s:0:\"\";s:19:\"onefifth_width_type\";s:1:\"%\";s:15:\"onefifth_margin\";s:0:\"\";s:20:\"onefifth_margin_type\";s:1:\"%\";s:14:\"twofifth_width\";s:0:\"\";s:19:\"twofifth_width_type\";s:1:\"%\";s:15:\"twofifth_margin\";s:0:\"\";s:20:\"twofifth_margin_type\";s:1:\"%\";s:16:\"threefifth_width\";s:0:\"\";s:21:\"threefifth_width_type\";s:1:\"%\";s:17:\"threefifth_margin\";s:0:\"\";s:22:\"threefifth_margin_type\";s:1:\"%\";s:15:\"fourfifth_width\";s:0:\"\";s:20:\"fourfifth_width_type\";s:1:\"%\";s:16:\"fourfifth_margin\";s:0:\"\";s:21:\"fourfifth_margin_type\";s:1:\"%\";s:10:\"custom_css\";s:0:\"\";}','yes'),(43702,'WPLANG','','yes'),(6525,'db_upgraded','','yes'),(43698,'finished_splitting_shared_terms','1','yes'),(43699,'site_icon','357','yes'),(43700,'medium_large_size_w','768','yes'),(43701,'medium_large_size_h','0','yes'),(45664,'boldgrid_attribution','a:2:{s:4:\"page\";a:1:{s:2:\"id\";i:376;}s:36:\"number_of_assets_needing_attribution\";i:0;}','yes'),(45665,'boldgrid_inspirations_activated_version','1.0.12.1','yes'),(45666,'boldgrid_inspirations_current_version','1.0.12.1','yes'),(61416,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(61417,'widget_contact_info-widget','a:3:{i:3;a:8:{s:5:\"title\";s:12:\"Contact Info\";s:7:\"address\";s:49:\"12345 north Street <br />New York City, NY 555555\";s:5:\"phone\";s:12:\"555-555-5555\";s:3:\"fax\";s:12:\"555-555-5555\";s:5:\"email\";s:20:\"info@yourwebsite.com\";s:8:\"emailtxt\";s:20:\"info@yourwebsite.com\";s:3:\"web\";s:22:\"http://yourwebsite.com\";s:6:\"webtxt\";s:15:\"Yourwebsite.com\";}i:2;a:9:{s:5:\"title\";s:12:\"Contact Info\";s:7:\"address\";s:47:\"12345 North Main Street,<br>New York, NY 555555\";s:5:\"phone\";s:12:\"555-555-5555\";s:3:\"fax\";s:12:\"555-555-5555\";s:5:\"email\";s:20:\"info@yourwebsite.com\";s:3:\"web\";s:22:\"http://yourwebsite.com\";s:8:\"emailtxt\";s:20:\"info@yourwebsite.com\";s:6:\"webtxt\";s:15:\"Yourwebsite.com\";s:6:\"mobile\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(61418,'widget_pyre_tabs-widget','a:5:{i:6;a:8:{s:5:\"posts\";s:1:\"3\";s:8:\"comments\";s:1:\"3\";s:4:\"tags\";s:1:\"3\";s:18:\"show_popular_posts\";s:2:\"on\";s:17:\"show_recent_posts\";s:2:\"on\";s:13:\"show_comments\";s:2:\"on\";s:9:\"show_tags\";N;s:7:\"orderby\";s:16:\"Highest Comments\";}i:5;a:8:{s:5:\"posts\";s:1:\"3\";s:8:\"comments\";s:1:\"3\";s:4:\"tags\";s:2:\"20\";s:18:\"show_popular_posts\";s:2:\"on\";s:17:\"show_recent_posts\";s:2:\"on\";s:13:\"show_comments\";s:2:\"on\";s:9:\"show_tags\";N;s:7:\"orderby\";s:16:\"Highest Comments\";}i:4;a:7:{s:5:\"posts\";s:1:\"3\";s:8:\"comments\";s:1:\"3\";s:4:\"tags\";s:2:\"20\";s:18:\"show_popular_posts\";s:2:\"on\";s:17:\"show_recent_posts\";s:2:\"on\";s:13:\"show_comments\";s:2:\"on\";s:9:\"show_tags\";N;}i:3;a:8:{s:5:\"posts\";s:1:\"3\";s:8:\"comments\";s:1:\"3\";s:4:\"tags\";s:2:\"20\";s:18:\"show_popular_posts\";s:2:\"on\";s:17:\"show_recent_posts\";s:2:\"on\";s:13:\"show_comments\";s:2:\"on\";s:9:\"show_tags\";N;s:7:\"orderby\";s:16:\"Highest Comments\";}s:12:\"_multiwidget\";i:1;}','yes'),(61419,'widget_recent_works-widget','a:4:{i:4;a:2:{s:5:\"title\";s:12:\"Recent Works\";s:6:\"number\";s:1:\"6\";}i:6;a:2:{s:5:\"title\";s:12:\"Recent Works\";s:6:\"number\";s:1:\"6\";}i:5;a:2:{s:5:\"title\";s:12:\"Recent Works\";s:6:\"number\";s:1:\"6\";}s:12:\"_multiwidget\";i:1;}','yes'),(61420,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(61421,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(61422,'widget_social_links-widget','a:2:{i:3;a:32:{s:5:\"title\";s:10:\"Get Social\";s:8:\"rss_link\";s:1:\"#\";s:7:\"fb_link\";s:1:\"#\";s:12:\"twitter_link\";s:1:\"#\";s:13:\"dribbble_link\";s:1:\"#\";s:11:\"google_link\";s:1:\"#\";s:13:\"linkedin_link\";s:1:\"#\";s:12:\"blogger_link\";s:1:\"#\";s:11:\"tumblr_link\";s:1:\"#\";s:11:\"reddit_link\";s:1:\"#\";s:10:\"yahoo_link\";s:1:\"#\";s:15:\"deviantart_link\";s:1:\"#\";s:10:\"vimeo_link\";s:1:\"#\";s:12:\"youtube_link\";s:1:\"#\";s:14:\"pinterest_link\";s:1:\"#\";s:9:\"digg_link\";s:1:\"#\";s:11:\"flickr_link\";s:1:\"#\";s:11:\"forrst_link\";s:1:\"#\";s:12:\"myspace_link\";s:1:\"#\";s:10:\"skype_link\";s:1:\"#\";s:10:\"linktarget\";s:0:\"\";s:10:\"icon_color\";s:0:\"\";s:10:\"boxed_icon\";s:3:\"Yes\";s:11:\"boxed_color\";s:0:\"\";s:17:\"boxed_icon_radius\";s:3:\"4px\";s:11:\"tooltip_pos\";s:3:\"Top\";s:11:\"show_custom\";s:2:\"No\";s:14:\"instagram_link\";s:0:\"\";s:11:\"paypal_link\";s:0:\"\";s:12:\"dropbox_link\";s:0:\"\";s:15:\"soundcloud_link\";s:0:\"\";s:7:\"vk_link\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(61423,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(61424,'widget_menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(61425,'avada_theme_options','a:661:{s:8:\"last_tab\";s:0:\"\";s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:16:\"hundredp_padding\";s:4:\"20px\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:13:\"sidebar_width\";s:3:\"23%\";s:17:\"sidebar_2_1_width\";s:3:\"19%\";s:17:\"sidebar_2_2_width\";s:3:\"19%\";s:10:\"nav_height\";s:2:\"83\";s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"27\";s:15:\"megamenu_shadow\";s:1:\"1\";s:19:\"dropdown_menu_width\";s:3:\"215\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"9\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:1:\"0\";s:20:\"main_nav_search_icon\";s:1:\"1\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:17:\"menu_sub_bg_color\";s:7:\"#edecec\";s:19:\"menu_bg_hover_color\";s:7:\"#f5f5f5\";s:18:\"menu_sub_sep_color\";s:7:\"#e3e2e3\";s:17:\"menu_h45_bg_color\";s:7:\"#ffffff\";s:14:\"nav_typography\";a:8:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"letter-spacing\";s:3:\"0px\";}s:13:\"nav_font_size\";s:4:\"13px\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:15:\"menu_text_align\";s:4:\"left\";s:16:\"menu_first_color\";s:7:\"#333333\";s:22:\"menu_hover_first_color\";s:7:\"#a0ce4e\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:23:\"topmenu_dropwdown_width\";s:3:\"180\";s:29:\"header_top_first_border_color\";s:7:\"#ffffff\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e0dfdf\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"44px\";s:10:\"snav_color\";s:7:\"#ffffff\";s:25:\"header_top_menu_sub_color\";s:7:\"#333333\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:18:\"mobile_menu_design\";s:6:\"modern\";s:18:\"mobile_nav_padding\";s:2:\"22\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"5\";s:22:\"mobile_menu_nav_height\";s:2:\"40\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:21:\"mobile_menu_font_size\";s:4:\"13px\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:18:\"megamenu_max_width\";s:4:\"1100\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"7\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1099\";s:23:\"side_header_break_point\";s:4:\"1100\";s:19:\"content_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:21:\"typography_responsive\";s:1:\"1\";s:22:\"typography_sensitivity\";s:3:\"0.6\";s:17:\"typography_factor\";s:3:\"1.5\";s:13:\"primary_color\";s:7:\"#a0ce4e\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v1\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:12:\"Contact Info\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:28:\"Call Us Today! 1.555.555.555\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:14:\"header_tagline\";s:20:\"Insert Headline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"0\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:19:\"header_border_color\";s:7:\"#e1e1e1\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:22:\"header_sticky_bg_color\";s:23:\"rgba(255,255,255,0.987)\";s:25:\"header_sticky_nav_padding\";s:2:\"27\";s:27:\"header_sticky_nav_font_size\";s:4:\"13px\";s:14:\"logo_alignment\";s:4:\"Left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";}s:4:\"logo\";a:5:{s:3:\"url\";s:65:\"http://avada.theme-fusion.com/wp-content/uploads/2015/03/logo.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:2:\"24\";s:5:\"width\";s:3:\"113\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_retina\";s:0:\"\";s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"mobile_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:20:\"page_title_font_size\";s:4:\"18px\";s:16:\"page_title_color\";s:7:\"#333333\";s:30:\"page_title_subheader_font_size\";s:4:\"10px\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:5:{s:3:\"url\";s:69:\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/ptb_bkgd.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:4:\"1100\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"page_title_bg_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"1\";s:17:\"page_title_bar_bs\";s:11:\"Breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"11px\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"1\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";s:1:\"3\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:24:\"slidingbar_divider_color\";s:7:\"#505152\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:25:\"slidingbar_headings_color\";s:7:\"#dddddd\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#bfbfbf\";s:21:\"slidingbar_top_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:1:\"0\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:11:\"footer_text\";s:266:\"© Copyright 2012 - <script>document.write(new Date().getFullYear());</script>   |   Avada Theme by <a href=“http://avada.theme-fusion.com” target=\"_blank\">Theme Fusion</a>   |   All Rights Reserved   |   Powered by <a href=\'http://wordpress.org\' t>WordPress</a>\";s:16:\"footerw_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:6:\"repeat\";s:14:\"footerw_bg_pos\";s:8:\"top left\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"55px\";s:4:\"left\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:7:\"#363839\";s:18:\"footer_border_size\";s:2:\"12\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:21:\"copyright_border_size\";s:1:\"1\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:26:\"footer_headings_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#DDDDDD\";}s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:19:\"copyright_font_size\";s:4:\"12px\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:7:\"#ffffff\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"14px\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:12:\"Blog Sidebar\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:18:\"woo_global_sidebar\";s:1:\"0\";s:11:\"woo_sidebar\";s:4:\"None\";s:13:\"woo_sidebar_2\";s:4:\"None\";s:20:\"woo_sidebar_position\";s:5:\"Right\";s:27:\"woocommerce_archive_sidebar\";s:4:\"None\";s:29:\"woocommerce_archive_sidebar_2\";s:4:\"None\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"content_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:6:\"repeat\";s:8:\"bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:6:\"repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:15:\"body_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.69\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#747474\";}s:10:\"link_color\";s:7:\"#333333\";s:13:\"h1_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"33px\";s:11:\"line-height\";s:4:\"1.45\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h2_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:4:\".7em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h3_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:4:\"1.41\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h4_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"1.43\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h5_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.38\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h6_typography\";a:13:{s:11:\"font-family\";s:11:\"Roboto Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"1.42\";s:14:\"letter-spacing\";s:3:\"0px\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:5:\"color\";s:7:\"#333333\";}s:21:\"post_titles_font_size\";s:4:\"18px\";s:19:\"post_titles_font_lh\";s:4:\"27px\";s:28:\"post_titles_extras_font_size\";s:4:\"18px\";s:12:\"custom_fonts\";a:7:{s:24:\"avadaredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"name\";a:1:{i:0;s:0:\"\";}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"svg\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"eot\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:16:\"animation_offset\";s:13:\"top-into-view\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:11:\"button_span\";s:2:\"no\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:8:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"letter-spacing\";s:3:\"0px\";}s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:20:\"rgba(255,255,255,.8)\";s:25:\"button_accent_hover_color\";s:20:\"rgba(255,255,255,.9)\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";s:1:\"0\";s:18:\"carousel_nav_color\";s:14:\"rgba(0,0,0,.5)\";s:20:\"carousel_hover_color\";s:14:\"rgba(0,0,0,.6)\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:4:\"18px\";s:23:\"content_box_title_color\";s:7:\"#333333\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:21:\"content_box_icon_size\";s:4:\"21px\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:7:\"#ffffff\";s:22:\"full_width_border_size\";s:1:\"0\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";s:1:\"0\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:7:\"#000000\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#eaeaea\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:18:\"progressbar_height\";s:4:\"37px\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";s:1:\"1\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#f1f2f2\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:6:\"double\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"30px\";}s:22:\"accordion_divider_line\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:21:\"user_login_text_align\";s:6:\"center\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:24:\"blog_show_page_title_bar\";s:1:\"1\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:4:\"Grid\";s:19:\"blog_archive_layout\";s:4:\"Grid\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:17:\"blog_grid_columns\";s:1:\"2\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";s:2:\"56\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"1\";s:14:\"meta_font_size\";s:4:\"12px\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";s:2:\"10\";s:24:\"portfolio_archive_layout\";s:20:\"Portfolio Two Column\";s:24:\"portfolio_column_spacing\";s:2:\"12\";s:24:\"portfolio_content_length\";s:7:\"Excerpt\";s:24:\"excerpt_length_portfolio\";s:2:\"58\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:20:\"grid_pagination_type\";s:15:\"Infinite Scroll\";s:41:\"portfolio_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:4:\"full\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"1\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"0\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"social_media_icons\";a:5:{s:24:\"avadaredux_repeater_data\";a:7:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}i:4;a:1:{s:5:\"title\";s:0:\"\";}i:5;a:1:{s:5:\"title\";s:0:\"\";}i:6;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:7:{i:0;s:8:\"facebook\";i:1;s:3:\"rss\";i:2;s:7:\"twitter\";i:3;s:5:\"vimeo\";i:4;s:9:\"instagram\";i:5;s:9:\"pinterest\";i:6;s:8:\"dribbble\";}s:3:\"url\";a:7:{i:0;s:58:\"https://www.facebook.com/pages/Themefusion/101565403356430\";i:1;s:1:\"#\";i:2;s:32:\"https://twitter.com/Theme_Fusion\";i:3;s:1:\"#\";i:4;s:1:\"#\";i:5;s:1:\"#\";i:6;s:1:\"#\";}s:12:\"custom_title\";a:7:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}s:13:\"custom_source\";a:7:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:2;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:3;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:4;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:5;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:6;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:29:\"header_social_links_font_size\";s:4:\"16px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:7:\"#ffffff\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"18px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"1\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"1\";s:14:\"sharing_reddit\";s:1:\"1\";s:16:\"sharing_linkedin\";s:1:\"1\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"0\";s:17:\"sharing_pinterest\";s:1:\"1\";s:10:\"sharing_vk\";s:1:\"1\";s:13:\"sharing_email\";s:1:\"0\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"550px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"200\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:10:\"horizontal\";s:24:\"lightbox_animation_speed\";s:4:\"Fast\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:5:\"0.975\";s:14:\"lightbox_title\";s:1:\"0\";s:13:\"lightbox_desc\";s:1:\"0\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"0\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:13:\"email_address\";s:24:\"noreply@theme-fusion.com\";s:24:\"contact_comment_position\";s:5:\"below\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:46:\"New York City, NY | Flemington, NJ | Islip, NY\";s:14:\"map_zoom_level\";s:1:\"9\";s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:6:\"custom\";s:17:\"map_overlay_color\";s:7:\"#70b260\";s:19:\"map_infobox_styling\";s:6:\"custom\";s:19:\"map_infobox_content\";s:222:\"Jason At New York City Office Park 555 West Street, New York City 12345|Allison At The Flemington Office Park 555 East Street, New York City 12345|Johnathan At The Islips Office Park 555 South Street, New York City 12345\r\n\";s:20:\"map_infobox_bg_color\";s:14:\"rgba(0,0,0,.5)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:221:\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_2.png|http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_1.png|http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_3.png\";s:13:\"search_layout\";s:4:\"Grid\";s:14:\"search_content\";s:15:\"Posts and Pages\";s:14:\"search_excerpt\";s:1:\"1\";s:23:\"search_results_per_page\";s:1:\"8\";s:22:\"search_featured_images\";s:1:\"1\";s:26:\"search_new_search_position\";s:3:\"top\";s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"0\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:20:\"related_posts_layout\";s:17:\"title_below_image\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";s:1:\"3\";s:28:\"related_posts_column_spacing\";s:2:\"20\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"1\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"1\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"17px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:22:\"rgba(160,206,78,0.925)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"12px\";s:17:\"form_input_height\";s:4:\"38px\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:15:\"pw_jpeg_quality\";s:3:\"100\";s:16:\"smooth_scrolling\";s:1:\"0\";s:15:\"disable_builder\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:15:\"use_animate_css\";s:1:\"1\";s:26:\"disable_mobile_animate_css\";s:1:\"0\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:1:\"1\";s:19:\"status_totop_mobile\";s:1:\"1\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";s:1:\"1\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:8:\"dev_mode\";s:1:\"0\";s:20:\"dynamic_css_compiler\";s:1:\"1\";s:22:\"dynamic_css_db_caching\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:9:\"woo_items\";s:2:\"12\";s:29:\"woocommerce_shop_page_columns\";s:1:\"4\";s:27:\"woocommerce_related_columns\";s:1:\"3\";s:32:\"woocommerce_archive_page_columns\";s:1:\"4\";s:26:\"woocommerce_avada_ordering\";s:1:\"1\";s:36:\"woocommerce_disable_crossfade_effect\";s:1:\"1\";s:29:\"woocommerce_one_page_checkout\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"0\";s:24:\"woocommerce_cart_counter\";s:1:\"0\";s:29:\"woocommerce_acc_link_main_nav\";s:1:\"0\";s:30:\"woocommerce_cart_link_main_nav\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"0\";s:29:\"woocommerce_cart_link_top_nav\";s:1:\"1\";s:24:\"woocommerce_social_links\";s:1:\"1\";s:28:\"woocommerce_toggle_grid_list\";s:1:\"1\";s:19:\"disable_woo_gallery\";s:1:\"1\";s:13:\"woo_acc_msg_1\";s:55:\"Need Assistance? Call customer service at 888-555-5555.\";s:13:\"woo_acc_msg_2\";s:32:\"E-mail them at info@yourshop.com\";s:30:\"woocommerce_product_box_design\";s:7:\"classic\";s:30:\"woocommerce_product_tab_design\";s:8:\"vertical\";s:12:\"qty_bg_color\";s:7:\"#fbfaf9\";s:18:\"qty_bg_hover_color\";s:7:\"#ffffff\";s:21:\"woo_dropdown_bg_color\";s:7:\"#fbfaf9\";s:23:\"woo_dropdown_text_color\";s:7:\"#333333\";s:25:\"woo_dropdown_border_color\";s:7:\"#dbdbdb\";s:17:\"woo_cart_bg_color\";s:7:\"#fafafa\";s:18:\"woo_icon_font_size\";s:4:\"12px\";s:10:\"custom_css\";s:0:\"\";s:11:\"scheme_type\";s:0:\"\";s:12:\"color_scheme\";s:5:\"Green\";s:17:\"avadaredux-backup\";s:1:\"1\";s:16:\"ec_sidebar_width\";s:3:\"32%\";s:20:\"ec_sidebar_2_1_width\";s:3:\"21%\";s:20:\"ec_sidebar_2_2_width\";s:3:\"21%\";s:17:\"ec_global_sidebar\";i:0;s:10:\"ec_sidebar\";s:4:\"None\";s:12:\"ec_sidebar_2\";s:4:\"None\";s:14:\"ec_sidebar_pos\";s:5:\"Right\";s:22:\"bbpress_global_sidebar\";s:1:\"0\";s:15:\"ppbress_sidebar\";s:4:\"None\";s:17:\"ppbress_sidebar_2\";s:4:\"None\";s:24:\"bbpress_sidebar_position\";s:5:\"Right\";s:19:\"bbp_forum_header_bg\";s:7:\"#ebeaea\";s:27:\"bbp_forum_header_font_color\";s:7:\"#747474\";s:22:\"bbp_forum_border_color\";s:7:\"#ebeaea\";s:26:\"primary_overlay_text_color\";s:7:\"#ffffff\";s:15:\"ec_bar_bg_color\";s:7:\"#efeded\";s:17:\"ec_bar_text_color\";s:7:\"#747474\";s:28:\"ec_calendar_heading_bg_color\";s:7:\"#b2b2b2\";s:20:\"ec_calendar_bg_color\";s:7:\"#b2b2b2\";s:19:\"ec_tooltip_bg_color\";s:7:\"#ffffff\";s:21:\"ec_tooltip_body_color\";s:7:\"#747474\";s:15:\"ec_border_color\";s:7:\"#e0dede\";s:13:\"ec_hover_type\";s:4:\"none\";s:15:\"ec_bg_list_view\";s:5:\"cover\";s:25:\"events_social_sharing_box\";i:1;s:19:\"ec_sidebar_bg_color\";s:7:\"#f6f6f6\";s:18:\"ec_sidebar_padding\";s:2:\"4%\";s:18:\"ec_sidew_font_size\";s:4:\"17px\";s:26:\"ec_sidebar_widget_bg_color\";s:7:\"#aace4e\";s:24:\"ec_sidebar_heading_color\";s:7:\"#333333\";s:17:\"ec_text_font_size\";s:2:\"14\";s:21:\"ec_sidebar_text_color\";s:7:\"#747474\";s:21:\"ec_sidebar_link_color\";s:7:\"#333333\";s:24:\"ec_sidebar_divider_color\";s:7:\"#e8e8e8\";}','yes'),(45671,'boldgrid_reseller','a:9:{s:19:\"reseller_identifier\";s:3:\"IMH\";s:14:\"reseller_title\";s:16:\"InMotion Hosting\";s:17:\"reseller_logo_url\";s:78:\"./wp-content/plugins/boldgrid-inspirations/assets/images/wordpressinmotion.png\";s:20:\"reseller_website_url\";s:31:\"http://www.inmotionhosting.com/\";s:20:\"reseller_support_url\";s:52:\"http://www.inmotionhosting.com/support/edu/boldgrid/\";s:16:\"reseller_amp_url\";s:47:\"https://secure1.inmotionhosting.com/index/login\";s:14:\"reseller_email\";s:27:\"support@inmotionhosting.com\";s:14:\"reseller_phone\";s:14:\"1-888-321-4678\";s:16:\"reseller_css_url\";s:71:\"/wp-content/plugins/boldgrid-inspirations/assets/css/boldgrid-login.css\";}','yes'),(45672,'boldgrid_site_hash','f7b0e4b16742f4d50b9e4615fba80e5f','yes'),(45673,'boldgrid_api_key','b97bd57bda84503188c59213fd6a72fc','yes'),(45674,'boldgrid_settings','a:1:{s:20:\"boldgrid_menu_option\";s:1:\"1\";}','yes'),(45675,'boldgrid_asset','a:3:{s:5:\"image\";s:0:\"\";s:6:\"plugin\";s:0:\"\";s:5:\"theme\";s:0:\"\";}','yes'),(45676,'boldgrid_pointers','a:4:{i:0;a:6:{s:2:\"id\";s:37:\"boldgrid_image_search_internal_only_8\";s:6:\"screen\";s:4:\"page\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:1;a:6:{s:2:\"id\";s:49:\"boldgrid_media_library_image_search_internal_only\";s:6:\"screen\";s:6:\"upload\";s:6:\"target\";s:19:\"#media-search-input\";s:5:\"title\";s:12:\"Image search\";s:7:\"content\";s:222:\"<em>This search function</em> helps you find images you\'ve already uploaded to your Media Library. If you would like to search the web for new images, click the <strong>BoldGrid Connect Search</strong> tab in the top menu.\";s:8:\"position\";a:3:{s:4:\"edge\";s:3:\"top\";s:5:\"align\";s:6:\"middle\";s:17:\"open_on_page_load\";b:0;}}i:2;a:6:{s:2:\"id\";s:38:\"boldgrid_image_size_do_you_need_help_8\";s:6:\"screen\";s:12:\"media-upload\";s:6:\"target\";s:11:\"#image_size\";s:5:\"title\";s:10:\"Image size\";s:7:\"content\";s:33:\"Need help choosing an image size?\";s:8:\"position\";a:2:{s:4:\"edge\";s:5:\"right\";s:5:\"align\";s:6:\"middle\";}}i:3;a:6:{s:2:\"id\";s:29:\"boldgrid_customization_widget\";s:6:\"screen\";s:9:\"dashboard\";s:6:\"target\";s:21:\"#customization_widget\";s:5:\"title\";s:35:\"Begin customizing your new website!\";s:7:\"content\";s:120:\"Congratulations, you\'ve just installed your new website! Below you\'ll find tips to help you begin customizing your site.\";s:8:\"position\";a:2:{s:4:\"edge\";s:6:\"bottom\";s:5:\"align\";s:6:\"middle\";}}}','yes'),(57144,'wpseo_onpage','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1472135089;}','yes'),(76879,'_transient_timeout_feed_636a1eae994b1deb9d704cdb777d2ebb','1472544160','no'),(76880,'_transient_feed_636a1eae994b1deb9d704cdb777d2ebb','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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Theme Fusion\";s: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:23:\"http://theme-fusion.com\";s: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:64:\"WordPress Themes | Premium WordPress Themes | WooCommerce 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Aug 2016 19:41: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: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:30:\"https://wordpress.org/?v=4.5.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:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"How to Avoid These Top 8 Mistakes When Getting Started With 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://theme-fusion.com/top-mistakes-to-avoid-getting-started-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://theme-fusion.com/top-mistakes-to-avoid-getting-started-wordpress/#comments\";s: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, 24 Aug 2016 14:28: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";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:9:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"automated backups\";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:5:{s:4:\"data\";s:17:\"beginner mistakes\";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:5:{s:4:\"data\";s:18:\"default permalinks\";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:5:{s:4:\"data\";s:18:\"image optimization\";s: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:33:\"http://theme-fusion.com/?p=399352\";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:630:\"<p>With WordPress’ famous five minute install, it’s tempting to rush in and start your website straight away without a second thought; but without a little bit of planning, you may find yourself subject to some costly mistakes as you get up and running. Since the technical barrier to installing your website is so low, you&#8217;re free [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/top-mistakes-to-avoid-getting-started-wordpress/\">How to Avoid These Top 8 Mistakes When Getting Started With WordPress</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tom Ewer\";s: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:13350:\"<p>With WordPress’ famous five minute install, it’s tempting to rush in and start your website straight away without a second thought; but without a little bit of planning, you may find yourself subject to some costly mistakes as you get up and running.</p>\n<p><span id=\"more-399352\"></span></p>\n<p>Since the technical barrier to installing your website is so low, you&#8217;re free to spend more time learning about why and how to run your website to avoid paying dearly down the line.</p>\n<p>In this post, you’ll learn the eight top mistakes and how to avoid them before you click <em>Install</em> on your new WordPress site.</p>\n<h2>Mistake 1: Ignoring Free Educational Resources</h2>\n<p>One of the reasons WordPress has maintained its popularity is due to the sheer amount of free and widely available support on any variety of topics from &#8216;beginner blogger&#8217; to &#8216;advanced developer&#8217;.</p>\n<p>And while the WordPress community is home to an incredible support network, it&#8217;s arguably better to avoid trouble in the first place by getting your technical knowledge of the platform up to an elementary standard at minimum.</p>\n<h3>How to Avoid This Mistake</h3>\n<p>It’s simple – take advantage of the educational resources available to you! Here are a few of our favorites:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li><a href=\"https://theme-fusion.com/getting-started-with-wordpress/\" target=\"_blank\">Our very own <em>Getting Started With WordPress</em> Series</a></li>\n<li><a href=\"https://codex.wordpress.org/New_To_WordPress_-_Where_to_Start%20\" target=\"_blank\">WordPress Codex: Getting Started</a></li>\n<li><a href=\"http://www.wpbeginner.com/category/wp-tutorials/\" target=\"_blank\">WordPress Beginner Tutorials</a></li>\n<li><a href=\"https://www.siteground.com/tutorials/wordpress/\" target=\"_blank\">SiteGround’s WordPress Tutorials</a></li>\n<li><a href=\"https://ithemes.com/tutorial/category/wordpress-101/%20\" target=\"_blank\">iThemes WordPress 101</a></li>\n</ol>\n</div>\n<p>The above list is a mere scratching of the surface – <a href=\"https://premium.wpmudev.org/blog/learn-wordpress-resources/\" target=\"_blank\">you can go much further</a>.</p>\n<h2>Mistake 2: Using Insecure Login Credentials</h2>\n<p>While there are many <a href=\"https://wordpress.org/plugins/search.php?q=security\" target=\"_blank\">WordPress security plugins</a> to help you make doubly ensure that your dashboard is safe, the true guardians are your username and password.</p>\n<figure><img class=\"wp-image-399370\" src=\"https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-login-screen-1024x594.png\" alt=\"WordPress login screenshot.\" width=\"633\" height=\"367\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-login-screen-1024x594.png 1024w, https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-login-screen-300x174.png 300w, https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-login-screen-768x445.png 768w, https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-login-screen.png 1504w\" sizes=\"(max-width: 633px) 100vw, 633px\" /></figure>\n<p>Using the default <em>admin </em>username coupled with a weak password could spell disaster; enabling hacker bots to gain access to your site and wreak havoc.</p>\n<h3>How to Avoid This Mistake</h3>\n<p>First, try a username other than <em>admin</em>. Choose something you’ll easily remember, but that may not come so naturally to a bot trying to hack in.</p>\n<p>Secondly, feel free to take advantage of the password generator that comes installed with WordPress. Not comfortable using a password that you have to store somewhere? Check out <a href=\"https://xkcd.com/936/\" target=\"_blank\">XKCD&#8217;s post on simple, secure passwords</a>.</p>\n<h2>Mistake 3: Keeping the Default Permalink Structure</h2>\n<p>The default permalinks provided by WordPress won&#8217;t necessarily be right for you. And because permalinks can impact your Search Engine Optimization (SEO) rankings and the usability of your site, they&#8217;re worth thinking about!</p>\n<p>Permalinks, when structured well, don’t simply provide useful information about what information can be found in the post (therefore helping SEO) – they can be used as easy to memorize bookmarks later.</p>\n<p>What’s easier to remember later? This&#8230;</p><pre class=\"crayon-plain-tag\">/2008/02/03/this-was-the-entire-title-name-with-all-the-words/</pre><p>&#8230;or&#8230;</p><pre class=\"crayon-plain-tag\">/simple-title/</pre><p>Furthermore, permalinks displayed within the search results and in the browser address bar can give the reader a clue as to what they will read before your site even loads.</p>\n<p>The worst part is, once Google has indexed your site with a certain permalink structure, it can really <a href=\"https://moz.com/blog/advanced-wordpress-seo-permalink-changes-multilingual-implementation\" target=\"_blank\">hurt your rankings</a> to change it after the fact – no matter how careful you are through the process of switching to a new structure.</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Do your homework!</p>\n<p>Research the <a href=\"https://premium.wpmudev.org/blog/wordpress-permalinks/\" target=\"_blank\">best permalink structure for your needs</a> and set them according before you hit <em>Publish</em> on even a single page.</p>\n<h2>Mistake 4: Failing to Install Traffic Analytics</h2>\n<p>Analytics provide insights on your site, its audience, and how they interact with your content.</p>\n<figure><img class=\"alignnone wp-image-399374\" src=\"https://theme-fusion.com/wp-content/uploads/2016/03/google-analytics-screenshot-1024x430.png\" alt=\"Google Analytics screenshot\" width=\"633\" height=\"266\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/03/google-analytics-screenshot-1024x430.png 1024w, https://theme-fusion.com/wp-content/uploads/2016/03/google-analytics-screenshot-300x126.png 300w, https://theme-fusion.com/wp-content/uploads/2016/03/google-analytics-screenshot-768x323.png 768w\" sizes=\"(max-width: 633px) 100vw, 633px\" /></figure>\n<p>When you can see which articles are drawing your audience in and what content makes them leave, you can provide more experiences they love (and less of what they don’t). Analytics can also be used to determine <em>how</em> your users are browsing through your site, and help you figure out which are the best pages to focus conversion optimization on.</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Install <a href=\"https://analytics.google.com/\" target=\"_blank\">Google Analytics</a> as soon as your site launches! Avada makes doing so simple by providing a dedicated field in the Theme Options to which you can add your Google tracking code.</p>\n<h2>Mistake 5: Using Poor Quality Themes</h2>\n<p>A poorly written theme can impact your site’s performance and usability. Even a theme with a beautiful demo may not have the options you need, or may include unnecessary scripts or unoptimized code and images.</p>\n<p>In other words, don’t just throw the first pretty theme you find onto your site!</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Do your research for any theme that catches your interest. You can follow these steps to do your own background check:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li><strong>Search for more information about the author of the theme.</strong> Are they experienced? Have they developed other themes?</li>\n<li><strong>Read through reviews about the theme itself.</strong> Do people enjoy using it? What kind of websites does it work best for?</li>\n<li><strong>Look at the history of updates.</strong> Does it get updated to stay current with WordPress releases? How often are updates published? What kinds of features are added over time?</li>\n<li><strong>Check support capabilities.</strong> What kind of support does the developer offer? Do reviews mention top quality or poor quality support?</li>\n</ol>\n</div>\n<p><a href=\"https://premium.wpmudev.org/blog/free-wordpress-themes-how-to-choose-the-perfect-theme-for-you/\" target=\"_blank\">Check out a more detailed guide here</a>. Naturally, we think pretty highly of <a href=\"http://avada.theme-fusion.com/\" target=\"_blank\">Avada</a> <img src=\"https://s.w.org/images/core/emoji/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<h2>Mistake 6: Not Setting Up Automated Backups</h2>\n<p>Back in the good ol&#8217; days, did you ever write a document in <a href=\"https://products.office.com/en-US/word\" target=\"_blank\">Microsoft Word</a>, only for the program to crash? That doc was gone forever and you were forced to started again.</p>\n<p>Multiply the frustration you felt tenfold and you might start getting close to understanding how terrible it is to lose your website to a technical hosting glitch or a hacker.</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Set up a backup system immediately! <a href=\"https://theme-fusion.com/need-set-wordpress-backup/\" target=\"_blank\">Here&#8217;s our tutorial</a> to show you how.</p>\n<h2>Mistake 7: Never Updating WordPress</h2>\n<p>It’s easy to ignore the update notifications for WordPress, or even fear them due to a misunderstanding of what might happen when you update.</p>\n<div id=\"attachment_399354\" style=\"width: 643px\" class=\"wp-caption aligncenter\"><img class=\"wp-image-399354\" src=\"https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-updates.png\" alt=\"WordPress Updates Screenshot\" width=\"633\" height=\"169\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-updates.png 915w, https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-updates-300x80.png 300w, https://theme-fusion.com/wp-content/uploads/2016/03/wordpress-updates-768x206.png 768w\" sizes=\"(max-width: 633px) 100vw, 633px\" /><p class=\"wp-caption-text\">There&#8217;s nothing to fear about keeping your plugins up to date.</p></div>\n<p>You must learn to face your fears and keep WordPress updated! Keeping your WordPress installation up to date is important for a few reasons:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>WordPress develops updates to fix security bugs.</li>\n<li>WordPress updates include better features.</li>\n<li>Keeping all of your plugins and themes up to date with WordPress helps ensure that everything will continue to run smoothly and safely.</li>\n</ol>\n</div>\n<p>A great example of this is Avada. We continually send updates to bring you stronger and better tools with Avada, but some of those features can only be used with the current version of WordPress!</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Squish those notifications by using the automatic updater for WordPress through the <em>Updates</em> page. Alternatively, you can <a href=\"http://www.wpbeginner.com/plugins/how-to-enable-automatic-updates-for-wordpress-plugins/\" target=\"_blank\">setup automatic updates</a> for 3rd party plugins and for the Avada theme, <a href=\"https://theme-fusion.com/avada-doc/getting-started/how-to-register-your-purchase/\" target=\"_blank\">register your purchase</a> to enable theme auto updates.</p>\n<h2>Mistake 8: Uploading Unoptimized Images</h2>\n<p>Poorly optimized images can put more of a strain on your site&#8217;s load speed than anything else, and you only have to consider your own browsing habits to know that a slow loading site can cause great frustration. I&#8217;m willing to bet that you&#8217;ve hit the <em>Back</em> button on a slow website on more than one occasion. Do you want visitors to do the same to your site?</p>\n<h3>How to Avoid This Mistake</h3>\n<p>Optimize all of your images! It&#8217;s far easier than you think, and you&#8217;ll be able to reduce image file size dramatically, without noticeably affecting quality.</p>\n<p>You can run all your existing images through an optimization process and set up automatic optimization for newly uploaded images. Here’s our tutorial to <a href=\"https://theme-fusion.com/wordpress-image-optimization-guide/\" target=\"_blank\">show you how</a>.</p>\n<h2>Conclusion</h2>\n<p>It may be super easy to install WordPress and get your site up and running, but don&#8217;t let that lull you into a false sense of security. You&#8217;d do well to educate yourself a little – at least enough to avoid the above eight common mistakes.</p>\n<p>Just to review, here’s how to avoid these mistakes:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>Take advantage of free educational resources.</li>\n<li>Use strong login credentials.</li>\n<li>Use the appropriate settings for your permalinks.</li>\n<li>Install Google Analytics.</li>\n<li>Choose a high-quality theme.</li>\n<li>Set up an automatic backup system.</li>\n<li>Keep your WordPress up to date.</li>\n<li>Optimize all of your images.</li>\n</ol>\n</div>\n<p>By following all of the above, you’re already ahead of the game!</p>\n<p>Have you made any mistakes with WordPress that you&#8217;d like to share so that others can avoid them? Let us know in the comments section below!</p>\n<p><em>Image Credit: <a href=\"https://pixabay.com/en/users/kpgolfpro-27707/\" target=\"_blank\">Kevin Phillips</a></em></p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/top-mistakes-to-avoid-getting-started-wordpress/\">How to Avoid These Top 8 Mistakes When Getting Started With WordPress</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://theme-fusion.com/top-mistakes-to-avoid-getting-started-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Important Changes Coming In Avada 5.0\";s: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:62:\"http://theme-fusion.com/important-changes-coming-in-avada-5-0/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://theme-fusion.com/important-changes-coming-in-avada-5-0/#comments\";s: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, 02 Aug 2016 13:48:45 +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:6:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:15:\"Beginners Guide\";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:6:\"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:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Updates\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"important\";s: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:33:\"http://theme-fusion.com/?p=406091\";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:543:\"<p>The year of 2016 brings so much excitement for our + customer base. Avada has been the #1 selling theme for 4 years in a row with no signs of stopping. Our goal is to ensure we are leaders and innovators in this market. Avada is a digital product that deals with ever-changing web technologies. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/important-changes-coming-in-avada-5-0/\">Important Changes Coming In Avada 5.0</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Luke\";s: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:15602:\"<p>The year of 2016 brings so much excitement for our <strong>240,000+</strong> customer base. Avada has been the #1 selling theme for 4 years in a row with no signs of stopping. Our goal is to ensure we are leaders and innovators in this market. Avada is a digital product that deals with ever-changing web technologies. This requires ThemeFusion to make careful decisions so we can continue and move forward into the future. These decisions allow us to improve and innovate, while making sure our customer base receives the best product they possibly can. </p>\n<p><span id=\"more-406091\"></span></p>\n<p>Backwards Compatability is critically important to us. Each decision taken and executed by our team is the result of highly detailed planning to ensure that every customer can update as smoothly as possible. We do all in our power to inform our customer base of important changes that each major update brings. <a href=\"https://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> has 3 important items that vastly improve Avada, at the same time, they require our customers to be well informed about each of them. </p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 50px;margin-bottom: 20px;background-color: #dadada;height: 1px;\"></div>\n<strong>Please read below for each of the 3 important items. Each item has a section that describes the change, then a section that explains what it means for you, the customer.</strong><br />\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 20px;margin-bottom: 30px;background-color: #dadada;height: 1px;\"></div>\n<h4>1. New Token Registration For Auto Updates / Demo Importing / Plugin install &#038; Updates</h4>\n<p>In past versions of Avada, auto updates required a 3 part registration process, while demo importing and installing/updating of plugins did not require anything. However, there are a few issues with this. </p>\n<p>First, a 3 part registration process is cumbersome and only worked for auto theme updates. Second, this previous process was based off the old Envato API which is very soon coming to an end. Since the old Envato API is ending, we are required to work with the new API which has many enhancements and improvements. One of these improvements allows us to make the registration process much easier!</p>\n<p>Enter the new Envato token registration process! This process only requires one single key and is very easy to setup.</p>\n<p>The new token registration process will be required to receive auto theme updates, Avada demos, and premium plugins to install and update. Though past versions of Avada did not require you to register the product to receive the demos and plugins, Avada 5.0 will. This may seem like an unnecessary step, but in reality it&#8217;s a vast improvement and all for the better! </p>\n<p>Before you hold reservations, let me explain what this means for you, the Avada customer. The new token method allows us to control all three items <em>(auto theme updates / Avada demos / premium plugins)</em> with one token key from your Envato account. This allows us to provide you with all the necessary data from a server instead of the theme zip file.</p>\n<p>This means a drastically reduced theme zip file that will easily install without the need to bump up PHP configurations. Customers with low PHP configurations or shared servers will no longer have to login via FTP to upload the theme. </p>\n<p>In addition, this allows us to continue adding as many demos as we need, offer more plugins, reduce unnecessary bugs and more easily maintain a more efficient codebase. This is a major improvement and overall time saver!  </p>\n<p>The new registration process is done through the new Envato API via a token key. When you update to <a href=\"https://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> you will see this below on the Avada Product Registraton Tab. Simply click on the instruction toggle box to view information on how to get your token key.  Once registration is complete, all Avada demos can be imported and premium plugins <em>(currently Layer Slider and Revolution Slider)</em> will be able to be installed or updated.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration.jpg\" alt=\"avada_5.0_token_registration\" width=\"1266\" height=\"800\" class=\"aligncenter size-full wp-image-409229\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration-300x190.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration-768x485.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5.0_token_registration-1024x647.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h3>What Does This Mean For You?</h3>\n<p>While this is a major improvement for our customers, codebase and product, there is one thing we could not make happen. We tried everything we could and worked with Envato on trying to make it happen. However &#8230;</p>\n<p><strong>If you have already setup product registration for auto updates before, you will get an update notice in your WP admin area when Avada 5.0 is ready. However, once you are on Avada 5.0, any customer who already had product registration setup for auto updates will have to redo the product registration under the new token process.</strong> </p>\n<p>Thankfully, it&#8217;s easy and quick. After updating to 5.0, you will see the screen above and need to register the product via the new token process if you want auto updates / Avada demos / premium plugins. </p>\n<p>When Avada 5.0 releases, a full documentation post will be live in our support center. Simply go to the <a href=\"https://theme-fusion.com/support/\" target=\"_blank\">main support page</a> and enter a few keywords in the search field to find it.</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 50px;margin-bottom: 30px;background-color: #dadada;height: 1px;\"></div>\n<h4>2. Portfolio &#038; FAQ Page Templates Are Removed</h4>\n<p>Previously we had two methods to display your portfolio post types; a specific portfolio page template or the recent work element. And we had only one method to display your FAQ post types, the FAQ page template.</p>\n<p>Page templates are limiting because they do not allow you to place the corresponding post type wherever you&#8217;d like which makes it difficult to build a page with additional content. For example, you can use a <em>Portfolio 3 column page template</em>, and insert additional content on the page but the additional content will always be above the portfolio posts. The same is true for the FAQ page template. </p>\n<p>Elements <em>(shortcodes)</em> on the other hand, do not have this limitation, they are far more superior and we have chosen to only use them moving forward for our custom post types. Avada 5.0 brings a new FAQ element <em>(this has been widely requested, yay!)</em> and the recent work element has been renamed to portfolio. </p>\n<p>Our goal is to always improve, simplify and enhance Avada. In this instance simplification is necessary. We offer two methods to do the same thing, but one method <em>(elements)</em> is way more flexible. This is the reasoning behind removing all Portfolio and FAQ page templates. </p>\n<p>Instead of using page templates, you will be using the Portfolio and FAQ elements to display those post types anywhere you wish to display them. Elements are far superior than page templates because they A) can be placed anywhere on the page, even between other content, B) offer several more customization options, C) simplify the process of page building.</p>\n<p>The portfolio element gets long awaited feature additions like the load more button, infinite scroll, portfolio title display, text alignment, boxed padding and more. The FAQ element gets filter display, category selection and exclude categories. In addition every element now gets the brand new element visibility system that allows you to display exactly what you want on mobile, tablets and desktop. </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements.jpg\" alt=\"avada_5_faq_portflio_elements\" width=\"1266\" height=\"695\" class=\"aligncenter size-full wp-image-409252\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements-300x165.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements-768x422.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/07/avada_5_faq_portflio_elements-1024x562.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h3>What Does This Mean For You?</h3>\n<p>When you update to Avada 5.0, if you have a page that is using a portfolio or FAQ page template, everything will be automatically taken care of. </p>\n<p>The page template will be converted to the <em>default</em> or <em>100% width (if you had 100% width selected in fusion page options)</em> page template, and a portfolio or FAQ element will be added to it with the same options you previously had. The Fusion Page Options tab for Portfolio will be removed since it is no longer needed. All options and settings for Portfolio and FAQ elements are controlled directly in the element settings window via Fusion Builder, or globally via Fusion Theme Options.</p>\n<p>We&#8217;ve created the code to ensure the removal of these page templates and accurate conversion of your settings for any Portfolio or FAQ page template you were using. Everything is taken care of when you update to Avada 5.0.</p>\n<p>For those who use child themes and have modified these templates that will be removed in Avada 5.0, you can now modify the Portfolio or FAQ element with new hooks and also full element class replacement. Both are taken care of in our codebase.</p>\n<p>When Avada 5.0 releases, a full documentation post will be live in our support center. Simply go to the <a href=\"https://theme-fusion.com/support/\" target=\"_blank\">main support page</a> and enter a few keywords in the search field to find it.</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 50px;margin-bottom: 30px;background-color: #dadada;height: 1px;\"></div>\n<h4>3. Fusion Builder Page Conversion</h4>\n<p>Avada 5.0 includes the brand new <a href=\"https://theme-fusion.com/avada-5-0-building-the-future/\" target=\"_blank\">Fusion Builder</a>! The codebase was rebuilt from the ground up to ensure backwards compatibility, enhanced performance, ease of use, extendibility, modularity and the future. It is ridiculously fast, efficient and extremely fun to use.</p>\n<p>The new Fusion Builder is a stand-alone plugin that is included with Avada. As mentioned, it has been built for the future and will eventually be released as it&#8217;s own product to be used with any theme! With this incredible new codebase, all previous pages built with the old Fusion Builder have to be converted over to the new Fusion Builder format. </p>\n<p>Upon updating to Avada 5.0, you will be presented with a splash screen that explains the process and asks you to confirm conversion. We do not automatically convert the pages because we have also made sure that we use unique names for Avada elements to prevent conflicts with other 3rd party plugins.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion.jpg\" alt=\"avada5_fb_conversion\" width=\"1266\" height=\"1147\" class=\"aligncenter size-full wp-image-409260\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion-300x272.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion-768x696.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/07/avada5_fb_conversion-1024x928.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h3>What Does This Mean For You?</h3>\n<p>In order to achieve this, all element names that are related to Avada need to be converted to the new Fusion Builder syntax. To do so, Avada will search through your posts and pages and collect IDs of all pages using old Avada elements. Then it will create backups of those posts <em>(to ensure all your data is fully secure)</em> and convert the shortcode names to our new syntax. The process can take a little time, <em>(or more time if you have a lot of pages and posts)</em>, so please be patient and DO NOT CLOSE THE SCREEN once you&#8217;ve triggered the conversion.</p>\n<p>If you choose to not convert the shortcodes, you won&#8217;t be able to use Avada 5.0. You can simply revert to your previous theme version by deleting the contents of the new Avada folder and copying the old Avada theme folder to your server.</p>\n<p>As always and with any software, we recommend doing a full database backup before proceeding with conversion. Once converted, you will be able to fully enjoy all that Avada 5.0 offers along with the amazing new Fusion Builder.</p>\n<p>When Avada 5.0 releases, a full documentation post will be live in our support center. Simply go to the <a href=\"https://theme-fusion.com/support/\" target=\"_blank\">main support page</a> and enter a few keywords in the search field to find it.</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 50px;margin-bottom: 30px;background-color: #dadada;height: 1px;\"></div>\n<h4>Conclusion</h4>\n<p>We take immense pride in providing free updates to our <strong>240,000+</strong> customer base. In addition, we make backwards compatibility one of the most important factors in every update. We have a beta testing group of over 200+ customers who have been helping us test all of this along the way, and we do everything in our power to make the process as smooth as it can be.</p>\n<p>As always, our amazing team of experts are just a ticket away from helping answer any questions you have. We are always here to help you around the clock.</p>\n<p>We are extremely excited about this update, it is a major step forward for Avada customers and our codebase. And it&#8217;s only the beginning, a full front end experience is coming to all Avada customers along with a plethora of new products and services. The future is bright and exciting!</p>\n<p>We humbly thank you for making <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada the #1 selling theme of all time</a> on Themeforest and for giving us an overall 5 star rating for the past 4 years. This is the highest praise we could receive from you. Your dedication, loyalty and business drives us each day and we will continue to pay it back through these amazing updates and top notch customer support.</p>\n<p>We love you all, thank you!</p>\n<p>Cheers<br />\nThemeFusion Team</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/important-changes-coming-in-avada-5-0/\">Important Changes Coming In Avada 5.0</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://theme-fusion.com/important-changes-coming-in-avada-5-0/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"96\";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:66:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Avada 5.0 Building The Future\";s: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:\"http://theme-fusion.com/avada-5-0-building-the-future/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://theme-fusion.com/avada-5-0-building-the-future/#comments\";s: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, 29 Jun 2016 17:43: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:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:6:\"Design\";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:14:\"Fusion Builder\";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:5:{s:4:\"data\";s:6:\"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:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"Updates\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:6;a:5:{s:4:\"data\";s:8:\"features\";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:5:{s:4:\"data\";s:14:\"fusion builder\";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:5:{s:4:\"data\";s:7:\"plugins\";s: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:33:\"http://theme-fusion.com/?p=406086\";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:552:\"<p>Our ambitious plans continue for 2016, the next major step is coming near and the excitement is building, literally! Avada 5.0 includes something incredible that has been worked on for a very long time and plays a vital role in site creation. The brand new Fusion Builder. We at ThemeFusion strive for simplicity in our [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-5-0-building-the-future/\">Avada 5.0 Building The Future</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Luke\";s: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:40999:\"<p>Our ambitious plans continue for 2016, the next major step is coming near and the excitement is <strong><em>building</em></strong>, literally! <a href=\"http://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> includes something incredible that has been worked on for a very long time and plays a vital role in site creation. The brand new Fusion Builder.</p>\n<p><span id=\"more-406086\"></span></p>\n<p>We at ThemeFusion strive for simplicity in our product, yet at the same time have the continued goal of making Avada fully customizable from the ground up without having to be a web developer. A huge part of this relies on ThemeFusion&#8217;s proprietary page builder called Fusion Builder. </p>\n<p>The Fusion Builder gives you a drag and drop, WYSIWYG visual editing experience. It makes it easy to create beautiful, unique web pages or posts.</p>\n<p>Over the years we have had several feature, functionality and improvement requests for Fusion Builder from our <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">240,000+ user base</a></strong>. </p>\n<p>To make Fusion Builder into the page builder that everyone requests, and the codebase our team envisions, we were required to be build it new from the ground up. This was a decision made back in 2015 and has been worked on by a portion of our team for a long time, and now the entire team is focusing on it to ensure it&#8217;s ready for our next major update, <a href=\"http://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a>.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">We are extremely excited to bring you months and months of work that we feel has yielded the best page builder on the market!</h3>\n<p>When Fusion Builder releases with Avada 5.0, it will be its own separate plugin. First it will only be included with Avada only, but eventually it will be sold as its own stand alone product.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png\" alt=\"fusion_builder_logo\" width=\"1266\" height=\"800\" class=\"aligncenter size-full wp-image-406811\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-300x190.png 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-768x485.png 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-1024x647.png 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p><em>While we are about to enter the beta phase, please note that some images you see below may change before the final release.</em></p>\n<h4>The New Fusion Builder</h4>\n<p>The new Fusion Builder was built with performance, ease of use, extendibility and modularity in mind. This is not only a page builder, it is going to serve as the backbone of many new products. Built with backbone.js, it is ridiculously fast, efficient and extremely fun to use. </p>\n<p>Everything has been re-envisioned from top to bottom to ensure easy site building that is intuitive and extremely fast.  </p>\n<p>Oh and don&#8217;t worry, all of your previous pages and posts built with the current Fusion Builder will be converted over to the new Fusion Builder upon updating to Avada 5.0!</p>\n<p>Read below for a portion of our favorite highlights and previews of what the new Fusion Builder will include. This is only a sample of what truly lies under the hood of Fusion Builder.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Entirely Re-Built Codebase From Top To Bottom</h5>\n<p>Fusion Builder has been completely re-built from the ground up. This includes the backend code to the all important user interface. While time consuming, this has allowed us to do whatever we want with it now, and into the future. </p>\n<p>The speed at which it operates is a minimum 10x faster than its predecessor. One of the main goals for the codebase was to ensure it is built for speed, regardless of the overall page size.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1.jpg\" alt=\"fusion builder codebase\" width=\"1275\" height=\"627\" class=\"aligncenter size-full wp-image-406826\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1.jpg 1275w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1-300x148.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1-768x378.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_codebase-1-1024x504.jpg 1024w\" sizes=\"(max-width: 1275px) 100vw, 1275px\" /></a></figure>\n<p>The beneficial speed enhancements and squeaky clean codebase are highly important, but the user interface is what truly makes this into the best builder on the market. The user interface is the means by which you interact and use a digital product. It can make or break its success. </p>\n<p>Our team has spent countless hours making sure every little detail of the user interface from the overall layout, to the controls, to the option editing is perfect.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">And this is only the beginning.</h3>\n<p>The first version to release is purely a backend builder because we know that our <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">240,000+ customers</a></strong> are diverse. Many customers want backend editing only, and many want front end editing. The good news is Fusion Builder will have both!  The magical codebase that runs it was built in such a way that it&#8217;s ready for anything we throw at it. </p>\n<p>A front end version of the new Fusion Builder is already in the design phase and will quickly be in development after <a href=\"http://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> is released. In addition, Fusion Builder will not only be for Avada users, it will eventually by available for any WordPress theme.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Intuitive User Interface</h5>\n<p>The problem with most page builders is that you do not get enough room to build the page by being forced to edit within a sidebar of options, or the interface is so complicated that it takes several clicks to do one simple thing, or it is just so bad it makes you want to scream and smash your computer screen. </p>\n<p>User interfaces can make or break a product, and we spent a lot of time making sure we got ours right. Below is a quick preview of a basic layout with no content added but containers and columns. Please click to enlarge the image.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview.jpg\" alt=\"fusion_builder_preview\" width=\"1275\" height=\"627\" class=\"aligncenter size-full wp-image-406821\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview.jpg 1275w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview-300x148.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview-768x378.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_preview-1024x504.jpg 1024w\" sizes=\"(max-width: 1275px) 100vw, 1275px\" /></a></figure>\n<p>The first thing you will notice is that the new Fusion Builder looks fairly different from the old one, besides some similarities in column box controls. There is no longer a top control bar with columns / elements / pre built page tabs.  While this may make some of you surprised and ask, <em>&#8220;Why in the world did you do that?&#8221;</em>. The answer is simple, it is no longer needed!</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">The new interface allows you to add anything, anywhere, anytime.</h3>\n<p>The new interface and process allows us to do things we simply could not do before. We take usability very seriously and have come up with a new system that we feel you will absolutely love.  </p>\n<p>We&#8217;ve even created a &#8220;start&#8221; page when building a new page or post that helps you get started. Below is an example of what you will see when starting a new page or post.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page.jpg\" alt=\"fusion_builder_start_page\" width=\"1266\" height=\"675\" class=\"aligncenter size-full wp-image-406991\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page-300x160.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page-768x409.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_start_page-1024x546.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>We&#8217;ve done a lot of research and worked tirelessly on the new user interface for Fusion Builder making sure every detail is perfected for usability. Most builders, including our current Fusion Builder require you to drag and drop elements from a static top bar. They also require extra clicks to do something that can be done with less. </p>\n<p>The new Fusion Builder cuts through all these problems and provides a clean and simple interface that allows you to quickly build pages even if you&#8217;ve never used a page builder before. </p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">The hard work has definitely paid off with an interface that allows you to add anything, anywhere at anytime while building your page.</h3>\n<p>The below screenshot shows you a quick glimpse into this process.  It is a column box in the middle of an entire page layout. Yet you can quickly see that you can easily add a new element, entire container or set of columns anywhere you are at on the page. This is a major time saver and will change the way you view Fusion Builder. </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface.jpg\" alt=\"fusion_builder_interface\" width=\"1266\" height=\"767\" class=\"aligncenter size-full wp-image-406837\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface-300x182.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface-768x465.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_interface-1024x620.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>The areas you see for <em>+ Container</em>, <em>+ Column</em> and <em>+ Elements</em> are activation buttons that bring up modal windows for you to quickly select the item you wish to insert. </p>\n<p>For example, when you click <em>+ Element</em> you are presented with a popup window to choose any pre-built element or any custom element you have created <em>(we will get into custom content later)</em>.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview.jpg\" alt=\"fusion_builder_element_preview\" width=\"1266\" height=\"895\" class=\"aligncenter size-full wp-image-406845\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview-300x212.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview-768x543.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_element_preview-1024x724.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>It&#8217;s important to note that the we are now calling <em>full width containers</em> only <em>containers</em>, however they still act as they always have. This was a simple name change we felt was needed.  With the way the new Fusion Builder works, it is always necessary for content to go inside of a container. </p>\n<p>The process of building a page is <em>Containers > Columns > Elements</em> &#8230; you add containers first, then inside of containers go columns and inside of columns go elements (shortcodes).  This is the process for page building and the proper way to do it so it can be used with any theme in the future. The user interface is built in such a way that makes this process easy and fullproof!</p>\n<p>This is just a taste of the new user interface and only shows you a glimpse of what can be done. You really only truly understand the benefits of it once you start to use it, and we are extremely excited for when that time comes. </p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Fusion Builder Library &#038; Custom Content</h5>\n<p>One of our top feature requests over the past 2 years has been the ability to save your own custom content. The new Fusion Builder will not disappoint in this area. We&#8217;ve added an entire &#8220;Library&#8221; section that allows you to manage all types of saved content.  As you can see below, the Library button is always visible in the main control bar that sits above all content.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button.jpg\" alt=\"fusion_builder_library_button\" width=\"1266\" height=\"157\" class=\"aligncenter size-full wp-image-406995\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button-300x37.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button-768x95.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_button-1024x127.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>When the Library button is clicked, it opens up a popup window that holds all various types of custom and pre-built content. The pre-built content is made up of our Avada demo pages <em>(yes you can import individual pages from each demo which we will get into later!)</em>, the custom content is any content you save in your own layouts.</p>\n<p>The Library function allows you to save any type of custom content such as entire page layouts, containers, columns or elements. Every item you see on the page has a save icon to click. Once the saved icon is clicked, you name it and it is added into the library. </p>\n<p>Anything in the Library can be easily reused at anytime. Below is a screenshot of the Library window with custom containers we have saved.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1.jpg\" alt=\"fusion_builder_library_containers\" width=\"1266\" height=\"541\" class=\"aligncenter size-full wp-image-407063\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1-300x128.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1-768x328.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_containers-1-1024x438.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>As you can see, the Library is organized into various sections through a main tab control bar up top. This control bar is familiar and used throughout the new Fusion Builder for a consistent user experience. </p>\n<p>Another important feature to note is when you save your own page template, we provide you with options to manage them by editing or deleting the template. That alone is a great feature, but we also provide options for how the template loads on the page. </p>\n<p>Often times you may already have a page started but want to add a different custom template you have created to save time. Fusion Builder allows you to choose how the content is added to the page by giving you 3 options; Replace All Content, Insert Above Current Content and Insert Below Current Content. The below screenshot shows you these options.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading.jpg\" alt=\"fusion_builder_template_loading\" width=\"1266\" height=\"303\" class=\"aligncenter size-full wp-image-407025\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading-300x72.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading-768x184.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_template_loading-1024x245.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>The library is perfectly organized to match the overall functionality of the Fusion Builder. The process of how this works is exciting and truly changes how you will use Fusion Builder to create pages and posts. </p>\n<p>This extremely important feature will give you tons of time back since you can save any type of content you build, and reuse it at anytime. </p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Sharing is Caring</h5>\n<p>With the amazing tools the new Fusion Builder offers, we believe content created with it should easily be able to be shared between customers, clients, etc. The Library saves all your custom content into corresponding sections, and we&#8217;ve built an import/export feature that allows you to export all of your saved content, and then import it in another installation.</p>\n<p>Not only can you export the content, you can export each type of custom content individually. For example, if you only need to export your saved containers, you can export your saved containers and share that with someone else. Or if you wish, you can export everything at once.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1.jpg\" alt=\"fusion_builder_shareing\" width=\"1266\" height=\"348\" class=\"aligncenter size-full wp-image-407004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1-300x82.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1-768x211.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_shareing-1-1024x281.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>Building custom content through containers, columns, elements or entire pages and being able to share that content with other users is a big advancement for all Fusion Builder customers.  The possibilities are endless.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Main Control Bar Is Always Visible</h5>\n<p>We&#8217;ve mentioned the top control bar has had a drastic design change, there are no longer different tabbed sections with column, elements, etc to drag and drop onto the page. </p>\n<p>The new control bar is much smaller, yet does so much more. Due to this change, the main control bar can be constantly fixed on the screen so it&#8217;s always visible no matter if you are at the top, middle or bottom of the page. </p>\n<p>This allows you to always have the main controls to use directly in front of you which eliminates the need to scroll back up top to do an action. This is a major time saver.</p>\n<p>The screenshot below shows this in action. Take a look on the right side for the browser scrollbar. This is a very large layout and the current location is halfway down the page, yet the main control bar sticks to the top of the screen so you can always access it.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar.jpg\" alt=\"fusion_builder_sticky_control_bar\" width=\"1266\" height=\"652\" class=\"aligncenter size-full wp-image-407007\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar-300x155.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar-768x396.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_sticky_control_bar-1024x527.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>The main control bar is special in what it allows you to do. First off the builder page is always active, but has controls to access the library, collapse all sections at once, add custom css to the page, save the entire page as a template, delete all content, and control history states. All of this is uniquely setup in one single bar that allows you to quickly use each feature.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">History State Control</h5>\n<p>While we&#8217;re talking about the main control bar, one of the most useful features on it is the &#8220;History States&#8221; icon.  In most builders, you can go back or forth in your history states one at a time with a back arrow or a forward arrow.  The new Fusion Builder has one history button that shows you a dropdown list of your last 30 actions so you can quickly jump back several states with one click. </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history.jpg\" alt=\"fusion_builder_history\" width=\"1266\" height=\"450\" class=\"aligncenter size-full wp-image-407009\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history-300x107.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history-768x273.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_history-1024x364.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>This addition allows you to not only go back in time, but leap back in time with a single click. the history state icon opens a dropdown box on hover and shows you the names of each action taken, so you can quickly and easily identify what state you need to return to. It&#8217;s awesome!</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Custom CSS Per Page</h5>\n<p>A big request from our customer base has been to provide them with a way to insert custom CSS per page. Fusion Theme Options has a custom CSS field that will apply globally to every page or post, but the new Fusion Builder has a feature that allows you to apply CSS to a specific page only. Here is an example of what you will see.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field.jpg\" alt=\"fusion_builder_css_field\" width=\"1266\" height=\"642\" class=\"aligncenter size-full wp-image-407020\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field-300x152.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field-768x389.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_css_field-1024x519.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>The main control bar has an icon that toggles the entire css field up and down. Any CSS entered into this field will only apply to that one page. It is always accessible with the sticky control bar and when you save a page template, the CSS will be saved with it. </p>\n<p>Since the CSS is saved with the page template, it will also be imported to new pages when you start from a custom page template. If the page already has custom CSS, then the new CSS is appended to the existing CSS when you load a custom template on it.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Import Any Page From Any Demo</h5>\n<p>Yes you read that correctly! The new Fusion Builder allows you to import any single page from any Avada demo with just a few clicks. We are often asked by our customer base something like this &#8230; </p>\n<p><em>&#8220;How do I use the Travel demo, but with the Cafe demo Contact us page?&#8221;</em>.  </p>\n<p>Well, now you can very easily!  Everything is saved and managed in the Fusion Builder Library, and for Avada users this also means single pages from all Avada demos. </p>\n<p>Simply open the Library window and select the Demo tab, find the demo you want from the dropdown menu, and you will be presented with a full list of each page that demo contains. Find the page you want and click the load button &#8230; voila! Below shows you an example of the demo section in the Library window.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos.jpg\" alt=\"fusion_builder_library_demos\" width=\"1266\" height=\"675\" class=\"aligncenter size-full wp-image-406997\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos-300x160.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos-768x409.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_library_demos-1024x546.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">This is a very cool feature and makes it easy to mix and match any Avada demo layouts.</h3>\n<p>If you want the full demo with all the pages, posts, fusion theme options, fusion page options, widgets, post types, etc (everything!) you will need to import the full demo from our Avada > Demos section.  However, if you only need a single page from any of the demos, Fusion Builder is the way to go. </p>\n<p>It is important to note that when you import a single page from a demo through the Fusion Builder, it gives you the page layout, page template from the page attributes box, fusion page options and image placeholders for the images. </p>\n<p>This is done for technical and usability reasons. For example, Fusion Theme Options cannot import for a single page or those options would be applied to your entire site and override your current theme options.  </p>\n<p>The purpose of the single demo page import is to get the layout structure, along with page template and Fusion page Options. The purpose of importing a full demo from Avada > Demos is to get everything.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Nested Columns</h5>\n<p>Did someone say &#8220;nested columns&#8221;?  Yes that&#8217;s right, we did. Nested columns have been a big request from the designers who use Avada. Nested columns allow you to insert more columns inside of other columns.</p>\n<p>While that may not seem important, it opens up an entirely new world of design opportunities for page creation. For example, you can now have a 1/3 column on the left, a 2/3 column on the right that has a nested set of columns inside. This allows you to produce layouts like what you see below.  </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview.jpg\" alt=\"fusion_builder_nested_preview\" width=\"1266\" height=\"612\" class=\"aligncenter size-full wp-image-407028\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview-300x145.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview-768x371.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_preview-1024x495.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>Notice how the 1/3 column on the left goes the full height of the several columns on the right. And the columns on the right have one main 2/3 column at the top, then a set of 1/3 columns below. The possibilities with nested columns are virtually endless. By the way, that design example above is from a new Avada demo that is being created. </p>\n<p>To access the nested columns, click the <em>+ Element</em> button inside of any column, the popup window will display. At the top are 3 tabs; Elements (these are our pre-built shortcodes), Library Elements (these are your custom saved elements), and Nested Columns. The nested columns tab also shows a set of pre-built column combinations to save you time. Below is a screenshot for how they look inside the new Fusion Builder.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns.jpg\" alt=\"fusion_builder_nested_columns\" width=\"1266\" height=\"377\" class=\"aligncenter size-full wp-image-407030\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns-300x89.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns-768x229.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_nested_columns-1024x305.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h5 style=\"margin: 50px 0px 10px 0px\">More Incredible Features That Make This The Best Page Builder</h5>\n<p>We are only highlighting a few of the major features, but wanted to also give you a glimpse into many of the other amazing features that we&#8217;ve built into the new Fusion Builder.</p>\n<p>Containers can now be custom named. Simply click on the name &#8220;Containers&#8221; and you can start typing a new name directly on the page. This allows you to easily identify what that section is, which is very helpful on large pages with several containers. Each container can also be collapsed with a single click. This is extremely useful for saving screen real estate. </p>\n<p>The collapse option paired with custom container naming saves a lot of time and keeps everything organized and clean.  Oh, and the main control bar offers an option to &#8220;collapse all&#8221; containers on a single page at one time. This is extremely useful for reorganizing page content. Collapse all sections on the page, then simply drag and drop different containers into your desired place. Boom!</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names.jpg\" alt=\"fusion_builder_container_names\" width=\"2456\" height=\"177\" class=\"aligncenter size-full wp-image-407032\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names.jpg 2456w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names-300x22.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names-768x55.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_container_names-1024x74.jpg 1024w\" sizes=\"(max-width: 2456px) 100vw, 2456px\" /></a></figure>\n<p>Column resizing is no longer done with a + and &#8211; icon, just like history states, column resizing has a popup box that allows you to choose any size column we offer with a single click. There is no longer a need to click the + button several times to make a 1/6 column into a 1/1 column. Major time saver.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1.jpg\" alt=\"fusion_builder_column_resize\" width=\"1266\" height=\"400\" class=\"aligncenter size-full wp-image-407035\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1-300x95.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1-768x243.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_column_resize-1-1024x324.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>Elements that contain child elements, for example Tabs, have an entirley new user interface that is much easier to use. Each child element can now be reorganized into position via drag and drop. For example, if you have a tab element on your page and it contains 3 different tab sections, you can now easily drag and drop all 3 into your desired order.  </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg\" alt=\"fusion_builder_child_element\" width=\"1266\" height=\"483\" class=\"aligncenter size-full wp-image-407037\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-300x114.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-768x293.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-1024x391.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>And each child element is custom named based off the content you enter, so it&#8217;s very easy to know which child element it is. This new feature applies to any element that offers child items (tabs, content boxes, toggles, checklist, counter circles &#038; boxes, etc.)</p>\n<p>In addition, we now offer full sets of pre-built column combinations when adding both containers and columns to the page, including nested columns. Avada allows for up to 6 columns, so the pre-built column combinations are a big time saver when building your page. Simply click <em>+ Container</em> or <em>+ Column</em> buttons and you are presented with pre-built column combinations and your custom saved combinations to quickly insert with a single click.  </p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos.jpg\" alt=\"fusion_builder_col_combos\" width=\"1266\" height=\"990\" class=\"aligncenter size-full wp-image-407039\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos-300x235.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos-768x601.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_col_combos-1024x801.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>The new Fusion Builder comes with a set of global options that allow you to enable or disable any element. If you are not using the toggle element, simply disable it and it is gone. These global options also hold the import and export feature for all your custom content. </p>\n<p>Lastly a huge request has been to allow Fusion Builder to be used on custom post types. In the global settings area, you can easily enable or disable Fusion Builder for any registered post type. Each post type will get a check box to click so you can quickly manage if the Fusion Builder is used on them or not.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type.jpg\" alt=\"fusion_builder_post-type\" width=\"1266\" height=\"151\" class=\"aligncenter size-full wp-image-407040\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type-300x36.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type-768x92.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_post-type-1024x122.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>There are many more things that make the new Fusion Builder simply amazing, and we are extremely excited to bring this new product to our Avada customers first, then to the rest of the theme market.</p>\n<h5 style=\"margin: 50px 0px 10px 0px\">Future Plans for Fusion Builder</h5>\n<p>Fusion Builder 1.0 is simply the beginning of an amazing product that is going to continue and get better and better.  One of our main goals was to create it in such a way that it&#8217;s modular and extendible. </p>\n<p>There will be entire sets of add ons that you can use with Fusion Builder. We are already working with 3rd party developers to start and build an add on library. While this may take time, and only come to fruition once Fusion Builder is released as a stand alone product, the benefit for what this will do for our customers is simply amazing.</p>\n<p>Any developer who wishes to take part in the major Avada ecosystem will now be able to by creating new add ons for the Fusion Builder. The possibilities are endless.</p>\n<p>Future plans for Fusion Builder are solidified. The initial release is for our Avada customers, but that is only the beginning and our team is thrilled and extremely excited about continued development of this product.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome.jpg\"><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome.jpg\" alt=\"fusion_builder_welcome\" width=\"1266\" height=\"1079\" class=\"aligncenter size-full wp-image-407043\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome-300x256.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome-768x655.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_welcome-1024x873.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<h4>Conclusion</h4>\n<p><a href=\"http://avada.theme-fusion.com/whats-new-in-4-0/\" target=\"_blank\">Avada 4.0</a> brought us the new Fusion Theme Options Panel with a user interface that our customers love and saves a lot of time while building a site. <a href=\"http://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> that includes the new Fusion Builder shines in this area as well and makes everything easier, faster and more efficient. </p>\n<p>We&#8217;re very excited to be bringing you the new Fusion Builder, it contains months and months of development, blood sweat and tears. But the new Fusion Builder is not all, <a href=\"http://theme-fusion.com/avada-5-0-landing-soon/\" target=\"_blank\">Avada 5.0</a> includes several other features and improvements that make your life easier.  And this truly is only the beginning.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-5-0-building-the-future/\">Avada 5.0 Building The Future</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://theme-fusion.com/avada-5-0-building-the-future/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"229\";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:69:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Avada 5.0 Is Landing 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://theme-fusion.com/avada-5-0-landing-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://theme-fusion.com/avada-5-0-landing-soon/#comments\";s: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, 29 Jun 2016 17:43: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:10:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:6:\"Design\";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:14:\"Fusion Builder\";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:5:{s:4:\"data\";s:11:\"ThemeFusion\";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:5:{s:4:\"data\";s:6:\"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:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"Updates\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:7;a:5:{s:4:\"data\";s:20:\"avada theme features\";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:5:{s:4:\"data\";s:14:\"fusion builder\";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:5:{s:4:\"data\";s:6:\"update\";s: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:33:\"http://theme-fusion.com/?p=406754\";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:511:\"<p>Avada 5.0 has an awesome ring to it, and it has been ringing in our ears for quite some time. This update includes an incredible list of new features that are not just features, they aim at making your life easier. And that is something we are extremely excited about. Avada 5.0 is a very [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-5-0-landing-soon/\">Avada 5.0 Is Landing Soon!</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Luke\";s: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:29752:\"<p>Avada 5.0 has an awesome ring to it, and it has been ringing in our ears for quite some time. This update includes an incredible list of new features that are not just features, they aim at making your life easier. And that is something we are extremely excited about. Avada 5.0 is a very special update packed with several new features and improvements that make it the most historical update in our history of updates.</p>\n<p><span id=\"more-406754\"></span></p>\n<h4>Avada 5.0</h4>\n<p>This historical update contains many new features and improvements. We take our customer relations very serious and constantly get new feedback on various aspects of the theme.</p>\n<p>Each and every portion of feedback that comes into us is tracked and organized and plays a big part in what we release with each update. Avada 5.0 is the culmination of many things.</p>\n<p>Ultimately usability of a product is of the highest importance. <a href=\"http://avada.theme-fusion.com/whats-new-in-4-0/\" target=\"_blank\">Avada 4.0</a> brought us the new Fusion Theme Options Panel with a user interface that our customers love and saves a lot of time while building a site. That is what we consider a major usability enhancement, and we strive to continue making similar enhancements with each update.</p>\n<p>We are excited, thrilled and blessed to bring you Avada 5.0. Below are the highlights of this update, but they are only a glimpse into what Avada 5.0 really includes.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">The New Fusion Builder</h5>\n<p>This incredible update contains many new features and improvements. But high above anything else sits the brand new <a href=\"http://theme-fusion.com/avada-5-0-building-the-future/\" target=\"_blank\">Fusion Builder</a>.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png\"><img class=\"aligncenter size-full wp-image-406811\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png\" alt=\"fusion_builder_logo\" width=\"1266\" height=\"800\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo.png 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-300x190.png 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-768x485.png 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_logo-1024x647.png 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>Over the years we have had several feature, functionality and improvement requests for Fusion Builder from our <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">240,000+ user base</a></strong>.</p>\n<p>To make Fusion Builder into the page builder that everyone requests, and the codebase our team envisions, required us to <a href=\"http://theme-fusion.com/avada-5-0-building-the-future/\" target=\"_blank\">build it brand new from the ground up</a>. This was a decision made back in 2015 and has been worked on by a portion of our team for a long time, and now the entire team is focusing on it to ensure it is ready for our next major update, Avada 5.0.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">The new Fusion Builder will change your outlook on what a page builder can do.</h3>\n<p>In fact, the new Fusion Builder has so much to talk about that it needed it&#8217;s own post to show off all the bells and whistles. Check out all the details of the new Fusion Builder below.</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 40px;margin-bottom: 40px;\"></div>\n<a href=\"  http://theme-fusion.com/avada-5-0-building-the-future/  \" class=\"short-btn  large square \"  target=\"_blank\">   View The New Fusion Builder </a>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Fusion Core Codebase Clean Up</h5>\n<p>Fusion Core is our companion plugin that runs with Avada. A huge portion of Fusion Core was the Fusion Builder. However, in Avada 5.0 the new Fusion Builder has been separated out into its own individual plugin as it should be.</p>\n<p>This has allowed us to extensively clean up our Fusion Core plugin codebase. A lot of code has been removed from it making it light weight. While Fusion Core still holds features of Avada like the Fusion Slider and more, it will continue to change as our ambitious plans continue for 2016. These plans are exciting and will continue to make Avada more and more modular.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin.jpg\"><img class=\"aligncenter size-full wp-image-407079\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin.jpg\" alt=\"avada_5_plugin\" width=\"1258\" height=\"981\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin-300x234.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin-768x599.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_plugin-1024x799.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Avada Demo&#8217;s &amp; Premium Plugin Offloading</h5>\n<p>When we add new things to Avada, many factors are taken into account; usability, support, interface, customer feedback and more. As you know, Avada contains the <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">most advanced options system</a> in any theme on the market.</p>\n<p>Our options network allows you to <a href=\"http://avada.theme-fusion.com/demos/\" target=\"_blank\">build virtually any type of design</a> with one theme.</p>\n<p>Demos will continue to be added with each major update. However, each new demo that we add makes the overall Avada zip file larger. The typical hosting company only allows about an 8-10MB file to be uploaded via WP admin.</p>\n<p>We often get support requests for this issue because some of our customers cannot install Avada.zip through the WP admin because the zip file is larger than what the hosting company allows. With that being said, it can easily be installed via FTP and our team will help you do that, or you can ask you host to up the file size limit.</p>\n<p>However, we aim to please and do everything we can to avoid that scenario. This is why we built a brand new system for &#8220;demo and premium plugin offloading&#8221; via the new Envato API Token key registration. Everything will look the same once registered <em>(see the next section in regards to new registration process)</em>, but behind the scenes, the registration process has changed.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading.jpg\"><img class=\"aligncenter size-full wp-image-407089\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading.jpg\" alt=\"avada_5_demo_offloading\" width=\"1258\" height=\"735\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading-300x175.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading-768x449.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demo_offloading-1024x598.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>In Avada 5.0, we&#8217;ve built a new system based off the new Envato API that allows any demo we create to be installed outside of the theme zip via our own server. So instead of including all the demo content inside the Avada zip file, we keep it on our server. In addition, the two premium plugin we include (Slider Revolution and Layer Slider) will work with this new system.</p>\n<p>When you click to install a demo or install/update a plugin, it pulls all the content from our server and installs it on yours. Not only does this bring the size down of the theme zip fie which will help a lot of customers, it is also faster, more efficient and allows for easier future maintenance.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">With demo offloading, the Avada zip file has dropped more than 75% in overall size.</h3>\n<p>To allow demos and plugins to be offloaded requires a token key from the new Envato API, which leads us to the next item.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Envato Token Registration For Auto Updates &amp; Demo OffLoading</h5>\n<p>Currently we offer auto updates which requires a Themeforest username, purchase code and API key. This is what we currently consider &#8220;product registration&#8221; and it is based off the previous Envato API which involved 3 steps. This was required back before the new Envato API was made and it looked like this:</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration.jpg\"><img class=\"aligncenter size-full wp-image-407087\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration.jpg\" alt=\"avada_old_registration\" width=\"1258\" height=\"221\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration-300x53.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration-768x135.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_old_registration-1024x180.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>Recently Envato has updated their API which has very nice improvements. The improvements allow theme authors much easier ways to implement auto updates so we have taken advantage of this and added token registration.</p>\n<p>Token registration simply requires one field (not 3) and is much easier to setup. It is based off the new Envato API and allows for a faster, more reliable setup.</p>\n<p>To generate a token, you simply have to log into your Themeforest account, click the link we provide you and generate a token key. Then copy and paste the token key into the field and voila, all is done!</p>\n<p>Once you have setup your token, you have access to auto updates and demo offloading. Below is how the new registration field via token implementation looks.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1.jpg\"><img class=\"aligncenter size-full wp-image-407125\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1.jpg\" alt=\"avada_new_token_registration\" width=\"1258\" height=\"199\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1-300x47.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1-768x121.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_new_token_registration-1-1024x162.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>One field with one token, takes care of both the demo installation and the auto update. Its a beautiful, simple thing. The only bad news we have is that anyone who previously registered via our old method, now has to re-register via the token method. But we assure you, this is an advancement.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">This new token format is easier, more reliable and covers both product registration and demo offloading. In the end, it is for the advancement of the product and easier usability.</h3>\n<p>We tried many things to circumvent customers having to re-register and worked closely with Envato on this. Unfortunately, the new Envato API does not provide a way to move old registration to the new token format.</p>\n<p><em>What does this mean for those who already setup registration through the old method?</em></p>\n<p>Anyone who updates to Avada 5.0 and has previously registered for auto updates must setup the new token format. You will no longer see the old method, it will only display the new token format. We understand that can be frustrating for those who registered already, however we did our best to avoid it but it was simply not possible and out of our hands.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">New Visibility System for All Fusion Builder Elements</h5>\n<p>In our current version of Avada, we have some elements (full width containers <em>&#8220;now only called Containers&#8221;</em>, columns and image frames) that have a &#8220;hide on mobile option&#8221;. While this is useful, it is incomplete. Avada 5.0 brings a full visibility system that takes everything to the next level.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">Every element you can use with Fusion Builder now has &#8220;visibility options&#8221; that include 3 settings; mobile, tablet, desktop.</h3>\n<p>This system allows you to control what your viewers see on any screen. For example, on desktop you may have a lot of content to show in tabs, but on tablets and mobile it takes up to much room. You can now select to show the full set of tabs on desktop, and then show shortened versions of them on tablets and mobile.</p>\n<p>Below is what you will see for every Fusion Builder element.</p>\n<p><strong> <em>EDIT: due to development changes, the options are now called small screen / medium screen / large screen</em></strong>.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility.jpg\"><img class=\"aligncenter size-full wp-image-407094\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility.jpg\" alt=\"avada_5_visibility\" width=\"1258\" height=\"152\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility-300x36.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility-768x93.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_visibility-1024x124.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>As you can see, there are 3 options and each one acts like a toggle. In the above example, this content is set to show on tablets and desktop, but is hidden on mobile.</p>\n<p>Every element can be hidden or changed to display exactly how you want it on mobile phones, tablets and desktop. This visibility system opens up incredible possibilities for how you display your content to your viewers.</p>\n<p>In addition, we will be adding new breakpoints to determine when mobile and tablets should break <em>(more on that later!)</em>. In theory, the possibilities are endless!</p>\n<h5 style=\"margin: 25px 0px 10px 0px;\">Advanced Option Network Correlation</h5>\n<p>This title may not be obvious as to what it means when you first read it, but we are very excited about it!</p>\n<p>Avada has the <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">most advanced options system</a> in any theme on the market. It consists of Fusion Theme Options, Fusion Page Options and Fusion Builder Options. All of these options work together to allow you to build unique, professional sites.</p>\n<p>As you know, Fusion Theme Options are global options, meaning they affect every thing throughout your site. However, Fusion Page Options and Fusion Builder Options override the Fusion Theme Options on a per page or per element basis.</p>\n<p>This concept we built allows ultimate flexibility in page creation. For example, you may want all your buttons to be square and blue throughout your site, yet one page needs a special button that is round and red to grab the users attention. Our advanced options network allows you to easily to that with globals vs overrides.</p>\n<p>However, since the options network consist of globals vs overrides, it&#8217;s vital to know what is set for globals. What we&#8217;ve done in Avada 5.0 is made it clear what is currently set in the global Fusion Theme Options so you always know when building a page.</p>\n<p>This is what we call option correlation and it is built into each description that offers both a theme or page option, or theme and Fusion Builder option. Below is what it looks like.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1.jpg\"><img class=\"aligncenter size-full wp-image-407098\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1.jpg\" alt=\"avada_5_option_correlation\" width=\"1258\" height=\"289\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1-300x69.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1-768x176.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_option_correlation-1-1024x235.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>In the above example we used button size and button span options from Fusion Builder. As you can see in the description, <em>button size is set to Large</em> and <em>button span is set to No</em>. Those are the options that are set globally in Fusion Theme Options, and they link directly to the exact panel in Theme Options in case you want to change them quickly. However the choices made in Fusion Builder are button medium and span yes so they override the Fusion Theme Options.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">This small but important change will save you a lot of time and effort, and make option selection even easier.</h3>\n<p>Previously to figure out what was set globally, you had to navigate away from the page, go to Fusion Theme Options panel, find the right area and change it.</p>\n<p>Now in Avada 5.0, the global settings from Fusion Theme Options are displayed in the description of each option. This basic concept is a real advancement in Avada that will help you better understand the options network and save you a lot of time.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Save / Manage / Import / Export Custom Color Schemes</h5>\n<p>In Fusion Theme Options there is a general &#8220;Color&#8221; tab that has pre-defined color skins. Often times customers start off with one but have to change several color settings to get their colors exactly how they want them. All of that is a normal part of building your website.</p>\n<p>However currently there is no way to save your own color scheme unless you back up your entire theme options panel.</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">Avada 5.0 includes a proprietary system that allows you to save, update, delete, import or export your current color scheme.</h3>\n<p>The color scheme is basically any color option that is within Fusion Theme Options. Colors play an extremely important role in how your site looks. Being able to fully manage your own custom color schemes is a major step forward in option management.</p>\n<p>Check out how this new system works below.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes.jpg\"><img class=\"aligncenter size-full wp-image-407101\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes.jpg\" alt=\"avada_5_custom_schemes\" width=\"1258\" height=\"365\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes-300x87.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes-768x223.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes-1024x297.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>Each of the 5 buttons (Save, Update, Delete, Import, Export) act as toggles and will bring up a new section to complete the desired action. In this above example, we are saving the current color options as a new scheme.</p>\n<p>And custom color scheme shows up as the same icon that represents a custom color combination, but when you hover over the icon it shows you the custom name.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover.jpg\"><img class=\"aligncenter size-full wp-image-407102\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover.jpg\" alt=\"avada_5_custom_schemes_hover\" width=\"1258\" height=\"177\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover.jpg 1258w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover-300x42.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover-768x108.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_custom_schemes_hover-1024x144.jpg 1024w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" /></a></figure>\n<p>There is no limit to how many custom schemes you can have, and you can import and export so you can share them with friends and clients when needed.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">New Professionally Designed Demos To Import</h5>\n<p>What&#8217;s a new major Avada update without <a href=\"http://avada.theme-fusion.com/demos/\" target=\"_blank\">new demos</a>? We must have new demos and Avada 5.0 will not disappoint.</p>\n<p>There are several demos that are either finalized, being finalized or in the process of being built. Because of the constant flow of demo work, we cannot guarantee at this point how many will be included in Avada 5.0, however we can assure you that at least 2-3 new demos are coming, and hopefully more.</p>\n<p>These demos are like all other demos, <a href=\"http://avada.theme-fusion.com/demos/\" target=\"_blank\">professionally made by designers</a> using our <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">advanced options network</a>.</p>\n<p>We put a high importance on demos and have a constant flow of them being made because they truly show the power of Avada.</p>\n<p>The varying designs we offer and features each one presents shows you what can really be done with the #1 selling theme on the marketplace. In addition, they are so <a href=\"http://avada.theme-fusion.com/professional-demos/\" target=\"_blank\">easy to import</a>. We built a custom importer that imports the entire demo for you with just a few clicks.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos.jpg\"><img class=\"aligncenter size-full wp-image-407104\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos.jpg\" alt=\"avada_5_demos\" width=\"1253\" height=\"777\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos.jpg 1253w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos-300x186.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos-768x476.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_demos-1024x635.jpg 1024w\" sizes=\"(max-width: 1253px) 100vw, 1253px\" /></a></figure>\n<p>Using a pre-built demo, which is created by professional designers is an incredible way to get started in building your own site. Import a demo, then simply change out the content.</p>\n<p>At the same time, you can easily build your own site from scratch using all the features Avada includes. Avada can be what you want it to be.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Additional Features, Improvements And Enhancements</h5>\n<p>While the above items are considered major new features, there are always additional features packed into major Avada updates.</p>\n<p>We&#8217;ve started making our entire options network with the same user interface that you see in Fusion Theme Options via Avada 4.0. Although it will not be fully done in 5.0, a lot of it will be.</p>\n<p>For example, the new interface you see in Fusion Theme Options is now carried over into the new Fusion Builder options like below.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2.jpg\"><img class=\"aligncenter size-full wp-image-407146\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2.jpg\" alt=\"avada_5_ui\" width=\"1253\" height=\"623\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2.jpg 1253w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2-300x149.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2-768x382.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/avada_5_ui-2-1024x509.jpg 1024w\" sizes=\"(max-width: 1253px) 100vw, 1253px\" /></a></figure>\n<p>All Fusion Builder elements that contain child elements, for example Tabs, have an entirley new user interface that is much easier to use. Each child element can now be reorganized into position via drag and drop. For example, if you have a tab element on your page and it contains 3 different tab sections, you can now easily drag and drop all 3 into your desired order.</p>\n<figure><a href=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg\"><img class=\"aligncenter size-full wp-image-407037\" src=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg\" alt=\"fusion_builder_child_element\" width=\"1266\" height=\"483\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element.jpg 1266w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-300x114.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-768x293.jpg 768w, https://theme-fusion.com/wp-content/uploads/2016/06/fusion_builder_child_element-1024x391.jpg 1024w\" sizes=\"(max-width: 1266px) 100vw, 1266px\" /></a></figure>\n<p>And each child element is custom named based off the content you enter, so it&#8217;s very easy to know which child element it is. This new feature applies to any element that offers child items (tabs, content boxes, toggles, checklist, counter circles &amp; boxes, etc.)</p>\n<h3 style=\"font-size: 30px; line-height: 42px; font-style: italic; color: #bbbfc2; margin-bottom: 25px;\">This alone is a major time saver and quality of life improvement while using certain elements in the new Fusion Buidler.</h3>\n<p><strong>Additional features that Avada 5.0 includes are &#8230;</strong></p>\n<div class=\"shortcode-list\">\n<ul>\n<li>New theme option to set a separate color of the menu text for the sticky header</li>\n<li>Column spacing is no longer &#8220;YES or NO&#8221; but can be set with an exact pixel amount</li>\n<li>New responsive breakpoints to set pixel values for content breaking in responsive modes</li>\n<li>Popular blog shortcode now has an option for post ordering</li>\n<li>Portfolio page layouts now have options to display the portfolio title and categories</li>\n<li>Portfolio text layouts now have options to choose text alignment</li>\n<li>Portfolio text layouts with boxed mode now have full padding optons</li>\n<li>Continued and dedicated codebase refactoring</li>\n</ul>\n</div>\n<p>While all these new features are being added, our development team takes our codebase very serious. Each new update contains several areas that have been refactored so the codebase stays clean, organized, optimized and efficient.</p>\n<p>These under the hood changes are things that most customers will not notice, yet are highly important to our team because they allow us to more easily add new features, changes and future improvements.</p>\n<p>We are dedicated to making the <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">#1 selling theme</a> also the best coded theme on the marketplace.</p>\n<h5 style=\"margin: 50px 0px 10px 0px;\">Avada 5.0 Release Date &amp; Beta Testing</h5>\n<p>We like to keep our customers informed and up to date about what is going on internally and when they can expect it. At the same time, the nature of development can change at the drop of a hat so we&#8217;ve decided to not give out estimated release dates until we are in the final stages of development.</p>\n<p>We are working diligently and around the clock to get everything done, ensuring all beta items are taken care of, testing everything we can possibly test, performance test, etc.  That is our normal process for major updates.</p>\n<p>We do everything in our power to ensure a solid release, and that takes multiple rounds of beta testing. If you wish to be a best tester, please see <a href=\"https://theme-fusion.com/forums/topic/avada-beta-testing/\" target=\"_blank\">this post</a> about what is required for beta testing with us.</p>\n<h4>Conclusion</h4>\n<p>ThemeFusion is dedicated to you, our customer. Everything we do is for our customers and our product. We want to continue and push the boundaries of what a theme can do. We want to continue and offer the best support around.</p>\n<p>Our dedicated team here at ThemeFusion understands this and truly thinks with one mind and one goal. We know there is always room for improvement, and we push ourselves to the limit to bring you these improvements with each new update.</p>\n<p>We hope you enjoy it!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-5-0-landing-soon/\">Avada 5.0 Is Landing Soon!</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://theme-fusion.com/avada-5-0-landing-soon/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"98\";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:63:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Avada Customer Spotlight: Simon 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:61:\"http://theme-fusion.com/avada-customer-spotlight-simon-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://theme-fusion.com/avada-customer-spotlight-simon-evans/#comments\";s: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, 27 Jun 2016 15:36:53 +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:8:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:9:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:18:\"Customer Spotlight\";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:5:{s:4:\"data\";s:6:\"Design\";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:5:{s:4:\"data\";s:5:\"Bikes\";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:5:{s:4:\"data\";s:6:\"design\";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:5:{s:4:\"data\";s:10:\"Little Big\";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:5:{s:4:\"data\";s:11:\"Simon 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://theme-fusion.com/?p=406645\";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:623:\"<p>Simon Evans is a round the world cyclist who founded LittleBig in Ireland in 2013. After completing a 30,000km tour by literally circumnavigating the globe by bicycle, he returned home and put his engineering skills to use by inventing the LittleBig adaptable children’s bike. The LittleBig bikes are available through their online shop with worldwide delivery available. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-simon-evans/\">Avada Customer Spotlight: Simon Evans</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"ThemeFusion Staff\";s: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:1328:\"<p>Simon Evans is a round the world cyclist who founded <a href=\"http://www.littlebigbikes.com\" target=\"_blank\">LittleBig</a> in Ireland in 2013. After completing a 30,000km tour by literally circumnavigating the globe by bicycle, he returned home and put his engineering skills to use by inventing the LittleBig adaptable children’s bike.</p>\n<p><span id=\"more-406645\"></span></p>\n<p>The LittleBig bikes are available through their <a href=\"http://www.littlebigbikes.com/shop\" target=\"_blank\">online shop</a> with worldwide delivery available. Simon chose <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada</a> as his theme of choice for the LittleBig website. We caught up with him to learn more about his adventures, his bike and his love of Avada.</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 40px;margin-bottom: 40px;\"></div>\n<a href=\" http://avada.theme-fusion.com/little-big-customer-spotlight/ \" class=\"short-btn  large square \"  target=\"_blank\">   View The Customer Spotlight </a>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-simon-evans/\">Avada Customer Spotlight: Simon Evans</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://theme-fusion.com/avada-customer-spotlight-simon-evans/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"5\";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:63:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"The Beginner’s Guide to Web Typography (And How to Apply It With Avada)\";s: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:67:\"http://theme-fusion.com/beginners-guide-web-typography-apply-avada/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://theme-fusion.com/beginners-guide-web-typography-apply-avada/#comments\";s: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, 14 Jun 2016 18:49: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:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:15:\"Beginners Guide\";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:6:\"Design\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:4;a:5:{s:4:\"data\";s:20:\"avada theme features\";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:5:{s:4:\"data\";s:6:\"design\";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:5:{s:4:\"data\";s:16:\"design aesthetic\";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:5:{s:4:\"data\";s:10:\"typography\";s: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:33:\"http://theme-fusion.com/?p=405912\";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:619:\"<p>We may live in an age of visual media, but I&#8217;m willing to bet that text still makes up the majority of your website&#8217;s content. What many web masters don&#8217;t appreciate is that the typography you choose can make a big difference between engaging with or turning off your readers. This is where you can make a [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/beginners-guide-web-typography-apply-avada/\">The Beginner&#8217;s Guide to Web Typography (And How to Apply It With Avada)</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"ThemeFusion Staff\";s: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:12351:\"<p>We may live in an age of visual media, but I&#8217;m willing to bet that text still makes up the majority of your website&#8217;s content. What many web masters don&#8217;t appreciate is that the typography you choose can make a big difference between engaging with or turning off your readers.</p>\n<p><span id=\"more-405912\"></span></p>\n<p>This is where you can make a positive difference. Learning the basics of web typography and applying your newfound skills will ensure that your website&#8217;s content is attractive, accessible and engaging. It needn&#8217;t take long either.</p>\n<p>In this post, we’ll cover how to get started with web typography and accessibility, then show you how to apply what you&#8217;ve learned to your website using <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada&#8217;s</a> industry leading <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">network of options</a>.</p>\n<h2>The Difference Between Print and Web Typography</h2>\n<figure><img class=\"aligncenter size-large wp-image-398764\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/printing-press-typography-1024x617.jpg\" alt=\"The printing press\" width=\"1024\" height=\"617\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/printing-press-typography-1024x617.jpg 1024w, https://theme-fusion.com/wp-content/uploads/2016/02/printing-press-typography-300x181.jpg 300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n<p>To begin your typographic education, you must first learn how typography has evolved from print into the digital age.</p>\n<p>There’s one key difference to consider, which is so simple that its implications are easily passed by in the design process:</p>\n<div class=\"shortcode-list\">\n<ul>\n<li>Print typography, once set and printed, will always look the same in production.</li>\n<li>Web typography renders differently on every screen (with differing factors such as operating systems, browsers, and widely varying screen sizes).</li>\n</ul>\n</div>\n<p>Keep in mind that when you are designing with web typography, what you see isn’t necessarily what everyone else is going to see. To truly understand how it changes, you’d need to check out your site on as many different operating systems, devices, and browsers as possible. If you do want to get into browser testing across multiple platforms, you can do so by using <a href=\"http://mashable.com/2014/02/26/browser-testing-tools/#8FyF.2zUWGq1\" target=\"_blank\">any of the browser testing tools listed here</a>.</p>\n<p>My point is, perfectionism is not the goal here. Simple, accessible typography is easier to implement than you think; you don’t need it to be ‘pixel perfect’ for your readers to readily consume your content around the world with minimal readability issues.</p>\n<h2>An Introduction to Accessibility Standards</h2>\n<p>Web accessibility is easy to forget if you do not suffer from any disabilities, but there are numerous folks out there with a range of barriers that prevent them from enjoying the web to its fullest. You can learn more about user diversity on the web at <a href=\"https://www.w3.org/WAI/intro/people-use-web/diversity\" target=\"_blank\">the W3 website</a>.</p>\n<p>The recommended rule of thumb is to assume that your readers struggle to read online text, in one way or another. Your goal is to assist them by designing your typography to meet their needs.</p>\n<p>Even for those who are not impaired, typography designed to be easy on the eye will be appreciated by all. Think about the way we use elevators – not all of us physically require the use of one, but it sure is nice to not have to walk up so many flights of stairs.</p>\n<figure><img class=\"aligncenter size-large wp-image-398767\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/staircase-with-feet-1024x683.jpeg\" alt=\"Vibrant blue stairs with feet\" width=\"1024\" height=\"683\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/staircase-with-feet-1024x683.jpeg 1024w, https://theme-fusion.com/wp-content/uploads/2016/02/staircase-with-feet-300x200.jpeg 300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n<p>By paying attention to typography and designing for accessibility, you reduce the chances of users distorting your website by zooming in to read it, or simply leaving in frustration.</p>\n<h2>Curating the Right Web Fonts</h2>\n<p>To be fair, becoming an expert on pairing web fonts is a skill that develops with time and practice. However, getting started doesn&#8217;t have to be difficult! Here are some basics that will help you:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>Stick to two fonts. The first is for headings, the second is for body copy. If you decide to only use one font for your site, use bolder (or lighter) versions of that font to set headings apart from the body copy.</li>\n<li>For the beginning typographer, fonts that contrast each other tend to work best. For example, choose a bold serif font for the headings, and a light sans serif font for your body copy. Here&#8217;s a short resource on the differences between <a href=\"http://www.webdesignerdepot.com/2013/03/serif-vs-sans-the-final-battle/\" target=\"_blank\">serif and sans serif</a>.</li>\n<li>Use font pairings already curated by others! There are many design inspirations available, though this one lists <a href=\"https://designschool.canva.com/blog/the-ultimate-guide-to-font-pairing/\" target=\"_blank\">a wide variety of font choices</a>.</li>\n</ol>\n</div>\n<figure><img class=\"aligncenter size-full wp-image-398759\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/font-pairing-examples.png\" alt=\"Font pairing examples\" width=\"684\" height=\"377\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/font-pairing-examples.png 684w, https://theme-fusion.com/wp-content/uploads/2016/02/font-pairing-examples-300x165.png 300w, https://theme-fusion.com/wp-content/uploads/2016/02/font-pairing-examples-128x72.png 128w\" sizes=\"(max-width: 684px) 100vw, 684px\" /></figure>\n<p>Avada allows you to use <a href=\"http://theme-fusion.com/avada-doc/options/typography-options/\" target=\"_blank\">Google Fonts</a>, <a href=\"http://theme-fusion.com/avada-doc/special-features/custom-font-museo-slab/\" target=\"_blank\">unlimited custom fonts</a>, and even <a href=\"http://www.w3schools.com/cssref/css_websafe_fonts.asp\" target=\"_blank\">standard fonts</a>. And the <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">advanced theme options</a> allows you to control all aspects of styling like font size, font family, line height, letter spacing and more so you are only limited to your imagination!</p>\n<h2>Adjusting Font Size and Spacing</h2>\n<p>Choosing the right fonts is your first step, but next you need to determine how those fonts should display.</p>\n<p>Font size is similar to how you would set your font size in a text document on your computer. However, the default for web font sizing is in pixels (px) rather than points (pt). Pixels are used to measure resolution on a screen, points are used to measure against physical media.</p>\n<p>Line height is how far away each line of text is from the next.</p>\n<p>When it comes to usability, small fonts may look beautiful aesthetically, but are difficult to read. Here are two simple guidelines to follow for optimal reading sizes:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>Even your smallest text should be <a href=\"https://www.smashingmagazine.com/2011/10/16-pixels-body-copy-anything-less-costly-mistake/\" target=\"_blank\">at least 15px</a>.</li>\n<li>Your line height should be at <a href=\"https://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-visual-presentation\" target=\"_blank\">least 150% for body copy</a> (such as the content of a post or page).</li>\n</ol>\n</div>\n<p>You can adjust these settings with Avada by following the instructions <a href=\"http://theme-fusion.com/avada-doc/options/typography-options/\" target=\"_blank\">in the ‘Font Sizes’ section</a>.</p>\n<h2>Choosing High Contrast Colors</h2>\n<p>You may be noticing a trend – what works well from a purely aesthetic point of view may not be entirely functional or kind to your readers and their eyes.</p>\n<p>Subtle colors between your text and backgrounds can be beautiful, but in the end, this design decision doesn’t serve your readers well.</p>\n<p>In order to avoid this problem, do the opposite! Choose high contrast colors for your design. There are a number of initiatives to help create more accessible web design that provide tools to determine whether your colors are high contrast enough, such as this <a href=\"http://webaim.org/resources/contrastchecker/\" target=\"_blank\">Contrast Checker by WebAIM</a>.</p>\n<figure><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/color-contrast.png\" alt=\"color-contrast\" width=\"633\" height=\"420\" class=\"aligncenter size-full wp-image-405904\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/color-contrast.png 633w, https://theme-fusion.com/wp-content/uploads/2016/06/color-contrast-300x199.png 300w\" sizes=\"(max-width: 633px) 100vw, 633px\" /></figure>\n<h2>Apply This knowledge With Avada</h2>\n<p>Ready to apply this knowledge? Avada has an advanced <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">network of options</a> that includes Theme Options, Page Options and Builder Options.  Avada&#8217;s <a href=\"https://theme-fusion.com/avada-doc/options/fusion-theme-options/\" target=\"_blank\">Theme Options</a> is the section dedicated to adjusting all aspects of the typography used on your site. </p>\n<p>Theme Options are logically grouped into sections so everything is easy to find, and there is a search field that can quickly pull options up with a single keyword or two. </p>\n<p>The typography controls in Avada are out of this world. Virtually every font used on your site (Headings, body font, menus, widgets, etc) can be fully controlled using Avada, and it even shows you a live preview of the font settings while you choose them! Below is an example of the advanced typography controls in Avada.</p>\n<figure><img src=\"https://theme-fusion.com/wp-content/uploads/2016/06/theme-options-colors.jpg\" alt=\"theme-options-colors\" width=\"794\" height=\"739\" class=\"aligncenter size-full wp-image-405909\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/06/theme-options-colors.jpg 794w, https://theme-fusion.com/wp-content/uploads/2016/06/theme-options-colors-300x279.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/06/theme-options-colors-768x715.jpg 768w\" sizes=\"(max-width: 794px) 100vw, 794px\" /></figure>\n<h2>Conclusion</h2>\n<p>Don’t lose readers to poor typography; instead, use <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada</a> to take control and fine-tune your website’s typography!</p>\n<p>Let&#8217;s recap the steps we covered in this article that will help you to produce highly readable typography:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>Choose one or two contrasting fonts (ideally from Google Fonts).</li>\n<li>Set body text to around 15px and 150% line height.</li>\n<li>Choose text and background colors with high contrast.</li>\n<li>Use Avada&#8217;s <a href=\"http://avada.theme-fusion.com/avada-options/\" target=\"_blank\">advanced network of options</a> to control every portion of the typography on your site.</li>\n</ol>\n</div>\n<p>Have you taken the time to hone in your typography skills and improve the readability of your site? We’re curious to know what changes you’ve made, and how it impacted your reader’s engagement, so let us know in the comments section below!</p>\n<p><em>Image Credits: <a href=\"https://en.wikipedia.org/wiki/Letterpress_printing\" target=\"_blank\">Wikimedia Commons</a>, <a href=\"https://unsplash.com/photos/7_kRuX1hSXM\" target=\"_blank\">Lindsay Henwood</a>, <a href=\"https://unsplash.com/photos/BVyNlchWqzs\" target=\"_blank\">Amador Loureiro</a></em></p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/beginners-guide-web-typography-apply-avada/\">The Beginner&#8217;s Guide to Web Typography (And How to Apply It With Avada)</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://theme-fusion.com/beginners-guide-web-typography-apply-avada/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"12\";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:60:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Avada Customer Spotlight: Spohn Design\";s: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:\"http://theme-fusion.com/avada-customer-spotlight-spohn-design-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://theme-fusion.com/avada-customer-spotlight-spohn-design-2/#comments\";s: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, 10 Jun 2016 17:03:33 +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:7:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:18:\"Customer Spotlight\";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:6:\"Design\";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:5:{s:4:\"data\";s:6:\"design\";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:5:{s:4:\"data\";s:9:\"ron spohn\";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:5:{s:4:\"data\";s:12:\"spohn design\";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:5:{s:4:\"data\";s:9:\"spotlight\";s: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:33:\"http://theme-fusion.com/?p=405715\";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:640:\"<p>Spohn Design is a boutique graphic design firm. They are “print and pixel” aficionados, giving life to their customers’ visions through beautiful design, relevant technology, and engaging language. Spohn Design, along with its Principle and Creative Director Ron Spohn, use the Avada theme for their sleek, portfolio-style websites.Ron Spohn is a creative maven – specializing in [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-spohn-design-2/\">Avada Customer Spotlight: Spohn Design</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"ThemeFusion Staff\";s: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:1361:\"<p><a href=\"http://spohndesign.com/\">Spohn Design</a> is a boutique graphic design firm. They are “print and pixel” aficionados, giving life to their customers’ visions through beautiful design, relevant technology, and engaging language.</p>\n<p><span id=\"more-405715\"></span></p>\n<p>Spohn Design, along with its Principle and Creative Director <a href=\"http://ronspohn.com/\">Ron Spohn</a>, use the <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada</a> theme for their sleek, portfolio-style websites.Ron Spohn is a creative maven – specializing in photography, cinematography, and graphic design. We caught up with Ron to learn a little more about his background, Spohn Design and how their use of the Avada theme has helped showcase their work.<br />\nLet&#8217;s meet Ron!</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 40px;margin-bottom: 40px;\"></div>\n<a href=\" http://avada.theme-fusion.com/spohn-design-customer-spotlight/ \" class=\"short-btn  large square \"  target=\"_blank\">   View The Customer Spotlight </a>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-spohn-design-2/\">Avada Customer Spotlight: Spohn Design</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://theme-fusion.com/avada-customer-spotlight-spohn-design-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"How to Effectively Use Images for Better Storytelling With Avada\";s: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:50:\"http://theme-fusion.com/images-storytelling-avada/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://theme-fusion.com/images-storytelling-avada/#respond\";s: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, 09 Jun 2016 18:47:42 +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:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:6:\"Images\";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:6:\"design\";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:5:{s:4:\"data\";s:6:\"images\";s: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:33:\"http://theme-fusion.com/?p=398402\";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:615:\"<p>You invest a lot of time creating great content for your blog, so don’t lose the reader&#8217;s interest by publishing content with thoughtlessly scattered images (or even worse, none at all!). Capture your readers’ attention and elicit an emotional reaction by treating each blog post like its own landing page. Tell a rich multimedia story with [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/images-storytelling-avada/\">How to Effectively Use Images for Better Storytelling With Avada</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tom Ewer\";s: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:11765:\"<p>You invest a lot of time creating great content for your blog, so don’t lose the reader&#8217;s interest by publishing content with thoughtlessly scattered images (or even worse, none at all!).</p>\n<p><span id=\"more-398402\"></span></p>\n<p>Capture your readers’ attention and elicit an emotional reaction by treating each blog post like its own landing page. Tell a rich multimedia story with your text and images, and you&#8217;ll put your content head and shoulders over the alternatives.</p>\n<p>Are you ready to turn your dreary blog posts into compelling visual stories? In this post, you’ll learn which tools to use to leverage powerful images on your <a href=\"http://theme-fusion.com/avada/\" target=\"_blank\">Avada</a> blog.</p>\n<h2>What Makes a Blog Post Engaging?</h2>\n<p>Blog posts don’t have to be plain text with images dropped in ad hoc. In fact, there&#8217;s really no excuse for that in our age of audiovisual interaction.</p>\n<p>Engaging blog posts tell a story by using a variety of text and image formats to lead the eye from one section to the next, keeping the reader engaged and curious to see what new information is just around the corner.</p>\n<p>We’re not making this up, either. Combining photos with text is <a href=\"http://blog.hubspot.com/marketing/images-in-blog-posts-tips\" target=\"_blank\">proven to increase engagement</a>.</p>\n<p>Now let&#8217;s explore three key ways in which you can use images to add color and depth to your blog posts, and ultimately tell a more captivating story. Each of the following techniques are based on using Avada’s <a href=\"http://theme-fusion.com/avada/fusion-builder-2/\" target=\"_blank\">Builder</a> to write your blog posts.</p>\n<h2>Keep the Reader Engaged With Varied Image Placements</h2>\n<p>When it comes to adding photos, many people simply ‘Add Media’, take the default settings, and move on with their blog post.</p>\n<p>The first step to improve your use of images is to take advantage of basic image placement variations – floating left or right, or hanging out in the center. It’s best to mix up these placements keep the reader’s eye flowing through the page. When everything looks the same, the brain tends to wander.</p>\n<p>You have a few options to make this happen.</p>\n<h3>WordPress ‘Align Left’, ‘Align Right’, and ‘Center’</h3>\n<p>When you insert an image into the page, you have the option to choose how it interacts with the rest of your content.</p>\n<p>Depending on whether you’d like the image to act as an aside to the content, or interrupt the flow of text with its own message, you can align it left or right within the text, or center it to give it special focus.</p>\n<figure><img src=\"https://theme-fusion.com/wp-content/uploads/2016/02/wordpress-image-alignment.jpg\" alt=\"wordpress-image-alignment\" width=\"633\" height=\"174\" class=\"aligncenter size-full wp-image-405676\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/wordpress-image-alignment.jpg 633w, https://theme-fusion.com/wp-content/uploads/2016/02/wordpress-image-alignment-300x82.jpg 300w\" sizes=\"(max-width: 633px) 100vw, 633px\" /></figure>\n<h3>Builder Columns</h3>\n<p>Let’s say you want your image centered with text on both sides. Is that possible? Not within the normal WordPress scope, but with Avada, of course!</p>\n<p>The trick is to be creative with your image placement and use Builder’s columns to take granular control of your images and ensure they display exactly how you intend them to.</p>\n<figure><img class=\"aligncenter size-full wp-image-398406\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/avada-image-placement.png\" alt=\"Avada image placement in columns\" width=\"838\" height=\"498\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/avada-image-placement.png 838w, https://theme-fusion.com/wp-content/uploads/2016/02/avada-image-placement-300x178.png 300w\" sizes=\"(max-width: 838px) 100vw, 838px\" /></figure>\n<h2>Capture Attention With Full-Width Image Backgrounds</h2>\n<p>Occasionally you’ll find yourself with a certain quote or standout piece of text, or some other content that really needs to set itself apart from the crowd.</p>\n<p>You can accomplish this visually by giving it its very own background image or color, right within the post. Again, within the normal confines of WordPress this would be difficult to achieve, but using Avada’s Builder makes it easy.</p>\n<p>So get creative. Make use of the parallax background options to animate your story even further! (WPMU DEV has a great post about <a href=\"https://premium.wpmudev.org/blog/long-live-parallax/\" target=\"_blank\">how to use parallax to tell a story</a>.)</p>\n<p>If you feel that is taking things a little too far, it’s easy to reference our <a href=\"http://theme-fusion.com/avada/one-page-parallax/\" target=\"_blank\">One Page Parallax Demo</a> for subtle touches that make your page feel that much more visually interesting. Images subtly fade in, buttons bounce; the world is your oyster here.</p>\n<p>Here are a couple of simple examples for how to use backgrounds to make your text pop.</p>\n<h3>Dark Text on a Light Background</h3>\n<figure><img class=\"aligncenter size-full wp-image-398408\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-light.png\" alt=\"Example of light background with dark text\" width=\"767\" height=\"243\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-light.png 767w, https://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-light-300x95.png 300w\" sizes=\"(max-width: 767px) 100vw, 767px\" /></figure>\n<h3>Light Text on a Dark Background</h3>\n<figure><img class=\"aligncenter size-full wp-image-398410\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-dark.png\" alt=\"Example of dark background with light text\" width=\"767\" height=\"209\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-dark.png 767w, https://theme-fusion.com/wp-content/uploads/2016/02/avada-text-backgrounds-dark-300x82.png 300w\" sizes=\"(max-width: 767px) 100vw, 767px\" /></figure>\n<h2>Summarize Data With On-Page Slides and Presentations</h2>\n<p>In some cases, you may find yourself wanting to create an actual multimedia presentation within your blog post.</p>\n<p>Instead of relying on third party services like SlideShare, you can build your own slides and presentations right within Builder. There are two choices for this:</p>\n<ol>\n<li><strong>Sliders</strong> are exactly how they sound. Images show one at a time, much like a Power Point presentation would.</li>\n<li><strong>Image carousels</strong> show up like a gallery, but when clicked, focuses on one image at a time in a modal window, where the user can then slide through each image at their own pace.</li>\n</ol>\n<p>Here are three scenarios where these types of features might be useful.</p>\n<h3>Slides That Match Video and/or Audio</h3>\n<p>Perhaps you’re posting a video of a speech you made, but you’d also like to include some of the slide references made within that presentation.</p>\n<p>Simply save your slides as images, and use them in Builder’s Slider. Pair your slider with a video of your presentation, and you have a really great way for your users to follow your presentation in real time!</p>\n<figure><img class=\"aligncenter size-full wp-image-398420\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/video-with-slider.png\" alt=\"Video with slider, side by side in columns\" width=\"906\" height=\"231\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/video-with-slider.png 906w, https://theme-fusion.com/wp-content/uploads/2016/02/video-with-slider-300x76.png 300w\" sizes=\"(max-width: 906px) 100vw, 906px\" /></figure>\n<p>You can see how people employ this technique, in examples like <a href=\"http://www.zentation.com/viewer2/webcast/3Z7TvUc238/Enchantment#.Vr2X7VMrJE4\" target=\"_blank\">this presentation</a> by Guy Kawasaki. (We bet you can make it look even better with Avada.)</p>\n<figure><img class=\"aligncenter size-large wp-image-398414\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/video-with-presentation-1024x415.png\" alt=\"Video with slider presentation\" width=\"1024\" height=\"415\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/video-with-presentation-1024x415.png 1024w, https://theme-fusion.com/wp-content/uploads/2016/02/video-with-presentation-300x121.png 300w, https://theme-fusion.com/wp-content/uploads/2016/02/video-with-presentation.png 1077w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n<h3>Information Overviews</h3>\n<p>Informative slides don’t need to be paired with associated video or audio! You can include easy-to-read slides to help summarize your post. This would be particularly useful for making tutorial posts more accessible, or for creating a quick guide related to what content the user will find in your post.</p>\n<p>Treat your slider like presentation slides and use the rest of your content to discuss it – like you would in any presentation. You can be inspired by the numerous examples of how to summarize big concepts in slides on LinkedIn&#8217;s <a href=\"http://slideshare.net\" target=\"_blank\">SlideShare</a>:</p>\n<figure><img class=\"aligncenter size-full wp-image-398417\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/slider-data-example.png\" alt=\"HubSpot slider example\" width=\"644\" height=\"551\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/slider-data-example.png 644w, https://theme-fusion.com/wp-content/uploads/2016/02/slider-data-example-300x257.png 300w\" sizes=\"(max-width: 644px) 100vw, 644px\" /></figure>\n<h3>Show Off a Range of Images</h3>\n<p>Sliders and image carousels work well to display a lot of visual information without hogging the entire page with a load of images.</p>\n<p>Whether you’re trying to show multiple examples of one idea, or show the progression of one image to the next, it can be useful to keep images all together in one related place.</p>\n<p>This technique is especially useful for:</p>\n<div class=\"shortcode-list\">\n<ul>\n<li>Posts referencing portfolio work</li>\n<li>Visually displaying progression, such as Before/After examples</li>\n<li>Showing lots of similar concepts together (best with Image Carousels)</li>\n</ul>\n</div>\n<figure><img class=\"aligncenter size-large wp-image-398418\" src=\"http://theme-fusion.com/wp-content/uploads/2016/02/avada-slider-images-1024x450.png\" alt=\"Avada slider demo\" width=\"1024\" height=\"450\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/02/avada-slider-images-1024x450.png 1024w, https://theme-fusion.com/wp-content/uploads/2016/02/avada-slider-images-300x132.png 300w, https://theme-fusion.com/wp-content/uploads/2016/02/avada-slider-images.png 1261w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n<h2>Conclusion</h2>\n<p>You may be losing reader engagement on poorly designed blog posts, but with Builder it’s easy to take the content you’ve worked so hard on and compliment it with multimedia interaction to match.</p>\n<p>Take the extra few minutes to create immersive experiences for your readers. Fine-tune how your images are displayed, take advantage of full width parallax backgrounds, or even include native slideshows.</p>\n<p>Do you use the Builder in your blog posts? How effective do you find these techniques to be when applied your (no longer) regular blog? Tell us how you keep readers engaged in the comments section below!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/images-storytelling-avada/\">How to Effectively Use Images for Better Storytelling With Avada</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://theme-fusion.com/images-storytelling-avada/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:60:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Avada Customer Spotlight: Mass Impressions\";s: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:\"http://theme-fusion.com/avada-customer-spotlight-mass-impressions-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://theme-fusion.com/avada-customer-spotlight-mass-impressions-2/#comments\";s: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, 24 May 2016 13:50: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:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";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:18:\"Customer Spotlight\";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:6:\"Design\";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:5:{s:4:\"data\";s:9:\"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:\"\";}i:4;a:5:{s:4:\"data\";s:16:\"Mass Impressions\";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:5:{s:4:\"data\";s:12:\"Sam Isbister\";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:5:{s:4:\"data\";s:9:\"spotlight\";s: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:33:\"http://theme-fusion.com/?p=403599\";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:640:\"<p>Mass Impressions is a web design agency that specializes in web and graphic design, WordPress development, SEO, branding and on-going WordPress support. They pride themselves on co-creating web collateral with their clients and, in fact, place heavy emphasis on empowering clients through the technologies they use, with one eye always on future development. The Mass Impressions [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-mass-impressions-2/\">Avada Customer Spotlight: Mass Impressions</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"ThemeFusion Staff\";s: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:1461:\"<p><a href=\"http://massimpressions.com/\" target=\"_blank\">Mass Impressions</a> is a web design agency that specializes in web and graphic design, WordPress development, SEO, branding and on-going WordPress support. They pride themselves on co-creating web collateral with their clients and, in fact, place heavy emphasis on empowering clients through the technologies they use, with one eye always on future development.</p>\n<p><span id=\"more-403599\"></span></p>\n<p>The Mass Impressions team heavily banks on <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Avada</a> for its web design solutions, have endorsed it publicly and started using it exclusively for all their clients. As part of our ongoing customer spotlight series, we had the chance to catch up with Sam Isbister, their Managing Director, and understand more about their business.</p>\n<p>Let&#8217;s meet Sam!</p>\n<div style=\"clear: both;\"></div><div class=\"separator\" style=\"margin-top: 40px;margin-bottom: 40px;\"></div>\n<a href=\" http://avada.theme-fusion.com/mass-impressions-customer-spotlight/ \" class=\"short-btn  large square \"  target=\"_blank\">   View The Customer Spotlight </a>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/avada-customer-spotlight-mass-impressions-2/\">Avada Customer Spotlight: Mass Impressions</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://theme-fusion.com/avada-customer-spotlight-mass-impressions-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"The 3 Most Important Page Layouts (And When to Use Them)\";s: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:\"http://theme-fusion.com/the-most-important-page-layouts/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://theme-fusion.com/the-most-important-page-layouts/#comments\";s: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, 17 May 2016 19:17: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";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:6:\"Design\";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:6:\"design\";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:5:{s:4:\"data\";s:12:\"page layouts\";s: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:33:\"http://theme-fusion.com/?p=397583\";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:599:\"<p>Designing effective page layouts is important for higher reader engagement and conversions, but most people don’t understand how or when to use the right type of layout for their content. By learning about a few different patterns that readers on the web follow, you can create layouts that fit these patterns, so they are more likely [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/the-most-important-page-layouts/\">The 3 Most Important Page Layouts (And When to Use Them)</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Tom Ewer\";s: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:13369:\"<p>Designing effective page layouts is important for higher reader engagement and conversions, but most people don’t understand how or when to use the right type of layout for their content.</p>\n<p><span id=\"more-397583\"></span></p>\n<p>By learning about a few different patterns that readers on the web follow, you can create layouts that fit these patterns, so they are more likely to be read and acted upon.</p>\n<p>In this article we will take a look at studies performed by user experience experts to determine how reader patterns work together with the most common types of web pages to create effective page layouts.</p>\n<h2>What Constitutes a Page Layout?</h2>\n<p>Quite simply, page layout is the order and sizing of elements on a webpage.</p>\n<p>While you can apply all of these techniques to the headers, footers and sidebars, in this article we’re going to focus on the text, media, and clickable actions unique to the page(s) you are creating.</p>\n<p>Each of the following sections focuses on a typical &#8216;type&#8217; of web content, then explains how to layout that content to create an effective user experience.</p>\n<h2>Layout 1: The Gutenburg Diagram for Plain Text Pages</h2>\n<p>Before graduating to more complex layouts, it’s good to start with the basic concept of the Gutenburg Diagram.</p>\n<p>If you’re working on a page that must consist of plain text columns (for example: long-winded documentation, reports, or privacy statements), this layout is for you. It is one of the least addressed layouts, but does call for your consideration.</p>\n<p>The main idea is that attention begins strong in the upper left hand corner, and is drawn down to a final stopping point in the lower right hand corner.</p>\n<p>You can visualize this as follows:</p>\n<figure><img class=\"aligncenter size-full wp-image-397597\" src=\"http://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram.jpg\" alt=\"Gutenburg Diagram graphic\" width=\"640\" height=\"640\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram.jpg 640w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram-250x250.jpg 250w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram-300x300.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram-44x44.jpg 44w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-gutenburg-diagram-140x140.jpg 140w\" sizes=\"(max-width: 640px) 100vw, 640px\" /></figure>\n<p>You won’t usually find yourself working on pages like this, but understanding how this theory applies will improve your ability to write better content and design more complex layouts.</p>\n<p>For more technical details, check out <em><a href=\"https://books.google.de/books?id=l0QPECGQySYC&amp;pg=PA118&amp;lpg=PA118&amp;dq=gutenberg+diagram&amp;source=bl&amp;ots=_O181fucJr&amp;sig=ucFZVXznXfysCJZu8lTPIzqW86c&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwiryYf6j6zKAhVBRBoKHQ25DBwQ6AEIXTAR#v=onepage&amp;q&amp;f=false\" target=\"_blank\">Universal Principles of Design</a></em> and <em><a href=\"http://3.7designs.co/blog/2009/01/the-gutenburg-diagram-in-design/\" target=\"_blank\">The Gutenburg Diagram in Design</a></em>.</p>\n<h3>How to Apply the Gutenburg Diagram</h3>\n<p>Using the Gutenburg Diagram is simple – you must write your content appropriately.</p>\n<div class=\"shortcode-list\">\n<ol>\n<li><strong>For single column pages:</strong> Begin and end the text with the most important pieces of information.</li>\n<li><strong>For multiple column pages:</strong> Ensure that the top left and bottom right columns contain the most relevant information for the page.</li>\n</ol>\n</div>\n<p>Truly plain text pages without any headings are rare, but if you find yourself designing one, above are the strategies you should use. When possible, we recommend using headers and tying your content into Layout 3 below.</p>\n<p>Regardless, the design theory that the reader’s eye naturally travels from top left and looks for an action point on the bottom right goes far beyond plain text, as you’re about to see with the following layouts.</p>\n<h2>Layout 2: Z Pattern for Content Groups With a Variety of Media</h2>\n<p>Let’s say you’re building a homepage, or perhaps a landing page for your most recent product. These types of pages usually have lots of big images, videos, and strong typography, while leaving out large bodies of smaller text.</p>\n<p>In these situations, create your design using the <a href=\"https://watsonsdesign.wordpress.com/2015/04/17/the-z-pattern/\" target=\"_blank\">Z pattern</a>.</p>\n<p>The Z pattern is an extension of the Gutenburg Diagram and how it applies to readers scanning a web page when you’re offering more than plain text.</p>\n<p>You can see how similar the concept is:</p>\n<figure><img class=\"aligncenter size-full wp-image-397598\" src=\"http://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern.jpg\" alt=\"Z Pattern diagram\" width=\"640\" height=\"640\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern.jpg 640w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern-250x250.jpg 250w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern-300x300.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern-44x44.jpg 44w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-z-pattern-140x140.jpg 140w\" sizes=\"(max-width: 640px) 100vw, 640px\" /></figure>\n<p>Essentially, since there is more to take in on the page, the reader has a tendency to do a full scan in a Z shape pattern before finally reaching the lower right corner. It fits right on top of the Gutenburg Diagram, with the strongest points being the top left and lower right corners.</p>\n<p>Here&#8217;s how it comes together in practical terms:</p>\n<div class=\"shortcode-list\">\n<ol>\n<li>The first point usually establishes the branding and context for the page.</li>\n<li>The second and third points are supportive information that will be quickly scanned.</li>\n<li>The fourth and final point is the strongest for action – what do you want the reader to do now that they’ve taken everything in?</li>\n</ol>\n</div>\n<p>For an example, check out how we’ve employed this tactic in our own home page.</p>\n<figure><img class=\"aligncenter size-large wp-image-397588\" src=\"http://theme-fusion.com/wp-content/uploads/2016/01/theme-fusion-z-layout-1024x563.jpg\" alt=\"Theme Fusion: Z layout graphic\" width=\"1024\" height=\"563\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/01/theme-fusion-z-layout-1024x563.jpg 1024w, https://theme-fusion.com/wp-content/uploads/2016/01/theme-fusion-z-layout-300x165.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/01/theme-fusion-z-layout.jpg 1206w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n<p>You can manipulate the Z pattern by creating an alternative visual hierarchy with strong graphics, though this is not recommended as it can create <a href=\"http://www.pfeifferreport.com/v2/essays/understanding-user-experience-friction/\" target=\"_blank\">user experience friction</a>.</p>\n<p>If you’re really into design theory and want to learn more, we recommend reading <em><a href=\"http://www.creativebloq.com/ux/how-human-eye-reads-website-111413463\" target=\"_blank\">How the Human Eye Reads a Website</a></em> and <em><a href=\"http://webdesign.tutsplus.com/articles/understanding-the-z-layout-in-web-design--webdesign-28\" target=\"_blank\">Understanding the Z Layout in Web Design</a></em>.</p>\n<h3>How to Implement the Z Pattern</h3>\n<p>Implementing the Z pattern is a little more complicated than writing your content in a certain way. You’ll want to plan out your content’s layout before trying to build it on your website.</p>\n<p>This is called wire framing, and it’s a lot easier than you think! We recommend sketching out your ideas first. Here are a few resources to get you started:</p>\n<div class=\"shortcode-list\">\n<ul>\n<li><a href=\"http://blog.darwinapps.com/post/46603621764/everyone-should-learn-to-wireframe-start-with-pen\" target=\"_blank\">Learn to to wireframe with pen and paper</a></li>\n<li><a href=\"http://uxmovement.com/wireframes/why-its-important-to-sketch-before-you-wireframe/\" target=\"_blank\">Sketching for wireframes</a></li>\n<li><a href=\"http://www.uxbooth.com/articles/tools-for-sketching-user-experiences/\" target=\"_blank\">Tools for sketching user experiences</a></li>\n<li><a href=\"https://signalvnoise.com/posts/1061-why-we-skip-photoshop\" target=\"_blank\">Why you don’t need Photoshop</a></li>\n</ul>\n</div>\n<p>Once you’ve sketched out an effective layout, it&#8217;s time to implement it on your website, which is incredibly easy to do with <a href=\"http://theme-fusion.com/support/documentation/avada-documentation/#page-item-269354\">Avada’s Page Builder</a>. You can go from concept to a completed page in minutes!</p>\n<h2>Layout 3: F Pattern for Text-Heavy Pages With a Strong Hierarchy</h2>\n<p>Your most typical scenario for the <a href=\"https://www.nngroup.com/articles/f-shaped-pattern-reading-web-content/\" target=\"_blank\">F pattern</a> will be blog posts and articles.</p>\n<p>A strong hierarchy is created for the F pattern when you use headings to split up the page. This is compared to Layout 1, which relates to lots of text without many headings.</p>\n<p>Due to the nature of the content (lots of text), the reader’s attention is a little bit different here. You can see how it changes with the following graphic:</p>\n<figure><img class=\"aligncenter size-full wp-image-397596\" src=\"http://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern.jpg\" alt=\"F Pattern diagram\" width=\"640\" height=\"640\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern.jpg 640w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern-250x250.jpg 250w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern-300x300.jpg 300w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern-44x44.jpg 44w, https://theme-fusion.com/wp-content/uploads/2016/01/graphic-f-pattern-140x140.jpg 140w\" sizes=\"(max-width: 640px) 100vw, 640px\" /></figure>\n<p>Even noting the differences, this pattern still borrows from some of the ideas in the Gutenburg Diagram. Particularly, that readers will always begin in the upper left hand corner of the page.</p>\n<p>A few of the overarching principles to keep in mind:</p>\n<div class=\"shortcode-list\">\n<ul>\n<li>Readers scan</li>\n<li>They must be hooked in at the very beginning with the most important information</li>\n</ul>\n</div>\n<p>The F pattern benefits greatly by adding imagery into the page. Images throughout the page help maintain attention by moving the eye through the page, much like using large and bolded text headings.</p>\n<p>It’s easiest to understand how the F pattern works by using a hypothetical heat map. Red is where the user is likely to pay attention to, while purple is where readers will spend the least amount of time as they scan through the page.</p>\n<figure><img class=\"aligncenter size-full wp-image-397585\" src=\"http://theme-fusion.com/wp-content/uploads/2016/01/f-pattern-heatmap.jpg\" alt=\"F pattern heatmap\" width=\"742\" height=\"482\" srcset=\"https://theme-fusion.com/wp-content/uploads/2016/01/f-pattern-heatmap.jpg 742w, https://theme-fusion.com/wp-content/uploads/2016/01/f-pattern-heatmap-300x195.jpg 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" /></figure>\n<p>For further education, read <em><a href=\"http://webdesign.tutsplus.com/articles/understanding-the-f-layout-in-web-design--webdesign-687\" target=\"_blank\">Understanding the F Layout in Web Design</a></em>.</p>\n<h3>How to Implement the F Pattern</h3>\n<p>You can see from the example above that headings build a structure for the reader to scan through.</p>\n<p>Use effective headings to build a virtual outline to help the reader take in the most important ideas within your content. Once a reader knows that your content has what they are looking for, they’re much more likely to slow down and pay attention.</p>\n<p>If you need another example, try skimming through this article reading only the headings! We use this principle with every blog post we write.</p>\n<p>Not sure how to create outlines? Here’s a quick resource to <a href=\"http://writing2.richmond.edu/writing/wweb/outline.html\" target=\"_blank\">get you started</a>.</p>\n<h2>Conclusion</h2>\n<p>Building an effective page layout depends on what kind of content you are dealing with, and most people do not know how to recognize the reader patterns on which to build page layouts.</p>\n<p>By understanding the type of content you are working with, and how to pair it with common reader patterns, you can intentionally direct attention to the most important elements on your page by using the principles for each pattern.</p>\n<p>How will you use this information to create more effective layouts for your website? Were you already aware of any of these techniques? We’d love to hear about your experiments with page layouts in the comments section below!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://theme-fusion.com/the-most-important-page-layouts/\">The 3 Most Important Page Layouts (And When to Use Them)</a> appeared first on <a rel=\"nofollow\" href=\"http://theme-fusion.com\">Theme Fusion</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://theme-fusion.com/the-most-important-page-layouts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"6\";s: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:29:\"http://theme-fusion.com/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:17:{s:4:\"date\";s:29:\"Mon, 29 Aug 2016 20:02:40 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";s:133:\"__cfduid=d28edac7f2d51ca0962c4151f127ecc741472500960; expires=Tue, 29-Aug-17 20:02:40 GMT; path=/; domain=.theme-fusion.com; HttpOnly\";s:13:\"last-modified\";s:29:\"Mon, 29 Aug 2016 19:41:40 GMT\";s:4:\"etag\";s:39:\"\"fd8ab171f00a8745380c9d2c40316f7a-gzip\"\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:6:\"pragma\";s:8:\"no-cache\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:60:\"<http://theme-fusion.com/wp-json/>; rel=\"https://api.w.org/\"\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:7:\"x-cache\";s:7:\"HIT: 35\";s:10:\"x-pass-why\";s:0:\"\";s:13:\"x-cache-group\";s:0:\"\";s:6:\"x-type\";s:4:\"feed\";s:6:\"server\";s:16:\"cloudflare-nginx\";s:6:\"cf-ray\";s:20:\"2da29a1a4abc23b4-IAD\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(56047,'jetpack_available_modules','a:1:{s:5:\"4.2.1\";a:37:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'),(76845,'_transient_timeout_jetpack_https_test','1472587137','no'),(76846,'_transient_jetpack_https_test','1','no'),(56050,'jetpack_security_report','a:0:{}','yes'),(68593,'ep_exclude_pages','64,63,66,65,69,67,86,151,172,385,386,387,388,389,390,391,392,393,394,396,397,398,399,402,401,403,404,406,407,409,410,411,416,417,418,419,420,421,422,423,424','yes'),(56024,'wpseo_sitemap_cache_validator_global','oRFS','no'),(56046,'jetpack_file_data','a:50:{s:5:\"4.1.1\";a:49:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:25:\"Reports on site downtime.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:44:\"Recommended, Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:28:\"Prevent brute force attacks.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:30:\"Automatically promote content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:24:\"Display similar content.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:32:\"Visitors can share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:245:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:24:\"favicon, icon, site icon\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:75:\"Creates sitemaps to allow your site to be easily indexed by search engines.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:27:\"Secure user authentication.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:31:\"Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:35:\"Collect traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:27:\"Daily or real-time backups.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:20:\"Performance-Security\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:77:\"Verify your site or domain with Google Search Console, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}s:22:\"after-the-deadline.php\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:12:\"carousel.php\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:12:\"comments.php\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:16:\"contact-form.php\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:24:\"custom-content-types.php\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:14:\"custom-css.php\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:9:\"debug.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:25:\"enhanced-distribution.php\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:20:\"gplus-authorship.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:23:\"gravatar-hovercards.php\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:16:\"holiday-snow.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:19:\"infinite-scroll.php\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:12:\"json-api.php\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:9:\"latex.php\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:9:\"likes.php\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:10:\"manage.php\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:12:\"markdown.php\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:13:\"minileven.php\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:15:\"mobile-push.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:17:\"module-extras.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:19:\"module-headings.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:15:\"module-info.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:11:\"monitor.php\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:25:\"Reports on site downtime.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:9:\"notes.php\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:14:\"omnisearch.php\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:6:\"search\";}s:10:\"photon.php\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:44:\"Recommended, Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:17:\"post-by-email.php\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:11:\"protect.php\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:28:\"Prevent brute force attacks.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:13:\"publicize.php\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:30:\"Automatically promote content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:19:\"random-redirect.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:17:\"related-posts.php\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:24:\"Display similar content.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:14:\"sharedaddy.php\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:32:\"Visitors can share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:14:\"shortcodes.php\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:245:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:14:\"shortlinks.php\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:13:\"site-icon.php\";a:14:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:24:\"favicon, icon, site icon\";}s:12:\"sitemaps.php\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:75:\"Creates sitemaps to allow your site to be easily indexed by search engines.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:16:\"social-links.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:7:\"sso.php\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:27:\"Secure user authentication.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:31:\"Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:9:\"stats.php\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:35:\"Collect traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:17:\"subscriptions.php\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:15:\"theme-tools.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:17:\"tiled-gallery.php\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:12:\"tonesque.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:14:\"vaultpress.php\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:27:\"Daily or real-time backups.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:20:\"Performance-Security\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:22:\"verification-tools.php\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:77:\"Verify your site or domain with Google Search Console, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:14:\"videopress.php\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:21:\"widget-visibility.php\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:11:\"widgets.php\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:8:\"wpcc.php\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}','yes'),(57153,'wpseo_sitemap_attachment_cache_validator','6iwkm','no'),(56054,'jetpack_log','a:2:{i:0;a:4:{s:4:\"time\";i:1464380230;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:62903740;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1464380343;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:62903740;s:4:\"code\";s:8:\"register\";}}','no'),(56055,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"ki@OH66(G#8K7IeVT)ZZK7JrkK1c#dPg.&WbdT&2M&2yHtRkijBLmAwCeRWNB(!Cf\";s:9:\"authorize\";s:78:\"XBu9h6weyjHMsXFqq3pPkRdttB9R3FGp:BnBcSRfKoiDmYndt7oCm9AEHMH9RHcRJ:1472504577:2\";}','yes'),(46466,'wpseo_titles','a:53:{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: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'),(46467,'wpseo_social','a:21:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"1b034a3475ee1dd7384c72e5e1435978\";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:10:\"googleplus\";b:0;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'),(46468,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(46469,'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'),(46470,'wpseo_xml','a:16:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;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: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;}','yes'),(57142,'wpseo_flush_rewrite','1','yes'),(46477,'fs_contact_form2','a:168:{s:9:\"form_name\";s:8:\"imported\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:15:\"after_form_note\";s:0:\"\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:21:\"preserve_space_enable\";s:5:\"false\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:20:\"domain_protect_names\";s:0:\"\";s:13:\"anchor_enable\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:16:\"email_check_easy\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:18:\"email_inline_label\";s:5:\"false\";s:16:\"email_hide_empty\";s:5:\"false\";s:17:\"print_form_enable\";s:5:\"false\";s:22:\"email_keep_attachments\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"honeypot_enable\";s:5:\"false\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:24:\"silent_conditional_field\";s:0:\"\";s:24:\"silent_conditional_value\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:22:\"enable_submit_oneclick\";s:4:\"true\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:14:\"external_style\";s:5:\"false\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:15:\"form_attributes\";s:0:\"\";s:17:\"submit_attributes\";s:0:\"\";s:17:\"success_page_html\";s:0:\"\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:16:\"title_submitting\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:17:\"text_print_button\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:17:\"error_email_check\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:9:\"error_url\";s:0:\"\";s:10:\"error_date\";s:0:\"\";s:10:\"error_time\";s:0:\"\";s:12:\"error_maxlen\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:12:\"error_select\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:13:\"error_spambot\";s:0:\"\";s:6:\"fields\";a:4:{i:0;a:20:{s:8:\"standard\";s:1:\"1\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:5:\"Name:\";s:4:\"slug\";s:9:\"full_name\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:1;a:20:{s:8:\"standard\";s:1:\"2\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:6:\"Email:\";s:4:\"slug\";s:5:\"email\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:2;a:20:{s:8:\"standard\";s:1:\"3\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Subject:\";s:4:\"slug\";s:7:\"subject\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:3;a:20:{s:8:\"standard\";s:1:\"4\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Message:\";s:4:\"slug\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}}s:23:\"vcita_scheduling_button\";s:5:\"false\";s:29:\"vcita_scheduling_button_label\";s:23:\"Schedule an Appointment\";s:14:\"vcita_approved\";s:5:\"false\";s:9:\"vcita_uid\";s:0:\"\";s:11:\"vcita_email\";s:0:\"\";s:15:\"vcita_email_new\";s:22:\"freerein1325@gmail.com\";s:19:\"vcita_confirm_token\";s:0:\"\";s:20:\"vcita_confirm_tokens\";s:0:\"\";s:17:\"vcita_initialized\";s:5:\"false\";s:16:\"vcita_first_name\";s:0:\"\";s:15:\"vcita_last_name\";s:0:\"\";s:10:\"form_style\";s:12:\"width:375px;\";s:14:\"left_box_style\";s:39:\"float:left; width:55%; max-width:270px;\";s:15:\"right_box_style\";s:24:\"float:left; width:235px;\";s:11:\"clear_style\";s:11:\"clear:both;\";s:16:\"field_left_style\";s:70:\"clear:left; float:left; width:99%; max-width:550px; margin-right:10px;\";s:21:\"field_prefollow_style\";s:70:\"clear:left; float:left; width:99%; max-width:250px; margin-right:10px;\";s:18:\"field_follow_style\";s:58:\"float:left; padding-left:10px; width:99%; max-width:250px;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_image_style\";s:72:\"border-style:none; margin:0; padding:0px; padding-right:5px; float:left;\";s:26:\"captcha_reload_image_style\";s:64:\"border-style:none; margin:0; padding:0px; vertical-align:bottom;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:19:\"required_text_style\";s:16:\"text-align:left;\";s:10:\"hint_style\";s:38:\"font-size:x-small; font-weight:normal;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:14:\"redirect_style\";s:16:\"text-align:left;\";s:14:\"fieldset_style\";s:65:\"border:1px solid black; width:97%; max-width:500px; padding:10px;\";s:11:\"label_style\";s:16:\"text-align:left;\";s:18:\"option_label_style\";s:15:\"display:inline;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:14:\"textarea_style\";s:68:\"text-align:left; margin:0; width:99%; max-width:250px; height:120px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:14:\"checkbox_style\";s:24:\"width:22px; height:32px;\";s:11:\"radio_style\";s:24:\"width:22px; height:32px;\";s:17:\"placeholder_style\";s:27:\"opacity:0.6; color:#333333;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:18:\"vcita_button_style\";s:156:\"text-decoration:none; display:block; text-align:center; background:linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); color:#fff !important; padding:8px;\";s:22:\"vcita_div_button_style\";s:63:\"border-left:1px dashed #ccc; margin-top:25px; padding:8px 20px;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";}','yes'),(76859,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1472543942','no'),(76860,'_transient_feed_b9388c83948825c1edaef0d856b7b109','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\";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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s: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://wordpress.org/plugins/browse/popular/\";s: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:34:\"WordPress Plugins » View: Popular\";s: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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Aug 2016 19:46:23 +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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=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:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\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:14:\"W3 Total Cache\";s: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/plugins/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s: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:\"Frederick Townes\";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:30:\"\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:21:\"Regenerate Thumbnails\";s: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:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s: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 Aug 2008 14:38: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@http://wordpress.org/plugins/\";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:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s: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:25:\"Alex Mills (Viper007Bond)\";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:30:\"\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:11:\"Hello Dolly\";s: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:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s: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, 29 May 2008 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";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:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s: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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\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:26:\"Page Builder by SiteOrigin\";s: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:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s: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, 11 Apr 2013 10:36:42 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s: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:11:\"Greg Priday\";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:30:\"\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:15:\"NextGEN Gallery\";s: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/plugins/nextgen-gallery/#post-1169\";s: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, 23 Apr 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 15 million downloads.\";s: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:9:\"Alex Rabe\";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:30:\"\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:14:\"WP Super Cache\";s: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:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s: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, 05 Nov 2007 11:40:04 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";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:30:\"\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:21:\"Really Simple CAPTCHA\";s: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:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s: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 Mar 2009 02:17:35 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";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:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s: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:\"Takayuki Miyoshi\";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:30:\"\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:16:\"TinyMCE Advanced\";s: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://wordpress.org/plugins/tinymce-advanced/#post-2082\";s: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 Jun 2007 15:00:26 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s: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:\"Andrew Ozz\";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:30:\"\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:14:\"Contact Form 7\";s: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:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s: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, 02 Aug 2007 12:45: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";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:54:\"Just another contact form plugin. Simple but flexible.\";s: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:\"Takayuki Miyoshi\";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:30:\"\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:19:\"All in One SEO Pack\";s: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:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s: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, 30 Mar 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";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:150:\"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines\";s: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:8:\"uberdose\";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:30:\"\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:18:\"Wordfence 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";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:150:\"Secure your website with the Wordfence security plugin for WordPress.  Wordfence provides free enterprise-class WordPress security, protecting your we\";s: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:9:\"Wordfence\";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:30:\"\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:22:\"Advanced Custom Fields\";s: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://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s: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, 17 Mar 2011 04:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s: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:\"elliotcondon\";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:30:\"\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:14:\"Duplicate Post\";s: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:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s: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, 05 Dec 2007 17:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2646@http://wordpress.org/plugins/\";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:22:\"Clone posts and pages.\";s: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:\"Lopo\";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:30:\"\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:18:\"WordPress Importer\";s: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://wordpress.org/plugins/wordpress-importer/#post-18101\";s: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, 20 May 2010 17:42:45 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";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:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s: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:\"Brian Colinger\";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:30:\"\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:9:\"Yoast SEO\";s: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://wordpress.org/plugins/wordpress-seo/#post-8321\";s: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, 01 Jan 2009 20:34:44 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";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:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s: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:\"Joost de Valk\";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:30:\"\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:11:\"WooCommerce\";s: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:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";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:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:9:\"WooThemes\";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:30:\"\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:24:\"Jetpack by WordPress.com\";s: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:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s: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, 20 Jan 2011 02:21:38 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";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:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s: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:\"Automattic\";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:30:\"\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:35:\"Google Analytics by MonsterInsights\";s: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/plugins/google-analytics-for-wordpress/#post-2316\";s: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, 14 Sep 2007 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";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:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";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:30:\"\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:19:\"Google XML Sitemaps\";s: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://wordpress.org/plugins/google-sitemap-generator/#post-132\";s: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, 09 Mar 2007 22:31: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";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:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s: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:\"Arne Brachhold\";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:30:\"\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:11:\"WP-PageNavi\";s: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:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s: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, 09 Mar 2007 23:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";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:49:\"Adds a more advanced paging navigation interface.\";s: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:11:\"Lester Chan\";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:30:\"\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:7:\"Akismet\";s: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://wordpress.org/plugins/akismet/#post-15\";s: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, 09 Mar 2007 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\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:16:\"Disable Comments\";s: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:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s: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, 27 May 2011 04:42: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@http://wordpress.org/plugins/\";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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s: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:\"Samir Shah\";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:30:\"\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:18:\"WP Multibyte Patch\";s: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://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s: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, 14 Jul 2011 12:22:53 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";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:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s: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:\"plugin-master\";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:30:\"\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:33:\"Google Analytics Dashboard for WP\";s: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://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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, 10 Mar 2013 17:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";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:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s: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:\"Alin Marcu\";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:30:\"\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:35:\"UpdraftPlus WordPress Backup Plugin\";s: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:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s: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, 21 May 2012 15:14: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";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:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s: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:\"David Anderson\";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:30:\"\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:\"Clef Two-Factor Authentication\";s: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:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s: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, 27 Dec 2012 01:25: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";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:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s: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:9:\"Dave Ross\";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:30:\"\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:27:\"Black Studio TinyMCE Widget\";s: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://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s: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, 10 Nov 2011 15:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";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:39:\"The visual editor widget for 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";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:30:\"\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:10:\"Duplicator\";s: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:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s: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, 16 May 2011 12:15:41 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";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:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s: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:\"Cory Lamle\";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:30:\"\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:\"iThemes Security (formerly Better WP 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s: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 Oct 2010 22:06:05 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";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:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s: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:7:\"iThemes\";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:30:\"\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:11:\"Meta Slider\";s: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:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s: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, 14 Feb 2013 16:56: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@http://wordpress.org/plugins/\";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:131:\"Easy to use WordPress Slider plugin. Create responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s: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:11:\"Matcha Labs\";s: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:46:\"https://wordpress.org/plugins/rss/view/popular\";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: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:\"Mon, 29 Aug 2016 19:59:02 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Wed, 29 Jul 2009 18:46:31 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:\"20130911080210\";}','no'),(46478,'fs_contact_form3','a:168:{s:9:\"form_name\";s:8:\"imported\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:15:\"after_form_note\";s:0:\"\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:21:\"preserve_space_enable\";s:5:\"false\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:20:\"domain_protect_names\";s:0:\"\";s:13:\"anchor_enable\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:16:\"email_check_easy\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:18:\"email_inline_label\";s:5:\"false\";s:16:\"email_hide_empty\";s:5:\"false\";s:17:\"print_form_enable\";s:5:\"false\";s:22:\"email_keep_attachments\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"honeypot_enable\";s:5:\"false\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:24:\"silent_conditional_field\";s:0:\"\";s:24:\"silent_conditional_value\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:22:\"enable_submit_oneclick\";s:4:\"true\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:14:\"external_style\";s:5:\"false\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:15:\"form_attributes\";s:0:\"\";s:17:\"submit_attributes\";s:0:\"\";s:17:\"success_page_html\";s:0:\"\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:16:\"title_submitting\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:17:\"text_print_button\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:17:\"error_email_check\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:9:\"error_url\";s:0:\"\";s:10:\"error_date\";s:0:\"\";s:10:\"error_time\";s:0:\"\";s:12:\"error_maxlen\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:12:\"error_select\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:13:\"error_spambot\";s:0:\"\";s:6:\"fields\";a:4:{i:0;a:20:{s:8:\"standard\";s:1:\"1\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:5:\"Name:\";s:4:\"slug\";s:9:\"full_name\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:1;a:20:{s:8:\"standard\";s:1:\"2\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:6:\"Email:\";s:4:\"slug\";s:5:\"email\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:2;a:20:{s:8:\"standard\";s:1:\"3\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Subject:\";s:4:\"slug\";s:7:\"subject\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:3;a:20:{s:8:\"standard\";s:1:\"4\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Message:\";s:4:\"slug\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}}s:23:\"vcita_scheduling_button\";s:5:\"false\";s:29:\"vcita_scheduling_button_label\";s:23:\"Schedule an Appointment\";s:14:\"vcita_approved\";s:5:\"false\";s:9:\"vcita_uid\";s:0:\"\";s:11:\"vcita_email\";s:0:\"\";s:15:\"vcita_email_new\";s:22:\"freerein1325@gmail.com\";s:19:\"vcita_confirm_token\";s:0:\"\";s:20:\"vcita_confirm_tokens\";s:0:\"\";s:17:\"vcita_initialized\";s:5:\"false\";s:16:\"vcita_first_name\";s:0:\"\";s:15:\"vcita_last_name\";s:0:\"\";s:10:\"form_style\";s:12:\"width:375px;\";s:14:\"left_box_style\";s:39:\"float:left; width:55%; max-width:270px;\";s:15:\"right_box_style\";s:24:\"float:left; width:235px;\";s:11:\"clear_style\";s:11:\"clear:both;\";s:16:\"field_left_style\";s:70:\"clear:left; float:left; width:99%; max-width:550px; margin-right:10px;\";s:21:\"field_prefollow_style\";s:70:\"clear:left; float:left; width:99%; max-width:250px; margin-right:10px;\";s:18:\"field_follow_style\";s:58:\"float:left; padding-left:10px; width:99%; max-width:250px;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_image_style\";s:72:\"border-style:none; margin:0; padding:0px; padding-right:5px; float:left;\";s:26:\"captcha_reload_image_style\";s:64:\"border-style:none; margin:0; padding:0px; vertical-align:bottom;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:19:\"required_text_style\";s:16:\"text-align:left;\";s:10:\"hint_style\";s:38:\"font-size:x-small; font-weight:normal;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:14:\"redirect_style\";s:16:\"text-align:left;\";s:14:\"fieldset_style\";s:65:\"border:1px solid black; width:97%; max-width:500px; padding:10px;\";s:11:\"label_style\";s:16:\"text-align:left;\";s:18:\"option_label_style\";s:15:\"display:inline;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:14:\"textarea_style\";s:68:\"text-align:left; margin:0; width:99%; max-width:250px; height:120px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:14:\"checkbox_style\";s:24:\"width:22px; height:32px;\";s:11:\"radio_style\";s:24:\"width:22px; height:32px;\";s:17:\"placeholder_style\";s:27:\"opacity:0.6; color:#333333;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:18:\"vcita_button_style\";s:156:\"text-decoration:none; display:block; text-align:center; background:linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); color:#fff !important; padding:8px;\";s:22:\"vcita_div_button_style\";s:63:\"border-left:1px dashed #ccc; margin-top:25px; padding:8px 20px;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";}','yes'),(46465,'wpseo_permalinks','a:13:{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:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),(46475,'fs_contact_global','a:13:{s:12:\"fscf_version\";s:6:\"4.0.43\";s:7:\"donated\";s:5:\"false\";s:18:\"vcita_auto_install\";s:5:\"false\";s:13:\"vcita_dismiss\";s:5:\"false\";s:17:\"vcita_initialized\";s:5:\"false\";s:22:\"vcita_show_disable_msg\";s:5:\"false\";s:10:\"vcita_site\";s:13:\"www.vcita.com\";s:19:\"enable_php_sessions\";s:5:\"false\";s:19:\"num_standard_fields\";s:1:\"4\";s:12:\"max_form_num\";i:4;s:9:\"form_list\";a:4:{i:1;s:8:\"imported\";i:2;s:8:\"imported\";i:3;s:8:\"imported\";i:4;s:8:\"imported\";}s:14:\"import_success\";b:1;s:10:\"import_msg\";b:1;}','yes'),(46476,'fs_contact_form1','a:168:{s:9:\"form_name\";s:8:\"imported\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:15:\"after_form_note\";s:0:\"\";s:8:\"email_to\";s:22:\"freerein1325@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:21:\"preserve_space_enable\";s:5:\"false\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:20:\"domain_protect_names\";s:0:\"\";s:13:\"anchor_enable\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:16:\"email_check_easy\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:18:\"email_inline_label\";s:5:\"false\";s:16:\"email_hide_empty\";s:5:\"false\";s:17:\"print_form_enable\";s:5:\"false\";s:22:\"email_keep_attachments\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"honeypot_enable\";s:5:\"false\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:24:\"silent_conditional_field\";s:0:\"\";s:24:\"silent_conditional_value\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:22:\"enable_submit_oneclick\";s:4:\"true\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:14:\"external_style\";s:5:\"false\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:15:\"form_attributes\";s:0:\"\";s:17:\"submit_attributes\";s:0:\"\";s:17:\"success_page_html\";s:0:\"\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:16:\"title_submitting\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:17:\"text_print_button\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:17:\"error_email_check\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:9:\"error_url\";s:0:\"\";s:10:\"error_date\";s:0:\"\";s:10:\"error_time\";s:0:\"\";s:12:\"error_maxlen\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:12:\"error_select\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:13:\"error_spambot\";s:0:\"\";s:6:\"fields\";a:4:{i:0;a:20:{s:8:\"standard\";s:1:\"1\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:5:\"Name:\";s:4:\"slug\";s:9:\"full_name\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:1;a:20:{s:8:\"standard\";s:1:\"2\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:6:\"Email:\";s:4:\"slug\";s:5:\"email\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:2;a:20:{s:8:\"standard\";s:1:\"3\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Subject:\";s:4:\"slug\";s:7:\"subject\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:3;a:20:{s:8:\"standard\";s:1:\"4\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Message:\";s:4:\"slug\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}}s:23:\"vcita_scheduling_button\";s:5:\"false\";s:29:\"vcita_scheduling_button_label\";s:23:\"Schedule an Appointment\";s:14:\"vcita_approved\";s:5:\"false\";s:9:\"vcita_uid\";s:0:\"\";s:11:\"vcita_email\";s:0:\"\";s:15:\"vcita_email_new\";s:22:\"freerein1325@gmail.com\";s:19:\"vcita_confirm_token\";s:0:\"\";s:20:\"vcita_confirm_tokens\";s:0:\"\";s:17:\"vcita_initialized\";s:5:\"false\";s:16:\"vcita_first_name\";s:0:\"\";s:15:\"vcita_last_name\";s:0:\"\";s:10:\"form_style\";s:12:\"width:375px;\";s:14:\"left_box_style\";s:39:\"float:left; width:55%; max-width:270px;\";s:15:\"right_box_style\";s:24:\"float:left; width:235px;\";s:11:\"clear_style\";s:11:\"clear:both;\";s:16:\"field_left_style\";s:70:\"clear:left; float:left; width:99%; max-width:550px; margin-right:10px;\";s:21:\"field_prefollow_style\";s:70:\"clear:left; float:left; width:99%; max-width:250px; margin-right:10px;\";s:18:\"field_follow_style\";s:58:\"float:left; padding-left:10px; width:99%; max-width:250px;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_image_style\";s:72:\"border-style:none; margin:0; padding:0px; padding-right:5px; float:left;\";s:26:\"captcha_reload_image_style\";s:64:\"border-style:none; margin:0; padding:0px; vertical-align:bottom;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:19:\"required_text_style\";s:16:\"text-align:left;\";s:10:\"hint_style\";s:38:\"font-size:x-small; font-weight:normal;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:14:\"redirect_style\";s:16:\"text-align:left;\";s:14:\"fieldset_style\";s:65:\"border:1px solid black; width:97%; max-width:500px; padding:10px;\";s:11:\"label_style\";s:16:\"text-align:left;\";s:18:\"option_label_style\";s:15:\"display:inline;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:14:\"textarea_style\";s:68:\"text-align:left; margin:0; width:99%; max-width:250px; height:120px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:14:\"checkbox_style\";s:24:\"width:22px; height:32px;\";s:11:\"radio_style\";s:24:\"width:22px; height:32px;\";s:17:\"placeholder_style\";s:27:\"opacity:0.6; color:#333333;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:18:\"vcita_button_style\";s:156:\"text-decoration:none; display:block; text-align:center; background:linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); color:#fff !important; padding:8px;\";s:22:\"vcita_div_button_style\";s:63:\"border-left:1px dashed #ccc; margin-top:25px; padding:8px 20px;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";}','yes'),(46464,'wpseo','a:14:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:5:\"3.4.2\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";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:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}','yes'),(76861,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1472543942','no'),(76863,'_transient_timeout_plugin_slugs','1472590377','no'),(76864,'_transient_plugin_slugs','a:25:{i:0;s:35:\"add-post-footer/add_post_footer.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:35:\"backup-and-move/backup_and_move.php\";i:3;s:19:\"bbpress/bbpress.php\";i:4;s:35:\"boldgrid-editor/boldgrid-editor.php\";i:5;s:47:\"boldgrid-inspirations/boldgrid-inspirations.php\";i:6;s:37:\"boldgrid-staging/boldgrid-staging.php\";i:7;s:55:\"category-redirect-to-post-or-page/category_redirect.php\";i:8;s:36:\"contact-form-7/wp-contact-form-7.php\";i:9;s:33:\"dynamic-headers/custom-header.php\";i:10;s:29:\"easy-columns/easy-columns.php\";i:11;s:31:\"exclude-pages/exclude_pages.php\";i:12;s:49:\"facebook-button-plugin/facebook-button-plugin.php\";i:13;s:35:\"si-contact-form/si-contact-form.php\";i:14;s:27:\"fusion-core/fusion-core.php\";i:15;s:35:\"googleanalytics/googleanalytics.php\";i:16;s:19:\"jetpack/jetpack.php\";i:17;s:27:\"LayerSlider/layerslider.php\";i:18;s:29:\"my-page-order/mypageorder.php\";i:19;s:31:\"page-links-to/page-links-to.php\";i:20;s:35:\"post-page-notes/post-page-notes.php\";i:21;s:23:\"revslider/revslider.php\";i:22;s:43:\"the-events-calendar/the-events-calendar.php\";i:23;s:27:\"woocommerce/woocommerce.php\";i:24;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(76851,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1472543941','no'),(76852,'_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:\"Tue, 16 Aug 2016 19:54: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: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.7-alpha-38404\";s: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:26:\"WordPress 4.6 “Pepper”\";s: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:42:\"https://wordpress.org/news/2016/08/pepper/\";s: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, 16 Aug 2016 19:06:46 +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:3:\"4.6\";s: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=4444\";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:276:\"Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.\";s: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:27:\"Dominik Schilling (ocean90)\";s: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:26658:\"<p>Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.</p>\n<p><iframe width=\'632\' height=\'354\' src=\'https://videopress.com/embed/GbdhpGF3?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2 style=\"text-align: center\">Streamlined Updates</h2>\n<p><img class=\"aligncenter wp-image-4454 size-large\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=1024%2C614&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=300%2C180&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=768%2C461&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Don’t lose your place: stay on the same page while you update, install, and delete your plugins and themes.</p>\n<hr />\n<h2 style=\"text-align: center\">Native Fonts</h2>\n<p><img class=\"aligncenter wp-image-4455 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=1024%2C614&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=300%2C180&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=768%2C461&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>The WordPress dashboard now takes advantage of the fonts you already have, making it load faster and letting you feel more at home on whatever device you use.</p>\n<hr />\n<h2 style=\"text-align: center\">Editor Improvements</h2>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Inline Link Checker</h3>\n<p><img class=\"aligncenter wp-image-4456 size-full\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?w=992&amp;ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=300%2C180&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=768%2C461&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Ever accidentally made a link to https://wordpress.org/example.org? Now WordPress automatically checks to make sure you didn’t.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Content Recovery</h3>\n<p><img class=\"aligncenter wp-image-4457 size-full\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?w=992&amp;ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=300%2C180&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=768%2C461&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>As you type, WordPress saves your content to the browser. Recovering saved content is even easier with WordPress 4.6.</p>\n</div>\n<hr style=\"clear: both\" />\n<h2 style=\"text-align: center\">Under The Hood</h2>\n<h3>Resource Hints</h3>\n<p><a href=\"https://make.wordpress.org/core/2016/07/06/resource-hints-in-4-6/\">Resource hints help browsers</a> decide which resources to fetch and preprocess. WordPress 4.6 adds them automatically for your styles and scripts making your site even faster.</p>\n<h3>Robust Requests</h3>\n<p>The HTTP API now leverages the Requests library, improving HTTP standard support and adding case-insensitive headers, parallel HTTP requests, and support for Internationalized Domain Names.</p>\n<h3><code>WP_Term_Query</code> and <code>WP_Post_Type</code></h3>\n<p>A new <code><a href=\"https://developer.wordpress.org/reference/classes/wp_term_query\">WP_Term_Query</a></code> class adds flexibility to query term information while a new <code><a href=\"https://developer.wordpress.org/reference/classes/wp_post_type\">WP_Post_Type</a></code> object makes interacting with post types more predictable.</p>\n<h3>Meta Registration API</h3>\n<p>The Meta Registration API <a href=\"https://make.wordpress.org/core/2016/07/08/enhancing-register_meta-in-4-6/\">has been expanded</a> to support types, descriptions, and REST API visibility.</p>\n<h3>Translations On Demand</h3>\n<p>WordPress will install and use the newest language packs for your plugins and themes as soon as they’re available from <a href=\"https://translate.wordpress.org/\">WordPress.org’s community of translators</a>.</p>\n<h3>JavaScript Library Updates</h3>\n<p>Masonry 3.3.2, imagesLoaded 3.2.0, MediaElement.js 2.22.0, TinyMCE 4.4.1, and Backbone.js 1.3.3 are bundled.</p>\n<h3>Customizer APIs for Setting Validation and Notifications</h3>\n<p>Settings now have an <a href=\"https://make.wordpress.org/core/2016/07/05/customizer-apis-in-4-6-for-setting-validation-and-notifications/\">API for enforcing validation constraints</a>. Likewise, customizer controls now support notifications, which are used to display validation errors instead of failing silently.</p>\n<h3>Multisite, now faster than ever</h3>\n<p>Cached and comprehensive site queries improve your network admin experience. The addition of <code><a href=\"https://developer.wordpress.org/reference/classes/wp_site_query\">WP_Site_Query</a></code> and <code><a href=\"https://developer.wordpress.org/reference/classes/wp_network_query\">WP_Network_Query</a></code> help craft advanced queries with less effort.</p>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p>This release was led by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a>, backed up by <a href=\"https://www.garthmortensen.com/\">Garth Mortensen</a> as Release Deputy, and with the help of these fine individuals. There are <span style=\"font-weight: 400\">272</span> contributors with props in this release. Pull up some Pepper Adams on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/adrianosilvaferreira\">Adriano Ferreira</a>, <a href=\"https://profiles.wordpress.org/afineman\">afineman</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/aidvu\">aidvu</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</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/alexkingorg\">Alex King</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/alexvandervegt\">alexvandervegt</a>, <a href=\"https://profiles.wordpress.org/ambrosey\">Alice Brosey</a>, <a href=\"https://profiles.wordpress.org/aaires\">Ana Aires</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</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/rockwell15\">Andrew Rockwell</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</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/anneschmidt\">anneschmidt</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianvan\">brianvan</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"https://profiles.wordpress.org/purcebr\">Bryan Purcell</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff (chriscct7)</a>, <a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/cliffseal\">Cliff Seal</a>, <a href=\"https://profiles.wordpress.org/clubduece\">clubduece</a>, <a href=\"https://profiles.wordpress.org/cmillerdev\">cmillerdev</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/dabnpits\">dabnpits</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken\">Daniel H&#252;sken</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dashaluna\">dashaluna</a>, <a href=\"https://profiles.wordpress.org/davewarfel\">davewarfel</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</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/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/downstairsdev\">Devin Price</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/faison\">Faison</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/flyingdr\">flyingdr</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/francescobagnoli\">francescobagnoli</a>, <a href=\"https://profiles.wordpress.org/bueltge\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/efarem\">Frank Martin</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/mintindeed\">Gabriel Koen</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</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/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/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/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/inderpreet99\">Inderpreet Singh</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/underdude\">Janne Ala-&#196;ij&#228;l&#228;</a>, <a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>, <a href=\"https://profiles.wordpress.org/javorszky\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</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/endocreative\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jmichaelward\">Jeremy Ward</a>, <a href=\"https://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (jerrysarcastic)</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</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/joelwills\">Joel Williams</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">John P. Green</a>, <a href=\"https://profiles.wordpress.org/john_schlick\">John_Schlick</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuagoodwin\">Joshua Goodwin</a>, <a href=\"https://profiles.wordpress.org/jpdavoutian\">jpdavoutian</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jsternberg\">jsternberg</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/julesaus\">julesaus</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</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/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</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/kurtpayne\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/offereins\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/latz\">Lutz Schr&#246;er</a>, <a href=\"https://profiles.wordpress.org/mpol\">Marcel Pol</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/martinkrcho\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/mattmiklic\">Matt Miklic</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/borkweb\">Matthew Batchelder</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/wzislam\">Mayeenul Islam</a>, <a href=\"https://profiles.wordpress.org/mdwheele\">mdwheele</a>, <a href=\"https://profiles.wordpress.org/medariox\">medariox</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/meitar\">Meitar</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/roseapplemedia\">Michael</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/michaelbeil\">Michael Beil</a>, <a href=\"https://profiles.wordpress.org/mbijon\">Mike Bijon</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/nicholas_io\">N&#237;cholas Andr&#233;</a>, <a href=\"https://profiles.wordpress.org/nextendweb\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/alleynoah\">Noah</a>, <a href=\"https://profiles.wordpress.org/noahsilverstein\">noahsilverstein</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/ojrask\">ojrask</a>, <a href=\"https://profiles.wordpress.org/olarmarius\">Olar Marius</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/pansotdev\">pansotdev</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</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/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/pcarvalho\">pcarvalho</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walb&#248; Johnsg&#229;rd</a>, <a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter</a>, <a href=\"https://profiles.wordpress.org/pollett\">Pollett</a>, <a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafaelangeline\">rafaelangeline</a>, <a href=\"https://profiles.wordpress.org/zetaraffix\">raffaella isidori</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</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/littlerchicken\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/ronalfy\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/samantha-miller\">Samantha Miller</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>, <a href=\"https://profiles.wordpress.org/schlessera\">schlessera</a>, <a href=\"https://profiles.wordpress.org/scottbasgaard\">Scott Basgaard</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</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/screamingdev\">screamingdev</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/semil\">semil</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"https://profiles.wordpress.org/sidati\">Sidati</a>, <a href=\"https://profiles.wordpress.org/neverything\">Silvan Hagen</a>, <a href=\"https://profiles.wordpress.org/simonvik\">Simon Vikstr&#246;m</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/southp\">southp</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</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/coderste\">Stephen Hinett</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>, <a href=\"https://profiles.wordpress.org/stuporglue\">stuporglue</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/tacoverdo\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</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/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tloureiro\">tloureiro</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/unyson\">Unyson</a>, <a href=\"https://profiles.wordpress.org/szepeviktor\">Viktor Sz&#233;pe</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/svovaf\">vovafeldman</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/wp_smith\">wp_smith</a>, <a href=\"https://profiles.wordpress.org/wpfo\">wpfo</a>, <a href=\"https://profiles.wordpress.org/xavivars\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"https://profiles.wordpress.org/zakb8\">zakb8</a>.\n<p>&nbsp;</p>\n<p>Special thanks go to <a href=\"https://jerrysarcastic.com/\">Jerry Bates</a> for producing the release video and <a href=\"http://hugobaeta.com/\">Hugo Baeta</a> for providing marketing graphics.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.6. Their efforts make it possible to use WordPress 4.6 in 52 languages. The WordPress 4.6 release video has been captioned into 43 languages.</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. See you soon for version 4.7!</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:\"4444\";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: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:17:\"WordPress 4.6 RC2\";s: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:53:\"https://wordpress.org/news/2016/08/wordpress-4-6-rc2/\";s: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, 11 Aug 2016 00:31:04 +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: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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4427\";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:341:\"The second release candidate for WordPress 4.6 is now available. We’ve made over 30 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need [&#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:27:\"Dominik Schilling (ocean90)\";s: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:3442:\"<p>The second release candidate for WordPress 4.6 is now available.</p>\n<p>We’ve made over <a href=\"https://core.trac.wordpress.org/log/branches/4.6/src?action=stop_on_copy&amp;mode=follow_copy&amp;rev=38246&amp;stop_rev=38170&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">30 changes</a> since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>\n<p>If you haven’t tested 4.6 yet, now is the time!</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.6, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.6-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\">Beta 4</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/\">RC 1</a> blog posts.</p>\n<p>A few changes of note since the first release candidate:</p>\n<ul>\n<li>Support for custom HTTP methods and proxy authentication has been restored.</li>\n<li>Various fixes for the streamlined updates, including better failure messages and error handling, basic back-compat styling for custom update notifications, and additional and standardized JavaScript events.</li>\n<li>Unnecessary reference parameters have been removed from new multisite functions.</li>\n<li>A compatibility issue with PHP 7.0.9 (and PHP 7.1) has been fixed.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.</p>\n<p>Be sure to read the <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</p>\n<p><strong>Translators</strong>, strings are now frozen, including the About Page, so you are clear to translate! <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>Happy testing!</p>\n<p><em>The verdict is in,</em><br />\n<em>Can I haz all the features,</em><br />\n<em>Your best WordPress yet.</em></p>\n<p><img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3f3.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />️‍<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f308.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></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:\"4427\";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: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:31:\"WordPress 4.6 Release Candidate\";s: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:67:\"https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/\";s: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 Jul 2016 19:14: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:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4416\";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:337:\"The release candidate for WordPress 4.6 is now available. We’ve made a few refinements since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need [&#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:27:\"Dominik Schilling (ocean90)\";s: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:2428:\"<p>The release candidate for WordPress 4.6 is now available.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38169&amp;stop_rev=38124&amp;limit=200&amp;verbose=on\">a few refinements</a> since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>\n<p>If you haven’t tested 4.6 yet, now is the time!</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.6, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.6-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.</p>\n<p>Be sure to read the <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</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>Happy testing!</p>\n<p><em>Der Sommer ist da,</em><br />\n<em>Zeit für ein neues Release.</em><br />\n<em>Bald ist es soweit.</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:\"4416\";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:20:\"WordPress 4.6 Beta 4\";s: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/2016/07/wordpress-4-6-beta-4/\";s: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 Jul 2016 18:49: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4396\";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.6 Beta 4 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:4309:\"<p>WordPress 4.6 Beta 4 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.6, 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.6-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides</a>. This is the final <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">planned beta</a> of WordPress 4.6, with a release candidate scheduled for next week.</p>\n<p>Some of the fixes in Beta 4 include:</p>\n<ul>\n<li><strong>Media</strong>: <code>alt</code> attributes are now always added to images inserted from URLs (<a href=\"https://core.trac.wordpress.org/ticket/36735\">#36735</a>).</li>\n<li>Object subtype handling has been removed from <code>register_meta()</code>. Details about this change are explained in <a href=\"https://make.wordpress.org/core/2016/07/20/additional-register_meta-changes-in-4-6/\">a post for developers</a>.</li>\n<li><strong>Resource hints</strong> are now limited to enqueued assets (<a href=\"https://core.trac.wordpress.org/ticket/37385\">#37385</a>).</li>\n<li>A regression with query alterations introduced by the new <code>WP_Term_Query</code> has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37378\">#37378</a>).</li>\n<li>The Ajax searches for <strong>installed and new plugins</strong> have been enhanced to fix several accessibility issues and to improve compatibility with older browsers. (<a href=\"https://core.trac.wordpress.org/ticket/37233\">#37233</a>, <a href=\"https://core.trac.wordpress.org/ticket/37373\">#37373</a>)</li>\n<li>The media player <strong>MediaElement.js</strong> has been updated to 2.22.0 to fix YouTube video embeds (<a href=\"https://core.trac.wordpress.org/ticket/37363\">#37363</a>).</li>\n<li>The <strong>Import screen</strong> was overhauled, improving accessibility and making it much easier to install and run an importer (<a href=\"https://core.trac.wordpress.org/ticket/35191\">#35191</a>).</li>\n<li><strong>Emoji support</strong> has been updated to include all of the latest Unicode 9 emoji characters (<a href=\"https://core.trac.wordpress.org/ticket/37361\">#37361</a>). ???<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f57a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3fd.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />?<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3ff.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38123&amp;stop_rev=38060&amp;limit=200&amp;verbose=on\">more than 60 changes</a> during the last week.</li>\n</ul>\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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>This is Beta 4,</em><br />\n<em>The last before RC 1.</em><br />\n<em>Please test all the things.</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:\"4396\";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: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:20:\"WordPress 4.6 Beta 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:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-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, 13 Jul 2016 19:00: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4386\";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.6 Beta 3 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:3169:\"<p>WordPress 4.6 Beta 3 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.6, 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.6-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides on make/core</a>. Some of the fixes in Beta 3 include:</p>\n<ul>\n<li><strong>Revisions:</strong> Autosaves can now be restored when revisions are disabled (<a href=\"https://core.trac.wordpress.org/ticket/36262\">#36262</a>).</li>\n<li>An improved <strong>handling of PHP&#8217;s memory limit</strong> which doesn&#8217;t lower the limit anymore (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): Only set WP_MAX_MEMORY_LIMIT by default when its greater than memory_limit (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/32075\">32075</a>).</li>\n<li><strong>TinyMCE</strong> has been updated to 4.4.0 (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): TinyMCE 4.4.0 (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/37327\">37327</a>).</li>\n<li><strong>HTTP API:</strong> Proxy settings weren&#8217;t honored by the new HTTP library. This has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37107\">#37107</a>).</li>\n<li>Improved handling of <strong>UTF-8 address headers for emails </strong>(<a href=\"https://core.trac.wordpress.org/ticket/21659\">#21659</a>).</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38059&amp;stop_rev=37992&amp;limit=200&amp;verbose=on\">more than 65 changes</a> during the last week.</li>\n</ul>\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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Beta 3 is here,</em><br />\n<em>The more testing, the better.</em><br />\n<em>Gotta catch ‘em all!</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:\"4386\";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: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:20:\"WordPress 4.6 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/2016/07/wordpress-4-6-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:\"Wed, 06 Jul 2016 18:43: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4371\";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.6 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:2803:\"<p>WordPress 4.6 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.6, 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.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.6 Beta 1:</p>\n<ul>\n<li><strong>Meta:</strong> The fallback authentication for the previous registration method has been restored. Also, retrieving registered metadata now works and non-core object types are no longer forcibly blocked. See <a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>.</li>\n<li><strong>REST API:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. Previously, the sanitization callback ran before the validation callback. See <a href=\"https://core.trac.wordpress.org/ticket/37192\">#37192</a>.</li>\n<li><strong>Customize:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. See <a href=\"https://core.trac.wordpress.org/ticket/37247\">#37247</a>.</li>\n<li><strong>HTTP API:</strong> <code>WP_Http::request()</code> returns an array again. See <a href=\"https://core.trac.wordpress.org/ticket/37097\">#37097</a>.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=37992&amp;stop_rev=37925&amp;limit=200&amp;verbose=on\">just over 50 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.6, <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">check out the Beta 1 blog post</a>.</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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Teenage Beta 2</em><br />\n<em>Thirteen years of pressing words</em><br />\n<em>Rejoice with testing!</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:\"4371\";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: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:20:\"WordPress 4.6 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/2016/06/wordpress-4-6-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, 30 Jun 2016 01:22:48 +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: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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";s: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=4343\";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.6 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:5954:\"<p>WordPress 4.6 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.6, 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.6-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.6 is slated for release on <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">August 16</a>, but to get there, we need your help testing what we have been working on, including:</p>\n<ul>\n<li><strong>Shiny Updates v2</strong> (<a href=\"https://core.trac.wordpress.org/changeset/37714\">[37714]</a>) &#8211; <a href=\"https://make.wordpress.org/core/features/shiny-updates/\">Shiny Updates</a> replaces progress updates with a simpler and more straight forward experience when installing, updating, and deleting plugins and themes.</li>\n<li><strong>Native Fonts in the Admin</strong> (<a href=\"https://core.trac.wordpress.org/ticket/36753\">#36753</a>) &#8211; Experience faster load times, especially when working offline, a removal of a third-party dependency, and a more <a href=\"https://make.wordpress.org/core/features/font-natively/\">native-feeling experience</a> as the lines between the mobile web and native applications continue to blur.</li>\n<li><strong>Editor Improvements</strong> &#8211; A more reliable recovery mode (<a href=\"https://core.trac.wordpress.org/ticket/37025\">#37025</a>) and detection of broken URLs while you type them (<a href=\"https://core.trac.wordpress.org/ticket/36638\">#36638</a>).</li>\n</ul>\n<p>There have been changes for developers to explore as well:</p>\n<ul>\n<li><strong>Resource Hints</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34292\">#34292</a>) &#8211; Allow browsers to prefetch specific pages, render them in the background, perform DNS lookups, or to begin the connection handshake (DNS, TCP, TLS) in the background.</li>\n<li>New <code>WP_Site_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35791\">#35791</a>) and <code>WP_Network_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/32504\">#32504</a>) classes to query sites and networks with lazy loading for details.</li>\n<li><strong>Requests</strong> (<a href=\"https://core.trac.wordpress.org/ticket/33055\">#33055</a>) &#8211; A new PHP library for HTTP requests that supports parallel requests and more.</li>\n<li><code>WP_Term_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35381\">#35381</a>) is modeled on existing query classes and provides a more consistent structure for generating term queries.</li>\n<li><strong>Language Packs</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34114\">#34114</a>, <a href=\"https://core.trac.wordpress.org/ticket/34213\">#34213</a>) &#8211; Translations managed through <a href=\"https://translate.wordpress.org\">translate.wordpress.org</a> now have a higher priority and are loaded just-in-time.</li>\n<li><code>WP_Post_Type</code> (<a href=\"https://core.trac.wordpress.org/ticket/36217\">#36217</a>) provides easier access to post type objects and their underlying properties.</li>\n<li>The <strong>Widgets API</strong> (<a href=\"https://core.trac.wordpress.org/ticket/28216\">#28216</a>) was enhanced to support registering pre-instantiated widgets.</li>\n<li>Index definitions are now normalized by <code>dbDelta()</code> (<a href=\"https://core.trac.wordpress.org/changeset/37583\">[37583]</a>).</li>\n<li><strong>Comments</strong> can now be stored in a persistent object cache (<a href=\"https://core.trac.wordpress.org/ticket/36906\">#36906</a>).</li>\n<li><strong>External Libraries</strong> were updated to the latest versions &#8211; Masonry to 3.3.2 and imagesLoaded to 3.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/32802\">#32802</a>), MediaElement.js to 2.21.2 (<a href=\"https://core.trac.wordpress.org/ticket/36759\">#36759</a>), and TinyMCE to 4.3.13 (<a href=\"https://core.trac.wordpress.org/ticket/37225\">#37225</a>).</li>\n<li><strong>REST API</strong> responses now include an auto-discovery header (<a href=\"https://core.trac.wordpress.org/ticket/35580\">#35580</a>) and a refreshed nonce when responding to an authenticated response (<a href=\"https://core.trac.wordpress.org/ticket/35662\">#35662</a>).</li>\n<li>Expanded <strong>Meta Registration API</strong> via <code>register_meta()</code> (<a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>).</li>\n<li><strong>Customizer</strong> &#8211; Improved API for <a href=\"https://make.wordpress.org/core/2016/05/04/improving-setting-validation-in-the-customizer/\">setting validation</a> (<a href=\"https://core.trac.wordpress.org/ticket/34893\">#34893</a>, <a href=\"https://core.trac.wordpress.org/ticket/36944\">#36944</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.6, <a href=\"https://make.wordpress.org/core/tag/4-6/\">check out posts tagged with 4.6 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.6&amp;group=component&amp;order=priority\">list of everything</a> that’s changed.</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 the WordPress Trac</a>. There, 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><em>More Shiny Updates</em><br />\n<em>In 4.6 Beta 1.</em><br />\n<em>And Font Natively.</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:\"4343\";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: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:48:\"WordPress 4.5.3 Maintenance and Security 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:51:\"https://wordpress.org/news/2016/06/wordpress-4-5-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:\"Sat, 18 Jun 2016 09:38: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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";s: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=4311\";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:460:\"WordPress 4.5.3 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.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by Yassine Aboukir; two different XSS problems via attachment names, reported by Jouko Pynnönen and Divyesh Prajapati; revision history information disclosure, reported [&#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:16:\"Adam Silverstein\";s: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:3571:\"<p>WordPress 4.5.3 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.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by <a href=\"http://yassineaboukir.com\">Yassine Aboukir</a>; two different XSS problems via attachment names, reported by <a href=\"https://klikki.fi/\">Jouko Pynnönen</a> and <a href=\"https://twitter.com/divy_er\">Divyesh Prajapati</a>; revision history information disclosure, reported independently by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a> from the WordPress security team and by Dan Moen from the Wordfence Research Team; oEmbed denial of service reported by Jennifer Dodd from Automattic; unauthorized category removal from a post, reported by David Herrera from <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>; password change via stolen cookie, reported by <a href=\"https://blogwaffe.com/\">Michael Adams</a> from the WordPress security team; and some less secure <code>sanitize_file_name</code> edge cases reported by <a href=\"http://peter.westwood.name/\">Peter Westwood</a> of  the WordPress security team.</p>\n<p>Thank you to the reporters 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.5.3 fixes 17 bugs from 4.5, 4.5.1 and 4.5.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.5.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.5.3\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.3</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.5.3.</p>\n<p>Thanks to everyone who contributed to 4.5.3:</p>\n<p><a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/neverything\">Silvan Hagen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>,  <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> and <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</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:\"4311\";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: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:32:\"WordPress 4.5.2 Security 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:51:\"https://wordpress.org/news/2016/05/wordpress-4-5-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:\"Fri, 06 May 2016 19:17: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";s: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=4290\";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:381:\"WordPress 4.5.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.5.1 and earlier are affected by a SOME vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS [&#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:\"Helen Hou-Sandi\";s: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:1669:\"<p>WordPress 4.5.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.5.1 and earlier are affected by a <abbr title=\"Same-Origin Method Execution\">SOME</abbr> vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS using specially crafted URIs through MediaElement.js, the third-party library used for media players. MediaElement.js and Plupload have also released updates fixing these issues.</p>\n<p>Both issues were analyzed and reported by Mario Heiderich, Masato Kinugawa, and Filedescriptor from <a href=\"https://cure53.de/\">Cure53</a>. Thanks to the team for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>, and to the Plupload and MediaElement.js teams for working closely with us to coördinate and fix these issues.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.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.5.2.</p>\n<p>Additionally, there are multiple widely publicized vulnerabilities in the ImageMagick image processing library, which is used by a number of hosts and is supported in WordPress. For our current response to these issues, see <a href=\"https://make.wordpress.org/core/2016/05/06/imagemagick-vulnerability-information/\">this post on the core development blog</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:\"4290\";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: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:35:\"WordPress 4.5.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/2016/04/wordpress-4-5-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:\"Tue, 26 Apr 2016 18:58: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: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:3:\"4.5\";s: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=4269\";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:358:\"After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release. This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an [&#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:16:\"Adam Silverstein\";s: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:2134:\"<p>After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release.</p>\n<p>This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an Imagick bug that could break media uploads. This maintenance release fixes a total of 12 bugs in Version 4.5. <span style=\"line-height: 1.5\">For more information, see the </span><a style=\"line-height: 1.5\" href=\"https://codex.wordpress.org/Version_4.5.1\">release notes</a><span style=\"line-height: 1.5\"> or consult the </span><a style=\"line-height: 1.5\" href=\"https://core.trac.wordpress.org/log/branches/4.5?rev=37295&amp;stop_rev=37182\">list of changes</a><span style=\"line-height: 1.5\">.</span></p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.1</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.5.1.</p>\n<p>Thanks to everyone who contributed to 4.5.1:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</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/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, and <a href=\"https://profiles.wordpress.org/WiZZarD_\">Pieter</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:\"4269\";s: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:\"Mon, 29 Aug 2016 19:59:01 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:\"Tue, 16 Aug 2016 19:54:28 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:\"20130911080210\";}','no'),(45686,'boldgrid_customizer_first_use','2016-03-31 19:11:08','yes'),(45688,'boldgrid_mobile_ratio','0:1','yes'),(61411,'avada_disable_builder','1','yes'),(61412,'avada_disable_encoding','1','yes'),(61413,'avada_dynamic_css_time','1472504196','yes'),(46479,'fs_contact_form4','a:168:{s:9:\"form_name\";s:8:\"imported\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:15:\"after_form_note\";s:0:\"\";s:8:\"email_to\";s:28:\"Webmaster,gyromudd@gmail.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:19:\"My Website Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:21:\"preserve_space_enable\";s:5:\"false\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:20:\"domain_protect_names\";s:0:\"\";s:13:\"anchor_enable\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:16:\"email_check_easy\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:18:\"email_inline_label\";s:5:\"false\";s:16:\"email_hide_empty\";s:5:\"false\";s:17:\"print_form_enable\";s:5:\"false\";s:22:\"email_keep_attachments\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"honeypot_enable\";s:5:\"false\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:25:\"http://freereincenter.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:24:\"silent_conditional_field\";s:0:\"\";s:24:\"silent_conditional_value\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:22:\"enable_submit_oneclick\";s:4:\"true\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:18:\"gyromudd@gmail.com\";s:21:\"auto_respond_reply_to\";s:18:\"gyromudd@gmail.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:14:\"external_style\";s:5:\"false\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:15:\"form_attributes\";s:0:\"\";s:17:\"submit_attributes\";s:0:\"\";s:17:\"success_page_html\";s:0:\"\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:16:\"title_submitting\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:17:\"text_print_button\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:17:\"error_email_check\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:9:\"error_url\";s:0:\"\";s:10:\"error_date\";s:0:\"\";s:10:\"error_time\";s:0:\"\";s:12:\"error_maxlen\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:12:\"error_select\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:13:\"error_spambot\";s:0:\"\";s:6:\"fields\";a:4:{i:0;a:20:{s:8:\"standard\";s:1:\"1\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:5:\"Name:\";s:4:\"slug\";s:9:\"full_name\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:1;a:20:{s:8:\"standard\";s:1:\"2\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:6:\"Email:\";s:4:\"slug\";s:5:\"email\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:2;a:20:{s:8:\"standard\";s:1:\"3\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Subject:\";s:4:\"slug\";s:7:\"subject\";s:4:\"type\";s:4:\"text\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}i:3;a:20:{s:8:\"standard\";s:1:\"4\";s:7:\"options\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"inline\";s:5:\"false\";s:3:\"req\";s:4:\"true\";s:7:\"disable\";s:5:\"false\";s:6:\"follow\";s:5:\"false\";s:10:\"hide_label\";s:5:\"false\";s:11:\"placeholder\";s:5:\"false\";s:5:\"label\";s:8:\"Message:\";s:4:\"slug\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:7:\"max_len\";s:0:\"\";s:9:\"label_css\";s:0:\"\";s:9:\"input_css\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:5:\"regex\";s:0:\"\";s:11:\"regex_error\";s:0:\"\";s:5:\"notes\";s:0:\"\";s:11:\"notes_after\";s:0:\"\";}}s:23:\"vcita_scheduling_button\";s:5:\"false\";s:29:\"vcita_scheduling_button_label\";s:23:\"Schedule an Appointment\";s:14:\"vcita_approved\";s:5:\"false\";s:9:\"vcita_uid\";s:0:\"\";s:11:\"vcita_email\";s:0:\"\";s:15:\"vcita_email_new\";s:22:\"freerein1325@gmail.com\";s:19:\"vcita_confirm_token\";s:0:\"\";s:20:\"vcita_confirm_tokens\";s:0:\"\";s:17:\"vcita_initialized\";s:5:\"false\";s:16:\"vcita_first_name\";s:0:\"\";s:15:\"vcita_last_name\";s:0:\"\";s:10:\"form_style\";s:12:\"width:375px;\";s:14:\"left_box_style\";s:39:\"float:left; width:55%; max-width:270px;\";s:15:\"right_box_style\";s:24:\"float:left; width:235px;\";s:11:\"clear_style\";s:11:\"clear:both;\";s:16:\"field_left_style\";s:70:\"clear:left; float:left; width:99%; max-width:550px; margin-right:10px;\";s:21:\"field_prefollow_style\";s:70:\"clear:left; float:left; width:99%; max-width:250px; margin-right:10px;\";s:18:\"field_follow_style\";s:58:\"float:left; padding-left:10px; width:99%; max-width:250px;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_image_style\";s:72:\"border-style:none; margin:0; padding:0px; padding-right:5px; float:left;\";s:26:\"captcha_reload_image_style\";s:64:\"border-style:none; margin:0; padding:0px; vertical-align:bottom;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:19:\"required_text_style\";s:16:\"text-align:left;\";s:10:\"hint_style\";s:38:\"font-size:x-small; font-weight:normal;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:14:\"redirect_style\";s:16:\"text-align:left;\";s:14:\"fieldset_style\";s:65:\"border:1px solid black; width:97%; max-width:500px; padding:10px;\";s:11:\"label_style\";s:16:\"text-align:left;\";s:18:\"option_label_style\";s:15:\"display:inline;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:14:\"textarea_style\";s:68:\"text-align:left; margin:0; width:99%; max-width:250px; height:120px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:14:\"checkbox_style\";s:24:\"width:22px; height:32px;\";s:11:\"radio_style\";s:24:\"width:22px; height:32px;\";s:17:\"placeholder_style\";s:27:\"opacity:0.6; color:#333333;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:18:\"vcita_button_style\";s:156:\"text-decoration:none; display:block; text-align:center; background:linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); color:#fff !important; padding:8px;\";s:22:\"vcita_div_button_style\";s:63:\"border-left:1px dashed #ccc; margin-top:25px; padding:8px 20px;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";}','yes'),(46480,'bstwbsftwppdtplgns_options','a:1:{s:8:\"bws_menu\";a:1:{s:7:\"version\";a:1:{s:49:\"facebook-button-plugin/facebook-button-plugin.php\";s:5:\"1.9.2\";}}}','yes'),(77009,'woocommerce_admin_notices','a:2:{i:0;s:7:\"install\";i:2;s:14:\"template_files\";}','yes'),(77010,'_transient_woocommerce_cache_excluded_uris','a:0:{}','yes'),(77011,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(47277,'wpseo_sitemap_revision_cache_validator','4TQjE','no'),(47279,'wpseo_sitemap_page_cache_validator','6iwhN','no'),(76853,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1472543941','no'),(76854,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1472500741','no'),(68591,'Avada_options','a:592:{s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:16:\"hundredp_padding\";s:4:\"30px\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:13:\"sidebar_width\";s:3:\"23%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:10:\"nav_height\";s:2:\"83\";s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"45\";s:15:\"megamenu_shadow\";s:1:\"1\";s:19:\"dropdown_menu_width\";s:3:\"180\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"7\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:1:\"0\";s:20:\"main_nav_search_icon\";s:1:\"1\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"menu_h45_bg_color\";s:7:\"#ffffff\";s:14:\"nav_typography\";a:5:{s:11:\"font-weight\";s:3:\"400\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:14:\"letter-spacing\";s:1:\"0\";}s:13:\"nav_font_size\";s:4:\"14px\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:15:\"menu_text_align\";s:6:\"center\";s:16:\"menu_first_color\";s:7:\"#333333\";s:22:\"menu_hover_first_color\";s:7:\"#a0ce4e\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:23:\"topmenu_dropwdown_width\";s:3:\"180\";s:29:\"header_top_first_border_color\";s:7:\"#e5e5e5\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"44px\";s:10:\"snav_color\";s:7:\"#747474\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:18:\"mobile_menu_design\";s:6:\"modern\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"0\";s:22:\"mobile_menu_nav_height\";s:2:\"35\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:21:\"mobile_menu_font_size\";s:4:\"12px\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:22:\"mobile_menu_font_color\";s:7:\"#333333\";s:18:\"megamenu_max_width\";s:4:\"1100\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"5\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:3:\"800\";s:19:\"content_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";s:3:\"0.6\";s:17:\"typography_factor\";s:3:\"1.5\";s:11:\"scheme_type\";s:0:\"\";s:12:\"color_scheme\";s:5:\"Green\";s:13:\"primary_color\";s:7:\"#a0ce4e\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v1\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:12:\"Contact Info\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:28:\"Call Us Today! 1.555.555.555\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";a:0:{}s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:13:\"header_sticky\";i:1;s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:22:\"header_sticky_bg_color\";s:7:\"#ffffff\";s:25:\"header_sticky_nav_padding\";s:2:\"35\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:14:\"logo_alignment\";s:4:\"Left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"logo\";a:1:{s:3:\"url\";s:72:\"http://freereincenter.com/wp-content/themes/Avada/assets/images/logo.png\";}s:11:\"logo_retina\";a:0:{}s:18:\"sticky_header_logo\";a:0:{}s:25:\"sticky_header_logo_retina\";a:0:{}s:11:\"mobile_logo\";a:0:{}s:18:\"mobile_logo_retina\";a:0:{}s:7:\"favicon\";a:0:{}s:11:\"iphone_icon\";a:0:{}s:18:\"iphone_icon_retina\";a:0:{}s:9:\"ipad_icon\";a:0:{}s:16:\"ipad_icon_retina\";a:0:{}s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"1\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:19:\"page_title_bg_color\";s:7:\"#F6F6F6\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:20:\"page_title_font_size\";s:4:\"18px\";s:16:\"page_title_color\";s:7:\"#333333\";s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:1:{s:3:\"url\";s:81:\"http://freereincenter.com/wp-content/themes/Avada/assets/images/page_title_bg.png\";}s:20:\"page_title_bg_retina\";a:0:{}s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:11:\"Breadcrumbs\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"1\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:25:\"slidingbar_headings_color\";s:7:\"#dddddd\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#bfbfbf\";s:21:\"slidingbar_top_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:20:\"footer_sticky_height\";s:1:\"0\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"0\";s:11:\"footer_text\";s:160:\"Copyright 2012 - 2016 Avada | All Rights Reserved | Powered by <a href=\"http://wordpress.org\">WordPress</a> | <a href=\"http://theme-fusion.com\">Theme Fusion</a>\";s:16:\"footerw_bg_image\";a:0:{}s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:7:\"#363839\";s:18:\"footer_border_size\";s:2:\"12\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:21:\"copyright_border_size\";s:1:\"1\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:26:\"footer_headings_typography\";a:8:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#dddddd\";}s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:19:\"copyright_font_size\";s:4:\"12px\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"13px\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"content_bg_image\";a:0:{}s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_image\";a:0:{}s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:15:\"body_typography\";a:8:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#747474\";}s:10:\"link_color\";s:7:\"#333333\";s:13:\"h1_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"34px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";}s:13:\"h2_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"18px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";}s:13:\"h3_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";}s:13:\"h4_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";}s:13:\"h5_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"12px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";}s:13:\"h6_typography\";a:10:{s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"11px\";s:11:\"font-family\";s:10:\"Antic Slab\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";}s:21:\"post_titles_font_size\";s:4:\"18px\";s:19:\"post_titles_font_lh\";s:4:\"27px\";s:28:\"post_titles_extras_font_size\";s:4:\"18px\";s:12:\"custom_fonts\";a:0:{}s:16:\"animation_offset\";s:13:\"top-into-view\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:11:\"button_span\";s:2:\"no\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:5:{s:11:\"font-weight\";s:3:\"400\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";b:1;s:6:\"google\";b:1;s:14:\"letter-spacing\";s:1:\"0\";}s:25:\"button_gradient_top_color\";s:7:\"#a0ce4e\";s:28:\"button_gradient_bottom_color\";s:7:\"#a0ce4e\";s:31:\"button_gradient_top_color_hover\";s:7:\"#96c346\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#96c346\";s:19:\"button_accent_color\";s:7:\"#ffffff\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";s:1:\"0\";s:18:\"carousel_nav_color\";s:15:\"rgba(0,0,0,0.6)\";s:20:\"carousel_hover_color\";s:15:\"rgba(0,0,0,0.7)\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:4:\"18px\";s:23:\"content_box_title_color\";s:7:\"#a0ce4e\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:21:\"content_box_icon_size\";s:4:\"21px\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:0:{}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"full_width_border_size\";s:1:\"0\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:22:\"imageframe_border_size\";s:1:\"0\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:18:\"person_style_color\";s:7:\"#000000\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:18:\"progressbar_height\";s:4:\"37px\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:9:\"sep_color\";s:7:\"#e0dede\";s:16:\"separator_circle\";s:1:\"1\";s:21:\"separator_border_size\";s:1:\"1\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:16:\"title_style_type\";s:6:\"double\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";}s:22:\"accordion_divider_line\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:21:\"user_login_text_align\";s:6:\"center\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:24:\"blog_show_page_title_bar\";s:1:\"1\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:17:\"blog_grid_columns\";i:3;s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";s:2:\"55\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";i:0;s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"12px\";s:11:\"date_format\";s:7:\"F jS, Y\";s:15:\"portfolio_items\";s:2:\"10\";s:24:\"portfolio_archive_layout\";s:20:\"Portfolio One Column\";s:24:\"portfolio_column_spacing\";s:2:\"12\";s:24:\"portfolio_content_length\";s:7:\"Excerpt\";s:24:\"excerpt_length_portfolio\";s:2:\"55\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:20:\"grid_pagination_type\";s:10:\"Pagination\";s:41:\"portfolio_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"1\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"social_media_icons\";a:0:{}s:29:\"header_social_links_font_size\";s:4:\"16px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:7:\"#bebdbd\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"1\";s:14:\"sharing_reddit\";s:1:\"1\";s:16:\"sharing_linkedin\";s:1:\"1\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"1\";s:17:\"sharing_pinterest\";s:1:\"1\";s:10:\"sharing_vk\";s:1:\"1\";s:13:\"sharing_email\";s:1:\"1\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:13:\"email_address\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"Clean\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:14:\"map_zoom_level\";i:8;s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:13:\"search_layout\";s:4:\"Grid\";s:14:\"search_content\";s:15:\"Posts and Pages\";s:14:\"search_excerpt\";s:1:\"1\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_featured_images\";s:1:\"1\";s:26:\"search_new_search_position\";s:3:\"top\";s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";i:5;s:28:\"related_posts_column_spacing\";s:2:\"44\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"12px\";s:17:\"form_input_height\";s:4:\"29px\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:16:\"smooth_scrolling\";s:1:\"0\";s:15:\"disable_builder\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:15:\"use_animate_css\";s:1:\"1\";s:26:\"disable_mobile_animate_css\";s:1:\"0\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:1:\"1\";s:19:\"status_totop_mobile\";s:1:\"0\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";s:1:\"1\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:8:\"dev_mode\";s:1:\"0\";s:20:\"dynamic_css_compiler\";s:1:\"1\";s:22:\"dynamic_css_db_caching\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}','yes'),(76873,'_transient_timeout_select2-css_style_cdn_is_up','1472587281','no'),(76874,'_transient_select2-css_style_cdn_is_up','1','no'),(76875,'_transient_timeout_select2-js_script_cdn_is_up','1472587281','no'),(76876,'_transient_select2-js_script_cdn_is_up','1','no'),(76877,'_site_transient_timeout_avada_avadaredux_googlefonts','1473105681','no'),(76878,'_site_transient_avada_avadaredux_googlefonts','a:733:{s:7:\"ABeeZee\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Abel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Abril Fatface\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Aclonica\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Acme\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Actor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Adamina\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Advent Pro\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:15:\"Aguafina Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Akronim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Aladin\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Aldrich\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Alef\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}}}s:8:\"Alegreya\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Alegreya SC\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alegreya Sans\";a:2:{s:8:\"variants\";a:14:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:11;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:13;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Alegreya Sans SC\";a:2:{s:8:\"variants\";a:14:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:11;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:13;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Alex Brush\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alfa Slab One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Alice\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Alike\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Alike Angular\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Allan\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Allerta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Allerta Stencil\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Allura\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Almendra\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Almendra Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Almendra SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Amarante\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Amaranth\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Amatic SC\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Amethysta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Amiri\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Amita\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Anaheim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Andada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Andika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Angkor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:24:\"Annie Use Your Telescope\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Anonymous Pro\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Antic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Antic Didone\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Antic Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Anton\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Arapey\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Arbutus\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Arbutus Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Architects Daughter\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Archivo Black\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Archivo Narrow\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Arimo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Arizonia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Armata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Artifika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Arvo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Arya\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:4:\"Asap\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Asar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Asset\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Astloch\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Asul\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Atomic Age\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Aubrey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Audiowide\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Autour One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Average\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Average Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Averia Gruesa Libre\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Averia Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Averia Sans Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Averia Serif Libre\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bad Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Balthazar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Bangers\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Basic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Battambang\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Baumans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bayon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:8:\"Belgrano\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Belleza\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"BenchNine\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Bentham\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Berkshire Swash\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bevan\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Bigelow Rules\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Bigshot One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bilbo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Bilbo Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Biryani\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Bitter\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Black Ops One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Bokor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Bonbon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Boogaloo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bowlby One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Bowlby One SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Brawler\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Bree Serif\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Bubblegum Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Bubbler One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Buda\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Buenard\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Butcherman\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Butterfly Kids\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Cabin\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Cabin Condensed\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Cabin Sketch\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Caesar Dressing\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Cagliostro\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Calligraffitti\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cambay\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Cambo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Candal\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Cantarell\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cantata One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cantora One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Capriola\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Cardo\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Carme\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Carrois Gothic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Carrois Gothic SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Carter One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Catamaran\";a:2:{s:8:\"variants\";a:9:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:5:\"tamil\";s:4:\"name\";s:5:\"Tamil\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Caudex\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:6:\"Caveat\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Caveat Brush\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Cedarville Cursive\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Ceviche One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Changa One\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chango\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Chau Philomene One\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Chela One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Chelsea Market\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chenla\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:17:\"Cherry Cream Soda\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Cherry Swash\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Chewy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Chicle\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Chivo\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:3;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Chonburi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cinzel\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Cinzel Decorative\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Clicker Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Coda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Coda Caption\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Codystar\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Combo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Comfortaa\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Coming Soon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Concert One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Condiment\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Content\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:12:\"Contrail One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Convergence\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cookie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Copse\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Corben\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Courgette\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Cousine\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Coustard\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Covered By Your Grace\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Crafty Girls\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Creepster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Crete Round\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Crimson Text\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Croissant One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Crushed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cuprum\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Cutive\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Cutive Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Damion\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Dancing Script\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Dangrek\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:20:\"Dawning of a New Day\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Days One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dekko\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Delius\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Delius Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Delius Unicase\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Della Respira\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Denk One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Devonshire\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Dhurjati\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Didact Gothic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Diplomata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Diplomata SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Domine\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Donegal One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Doppio One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dorsa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Dosis\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Dr Sugiyama\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Droid Sans\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Droid Sans Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Droid Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Duru Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Dynalight\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"EB Garamond\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Eagle Lake\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Eater\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Economica\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Eczar\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:8:\"Ek Mukta\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Electrolize\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Elsie\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Elsie Swash Caps\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Emblema One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Emilys Candy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Engagement\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Englebert\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Enriqueta\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Erica One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Esteban\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Euphoria Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Ewert\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Exo\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Exo 2\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Expletus Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Fanwood Text\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fascinate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Fascinate Inline\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Faster One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Fasthand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:9:\"Fauna One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Federant\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Federo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Felipa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Fenix\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Finger Paint\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fira Mono\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Fira Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:10:\"Fjalla One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fjord One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Flamenco\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Flavors\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Fondamento\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Fontdiner Swanky\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Forum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Francois One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Freckle Face\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Fredericka the Great\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Fredoka One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Freehand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Fresca\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Frijole\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Fruktur\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Fugaz One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"GFS Didot\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:15:\"GFS Neohellenic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Gabriela\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gafata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Galdeano\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Galindo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Gentium Basic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Gentium Book Basic\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Geo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Geostar\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Geostar Fill\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Germania One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gidugu\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Gilda Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Give You Glory\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Glass Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Glegoo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:17:\"Gloria Hallelujah\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Goblin One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Gochi Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Gorditas\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Goudy Bookletter 1911\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Graduate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Grand Hotel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Gravitas One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Great Vibes\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Griffy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Gruppo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Gudea\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Gurajada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Habibi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Halant\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:15:\"Hammersmith One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Hanalei\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Hanalei Fill\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Handlee\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Hanuman\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:12:\"Happy Monkey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Headland One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Henny Penny\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Herr Von Muellerhoff\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Hind\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:13:\"Hind Siliguri\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"bengali\";s:4:\"name\";s:7:\"Bengali\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Hind Vadodara\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:8:\"gujarati\";s:4:\"name\";s:8:\"Gujarati\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Holtwood One SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Homemade Apple\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Homenaje\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"IM Fell DW Pica\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"IM Fell DW Pica SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"IM Fell Double Pica\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"IM Fell Double Pica SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"IM Fell English\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"IM Fell English SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"IM Fell French Canon\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"IM Fell French Canon SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"IM Fell Great Primer\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"IM Fell Great Primer SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Iceberg\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Iceland\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Imprima\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Inconsolata\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Inder\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Indie Flower\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Inika\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Inknut Antiqua\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:12:\"Irish Grover\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Istok Web\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Italiana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Italianno\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Itim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Jacques Francois\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Jacques Francois Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Jaldi\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Jim Nightshade\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Jockey One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Jolly Lodger\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Josefin Sans\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Josefin Slab\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Joti One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Judson\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Julee\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Julius Sans One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Junge\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Jura\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:17:\"Just Another Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Just Me Again Down Here\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kadwa\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Kalam\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Kameron\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kanit\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:4:\"thai\";s:4:\"name\";s:4:\"Thai\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Kantumruy\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Karla\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Karma\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Kaushan Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kavoon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Kdam Thmor\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:10:\"Keania One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Kelly Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kenia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Khand\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Khmer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Khula\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:8:\"Kite One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Knewave\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Kotta One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Koulen\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:6:\"Kranky\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Kreon\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kristi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Krona One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Kurale\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:15:\"La Belle Aurore\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Laila\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Lakki Reddy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Lancelot\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Lateef\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Lato\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:9;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"League Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Leckerli One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ledger\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Lekton\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Lemon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Libre Baskerville\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Life Savers\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Lilita One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Lily Script One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Limelight\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Linden Hill\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Lobster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Lobster Two\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Londrina Outline\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Londrina Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Londrina Sketch\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Londrina Solid\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Lora\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Love Ya Like A Sister\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Loved by the King\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Lovers Quarrel\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Luckiest Guy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Lusitana\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Lustria\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Macondo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Macondo Swash Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Magra\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Maiden Orange\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Mako\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Mallanna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Mandali\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Marcellus\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Marcellus SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Marck Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Margarine\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Marko One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Marmelad\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Martel\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:11:\"Martel Sans\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Marvel\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Mate\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Mate SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Maven Pro\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"McLaren\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Meddon\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"MedievalSharp\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Medula One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Megrim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Meie Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Merienda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Merienda One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Merriweather\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:7;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Merriweather Sans\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:7;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Metal\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:11:\"Metal Mania\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Metamorphous\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Metrophobic\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Michroma\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Milonga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Miltonian\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Miltonian Tattoo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Miniver\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Miss Fajardose\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Modak\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Modern Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Molengo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Molle\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Monda\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Monofett\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Monoton\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Monsieur La Doulaise\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Montaga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Montez\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Montserrat\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Montserrat Alternates\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Montserrat Subrayada\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Moul\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:8:\"Moulpali\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:22:\"Mountains of Christmas\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mouse Memoirs\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Mr Bedfort\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Mr Dafoe\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Mr De Haviland\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Mrs Saint Delafield\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mrs Sheppards\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Muli\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Mystery Quest\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"NTR\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Neucha\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Neuton\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"New Rocker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"News Cycle\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Niconne\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nixie One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nobile\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nokora\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Norican\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Nosifer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Nothing You Could Do\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Noticia Text\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Noto Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}i:7;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:10:\"Noto Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Nova Cut\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Flat\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Nova Oval\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Nova Round\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Nova Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Nova Slim\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Nova Square\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Numans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Nunito\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Odor Mean Chey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:7:\"Offside\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Old Standard TT\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Oldenburg\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Oleo Script\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"Oleo Script Swash Caps\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Open Sans\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:9;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:19:\"Open Sans Condensed\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Oranienbaum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Orbitron\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Oregano\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Orienta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Original Surfer\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Oswald\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Over the Rainbow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Overlock\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Overlock SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Ovo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Oxygen\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Oxygen Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"PT Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"PT Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"PT Sans Caption\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"PT Sans Narrow\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"PT Serif\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"PT Serif Caption\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Pacifico\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Palanquin\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:14:\"Palanquin Dark\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Paprika\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Parisienne\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Passero One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Passion One\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Pathway Gothic One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Patrick Hand\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Patrick Hand SC\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Patua One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Paytone One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Peddana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Peralta\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Permanent Marker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Petit Formal Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Petrona\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Philosopher\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Piedra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Pinyon Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Pirata One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Plaster\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Play\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:5:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:3;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:4;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:8:\"Playball\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Playfair Display\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Playfair Display SC\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:5;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Podkova\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Poiret One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Poller One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Poly\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Pompiere\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Pontano Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Poppins\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:16:\"Port Lligat Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Port Lligat Slab\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Pragati Narrow\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Prata\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Preahvihear\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:14:\"Press Start 2P\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:4:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:3;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:14:\"Princess Sofia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Prociono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Prosto One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Puritan\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Purple Purse\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Quando\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Quantico\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Quattrocento\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Quattrocento Sans\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Questrial\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Quicksand\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Quintessential\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Qwigley\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Racing Sans One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Radley\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Rajdhani\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Raleway\";a:2:{s:8:\"variants\";a:18:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:3;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:5;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:7;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:9;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:11;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:12;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:13;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:14;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:15;a:2:{s:2:\"id\";s:9:\"800italic\";s:4:\"name\";s:21:\"Extra-Bold 800 Italic\";}i:16;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:17;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Raleway Dots\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Ramabhadra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Ramaraja\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rambla\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Rammetto One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Ranchers\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rancho\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Ranga\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:9:\"Rationale\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Ravi Prakash\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Redressed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Reenie Beanie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Revalia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Rhodium Libre\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Ribeye\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Ribeye Marrow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Righteous\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Risque\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Roboto\";a:2:{s:8:\"variants\";a:12:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:11;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:16:\"Roboto Condensed\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Roboto Mono\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:9:\"100italic\";s:4:\"name\";s:22:\"Ultra-Light 100 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:7;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Roboto Slab\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Rochester\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rock Salt\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Rokkitt\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Romanesco\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Ropa Sans\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Rosario\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Rosarivo\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Rouge Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rozha One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Rubik\";a:2:{s:8:\"variants\";a:10:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:9;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Rubik Mono One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Rubik One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Ruda\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Rufina\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Ruge Boogie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ruluko\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Rum Raisin\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Ruslan Display\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Russo One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ruthie\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:3:\"Rye\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sacramento\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sahitya\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:1;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:4:\"Sail\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Salsa\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sanchez\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Sancreek\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Sansita One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Sarala\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:6:\"Sarina\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Sarpanch\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:5;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Satisfy\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Scada\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Scheherazade\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"arabic\";s:4:\"name\";s:6:\"Arabic\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Schoolbell\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Seaweed Script\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Sevillana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Seymour One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Shadows Into Light\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:22:\"Shadows Into Light Two\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Shanti\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Share\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Share Tech\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Share Tech Mono\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Shojumaru\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Short Stack\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Siemreap\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:10:\"Sigmar One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Signika\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Signika Negative\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Simonetta\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:3;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sintony\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Sirin Stencil\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Six Caps\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Skranji\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Slabo 13px\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Slabo 27px\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Slackey\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Smokum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Smythe\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Sniglet\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Snippet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Snowburst One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sofadi One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Sofia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Sonsie One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Sorts Mill Goudy\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Source Code Pro\";a:2:{s:8:\"variants\";a:7:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:5;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:6;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Source Sans Pro\";a:2:{s:8:\"variants\";a:12:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}i:11;a:2:{s:2:\"id\";s:9:\"900italic\";s:4:\"name\";s:21:\"Ultra-Bold 900 Italic\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Source Serif Pro\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Special Elite\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Spicy Rice\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Spinnaker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Spirax\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Squada One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Sree Krushnadevaraya\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Stalemate\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Stalinist One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Stardos Stencil\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:21:\"Stint Ultra Condensed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:20:\"Stint Ultra Expanded\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Stoke\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Strait\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:19:\"Sue Ellen Francisco\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Sumana\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:9:\"Sunshiney\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:16:\"Supermercado One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Sura\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Suranna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Suravaram\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Suwannaphum\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:18:\"Swanky and Moo Moo\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Syncopate\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Tangerine\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Taprom\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"khmer\";s:4:\"name\";s:5:\"Khmer\";}}}s:5:\"Tauri\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Teko\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:2;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:3;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Telex\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"Tenali Ramakrishna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Tenor Sans\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Text Me One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"The Girl Next Door\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Tienne\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:2;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Tillana\";a:2:{s:8:\"variants\";a:5:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:4;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:7:\"Timmana\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:6:\"telugu\";s:4:\"name\";s:6:\"Telugu\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Tinos\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:8:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:10:\"vietnamese\";s:4:\"name\";s:10:\"Vietnamese\";}i:3;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:4;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:5;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:6;a:2:{s:2:\"id\";s:6:\"hebrew\";s:4:\"name\";s:6:\"Hebrew\";}i:7;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:9:\"Titan One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:13:\"Titillium Web\";a:2:{s:8:\"variants\";a:11:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:9:\"200italic\";s:4:\"name\";s:16:\"Light 200 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:5;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:7;a:2:{s:2:\"id\";s:9:\"600italic\";s:4:\"name\";s:20:\"Semi-Bold 600 Italic\";}i:8;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:9;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}i:10;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Trade Winds\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trocchi\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trochut\";a:2:{s:8:\"variants\";a:3:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Trykker\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Tulpen One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Ubuntu\";a:2:{s:8:\"variants\";a:8:{i:0;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:1;a:2:{s:2:\"id\";s:9:\"300italic\";s:4:\"name\";s:15:\"Book 300 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:9:\"500italic\";s:4:\"name\";s:17:\"Medium 500 Italic\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:16:\"Ubuntu Condensed\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:11:\"Ubuntu Mono\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:6:{i:0;a:2:{s:2:\"id\";s:12:\"cyrillic-ext\";s:4:\"name\";s:17:\"Cyrillic Extended\";}i:1;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:2;a:2:{s:2:\"id\";s:9:\"greek-ext\";s:4:\"name\";s:14:\"Greek Extended\";}i:3;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:4;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:5;a:2:{s:2:\"id\";s:5:\"greek\";s:4:\"name\";s:5:\"Greek\";}}}s:5:\"Ultra\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"Uncial Antiqua\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Underdog\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Unica One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:14:\"UnifrakturCook\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:18:\"UnifrakturMaguntia\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Unkempt\";a:2:{s:8:\"variants\";a:2:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Unlock\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Unna\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"VT323\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Vampiro One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Varela\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Varela Round\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Vast Shadow\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:12:\"Vesper Libre\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:5:\"Vibur\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Vidaloka\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:4:\"Viga\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:5:\"Voces\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:7:\"Volkhov\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Vollkorn\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:1;a:2:{s:2:\"id\";s:9:\"400italic\";s:4:\"name\";s:17:\"Normal 400 Italic\";}i:2;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:3;a:2:{s:2:\"id\";s:9:\"700italic\";s:4:\"name\";s:15:\"Bold 700 Italic\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Voltaire\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:23:\"Waiting for the Sunrise\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Wallpoet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:15:\"Walter Turncoat\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Warnes\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Wellfleet\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Wendy One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:8:\"Wire One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:9:\"Work Sans\";a:2:{s:8:\"variants\";a:9:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:2;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:3;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:4;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:5;a:2:{s:2:\"id\";s:3:\"600\";s:4:\"name\";s:13:\"Semi-Bold 600\";}i:6;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:7;a:2:{s:2:\"id\";s:3:\"800\";s:4:\"name\";s:14:\"Extra-Bold 800\";}i:8;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:17:\"Yanone Kaffeesatz\";a:2:{s:8:\"variants\";a:4:{i:0;a:2:{s:2:\"id\";s:3:\"200\";s:4:\"name\";s:9:\"Light 200\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:11:\"Yantramanav\";a:2:{s:8:\"variants\";a:6:{i:0;a:2:{s:2:\"id\";s:3:\"100\";s:4:\"name\";s:15:\"Ultra-Light 100\";}i:1;a:2:{s:2:\"id\";s:3:\"300\";s:4:\"name\";s:8:\"Book 300\";}i:2;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}i:3;a:2:{s:2:\"id\";s:3:\"500\";s:4:\"name\";s:10:\"Medium 500\";}i:4;a:2:{s:2:\"id\";s:3:\"700\";s:4:\"name\";s:8:\"Bold 700\";}i:5;a:2:{s:2:\"id\";s:3:\"900\";s:4:\"name\";s:14:\"Ultra-Bold 900\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}i:2;a:2:{s:2:\"id\";s:10:\"devanagari\";s:4:\"name\";s:10:\"Devanagari\";}}}s:10:\"Yellowtail\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Yeseva One\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:3:{i:0;a:2:{s:2:\"id\";s:9:\"latin-ext\";s:4:\"name\";s:14:\"Latin Extended\";}i:1;a:2:{s:2:\"id\";s:8:\"cyrillic\";s:4:\"name\";s:8:\"Cyrillic\";}i:2;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:10:\"Yesteryear\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}s:6:\"Zeyada\";a:2:{s:8:\"variants\";a:1:{i:0;a:2:{s:2:\"id\";s:3:\"400\";s:4:\"name\";s:10:\"Normal 400\";}}s:7:\"subsets\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"latin\";s:4:\"name\";s:5:\"Latin\";}}}}','no'),(61426,'avada_theme_options-transients','a:2:{s:14:\"changed_values\";a:179:{s:16:\"hundredp_padding\";s:4:\"30px\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:11:\"nav_padding\";i:45;s:19:\"dropdown_menu_width\";i:180;s:34:\"mainmenu_dropdown_vertical_padding\";i:7;s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:14:\"nav_typography\";a:0:{}s:13:\"nav_font_size\";s:4:\"14px\";s:15:\"menu_text_align\";s:6:\"center\";s:29:\"header_top_first_border_color\";s:7:\"#e5e5e5\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:10:\"snav_color\";s:7:\"#747474\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:18:\"mobile_nav_padding\";i:25;s:28:\"mobile_menu_icons_top_margin\";i:0;s:22:\"mobile_menu_nav_height\";i:35;s:21:\"mobile_menu_font_size\";s:4:\"12px\";s:30:\"megamenu_item_vertical_padding\";i:5;s:21:\"grid_main_break_point\";i:1000;s:23:\"side_header_break_point\";i:800;s:21:\"typography_responsive\";s:1:\"0\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:15:\"header_bg_image\";a:0:{}s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:7:\"#ffffff\";s:25:\"header_sticky_nav_padding\";i:35;s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:4:\"logo\";a:1:{s:3:\"url\";a:1:{s:3:\"url\";s:72:\"http://freereincenter.com/wp-content/themes/Avada/assets/images/logo.png\";}}s:11:\"logo_retina\";a:0:{}s:18:\"sticky_header_logo\";a:0:{}s:25:\"sticky_header_logo_retina\";a:0:{}s:11:\"mobile_logo\";a:0:{}s:18:\"mobile_logo_retina\";a:0:{}s:7:\"favicon\";a:0:{}s:11:\"iphone_icon\";a:0:{}s:18:\"iphone_icon_retina\";a:0:{}s:9:\"ipad_icon\";a:0:{}s:16:\"ipad_icon_retina\";a:0:{}s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:13:\"page_title_bg\";a:1:{s:3:\"url\";a:1:{s:3:\"url\";s:81:\"http://freereincenter.com/wp-content/themes/Avada/assets/images/page_title_bg.png\";}}s:20:\"page_title_bg_retina\";a:0:{}s:17:\"page_title_fading\";s:1:\"0\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:25:\"mobile_slidingbar_widgets\";s:1:\"1\";s:26:\"slidingbar_widgets_columns\";i:2;s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:11:\"footer_text\";s:160:\"Copyright 2012 - 2016 Avada | All Rights Reserved | Powered by <a href=\"http://wordpress.org\">WordPress</a> | <a href=\"http://theme-fusion.com\">Theme Fusion</a>\";s:16:\"footerw_bg_image\";a:0:{}s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:26:\"footer_headings_typography\";a:0:{}s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"13px\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:16:\"content_bg_image\";a:0:{}s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_image\";a:0:{}s:9:\"bg_repeat\";s:9:\"no-repeat\";s:15:\"body_typography\";a:0:{}s:13:\"h1_typography\";a:0:{}s:13:\"h2_typography\";a:0:{}s:13:\"h3_typography\";a:0:{}s:13:\"h4_typography\";a:0:{}s:13:\"h5_typography\";a:0:{}s:13:\"h6_typography\";a:0:{}s:12:\"custom_fonts\";a:0:{}s:17:\"button_typography\";a:0:{}s:19:\"button_accent_color\";s:7:\"#ffffff\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"carousel_nav_color\";s:15:\"rgba(0,0,0,0.6)\";s:20:\"carousel_hover_color\";s:15:\"rgba(0,0,0,0.7)\";s:23:\"content_box_title_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:0:{}s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";}s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:17:\"blog_grid_columns\";i:3;s:19:\"excerpt_length_blog\";i:55;s:11:\"blog_pn_nav\";s:1:\"0\";s:15:\"blog_post_title\";s:5:\"below\";s:16:\"post_meta_author\";s:1:\"0\";s:14:\"post_meta_date\";s:1:\"0\";s:14:\"post_meta_cats\";s:1:\"0\";s:18:\"post_meta_comments\";s:1:\"0\";s:14:\"post_meta_read\";s:1:\"0\";s:24:\"portfolio_archive_layout\";s:20:\"Portfolio One Column\";s:24:\"excerpt_length_portfolio\";i:55;s:20:\"grid_pagination_type\";s:10:\"Pagination\";s:29:\"portfolio_featured_image_size\";s:7:\"cropped\";s:16:\"portfolio_pn_nav\";s:1:\"0\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:18:\"social_media_icons\";a:0:{}s:30:\"header_social_links_icon_color\";s:7:\"#bebdbd\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:14:\"sharing_tumblr\";s:1:\"1\";s:13:\"sharing_email\";s:1:\"1\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:10:\"tfes_width\";i:150;s:15:\"status_lightbox\";s:1:\"0\";s:22:\"status_lightbox_single\";s:1:\"0\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:16:\"lightbox_opacity\";d:0.90000000000000002220446049250313080847263336181640625;s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:13:\"email_address\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"Clean\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:14:\"map_zoom_level\";i:8;s:7:\"map_pin\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"0\";s:9:\"map_scale\";s:1:\"0\";s:15:\"map_zoomcontrol\";s:1:\"0\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:14:\"search_excerpt\";s:1:\"0\";s:23:\"search_results_per_page\";i:10;s:22:\"search_featured_images\";s:1:\"0\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:16:\"disable_excerpts\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"0\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:21:\"related_posts_columns\";i:5;s:28:\"related_posts_column_spacing\";i:44;s:22:\"related_posts_autoplay\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:0:\"\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"0\";s:19:\"zoom_image_rollover\";s:1:\"0\";s:20:\"title_image_rollover\";s:1:\"0\";s:19:\"cats_image_rollover\";s:1:\"0\";s:26:\"icon_circle_image_rollover\";s:1:\"0\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:17:\"form_input_height\";s:4:\"29px\";s:15:\"pw_jpeg_quality\";i:82;s:16:\"smooth_scrolling\";s:1:\"1\";s:15:\"disable_builder\";s:1:\"0\";s:27:\"disable_code_block_encoding\";s:1:\"0\";s:16:\"disable_megamenu\";s:1:\"0\";s:16:\"avada_rev_styles\";s:1:\"0\";s:22:\"avada_styles_dropdowns\";s:1:\"0\";s:15:\"use_animate_css\";s:1:\"0\";s:26:\"disable_mobile_animate_css\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"0\";s:9:\"status_yt\";s:1:\"0\";s:12:\"status_vimeo\";s:1:\"0\";s:11:\"status_gmap\";s:1:\"0\";s:12:\"status_totop\";s:1:\"0\";s:20:\"status_fusion_slider\";s:1:\"0\";s:14:\"status_eslider\";s:1:\"0\";s:18:\"status_fontawesome\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"0\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"0\";s:27:\"woocommerce_related_columns\";s:1:\"4\";s:32:\"woocommerce_archive_page_columns\";s:1:\"3\";s:26:\"woocommerce_avada_ordering\";s:1:\"0\";s:36:\"woocommerce_disable_crossfade_effect\";s:1:\"0\";s:30:\"woocommerce_enable_order_notes\";s:1:\"1\";s:28:\"woocommerce_acc_link_top_nav\";s:1:\"1\";s:19:\"disable_woo_gallery\";s:1:\"0\";}s:9:\"last_save\";i:1472502073;}','yes'),(61427,'avada_theme_version','4.0.3','yes'),(76857,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1472543942','no'),(76858,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1472500742','no'),(76862,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1472500742','no'),(76865,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1472543942','no'),(76866,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/08/pepper/\'>WordPress 4.6 “Pepper”</a> <span class=\"rss-date\">August 16, 2016</span><div class=\"rssSummary\">Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://apps.wordpress.com/2016/08/26/wordpress-for-ios-version-6-4/\'>WP Mobile Apps: WordPress for iOS: Version 6.4</a></li><li><a class=\'rsswidget\' href=\'https://apps.wordpress.com/2016/08/26/wordpress-for-android-version-5-7/\'>WP Mobile Apps: WordPress for Android: Version 5.7</a></li><li><a class=\'rsswidget\' href=\'http://heropress.com/essays/minority-amongst-minorities/\'>HeroPress: A Minority Amongst Minorities</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Google Analytics Dashboard for WP&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=google-analytics-dashboard-for-wp&amp;_wpnonce=c8eadd5a77&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Google Analytics Dashboard for WP\">(Install)</a></li></ul></div>','no'),(76869,'theme_mods_Avada','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:9:\"404_pages\";i:34;s:15:\"main_navigation\";i:35;s:14:\"top_navigation\";i:37;}}','yes'),(76870,'avada_migrations','a:1:{i:400;a:2:{s:7:\"started\";b:1;s:8:\"finished\";b:1;}}','yes'),(77146,'_site_transient_timeout_avada_patches','1472506286','no'),(77147,'_site_transient_avada_patches','O:8:\"stdClass\":26:{s:6:\"410251\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Aug. 12, 2016\";s:11:\"description\";s:71:\"<p>Performance upgrade for some transient queries in the database.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:32:\"includes/class-avada-upgrade.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzIwMDBkMjk4MDI3YmYwYmViMTQyYTVhNmY5NGM0MzAwL3Jhdy8xNzc2M2QyYzFmZWE1ZWE3ZDJjZDk5MGQzY2NmN2Y1ZTc0MDI4MWE2L2NsYXNzLWF2YWRhLXVwZ3JhZGUucGhw\";}}}s:6:\"409547\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Aug. 3, 2016\";s:11:\"description\";s:98:\"<p>Another needed update and fix for the twitter widget to reflect  new Twitter API changes.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:39:\"includes/class-fusion-widget-tweets.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzFlNmY4OTg4YzY0NTY4MTc3YTI3OWM5OWQzMWQ5NDM2L3Jhdy9lMWU1MWM3ZDhmMGYwYjZiMzFmZjAxOWQ0ODdhMTI2N2ZjM2IxYTA2L2NsYXNzLWZ1c2lvbi13aWRnZXQtdHdlZXRzLnBocA==\";}}}s:6:\"408450\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Jul. 20, 2016\";s:11:\"description\";s:69:\"<p>Fixes warning for out of date WooCommerce template overrides.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:44:\"woocommerce/single-product/product-image.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzL2QxN2JiNzM0NWI1NjU5YTFiZTFiODdjNjllMTI3MjgxL3Jhdy9lZDM1NjcxMGEwMGU0OGZmNTUyYjVmOGY4ZTZhOGFjYTE2NzJjZDhiL3Byb2R1Y3QtaW1hZ2UucGhw\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:49:\"woocommerce/single-product/product-thumbnails.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzL2YwOWVhMzNlMjE0OWE2ODJhYWE2YzhjMmE3ZDQwZGY3L3Jhdy80ZDZlZDM1ZjA5OTBiYjg1ZjgwZWFiYTU1Y2E5MzVhN2Y3MDZjNzcwL3Byb2R1Y3QtdGh1bWJuYWlscy5waHA=\";}}}s:6:\"408051\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Jul. 14, 2016\";s:11:\"description\";s:86:\"<p>Fixes issues and adjusts the twitter widget to the new API changes of Twitter.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:39:\"includes/class-fusion-widget-tweets.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzFlNmY4OTg4YzY0NTY4MTc3YTI3OWM5OWQzMWQ5NDM2L3Jhdy9lMWU1MWM3ZDhmMGYwYjZiMzFmZjAxOWQ0ODdhMTI2N2ZjM2IxYTA2L2NsYXNzLWZ1c2lvbi13aWRnZXQtdHdlZXRzLnBocA==\";}}}s:6:\"406523\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Jun. 23, 2016\";s:11:\"description\";s:157:\"<p>Google now requires an API key for maps to display. This patch creates an option in theme options > contact form > google maps to create the API key.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:32:\"includes/class-avada-scripts.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzlmODgzOTcyZTc4NDc0YWU5MWE4Y2YxZGQyMDdmYjhlL3Jhdy84MTA0NGQ5ODgxYjdlYzFjNTFlZjZkZjMzMTcxNThkOWI1NTFlZTgyL2NsYXNzLWF2YWRhLXNjcmlwdHMucGhw\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:28:\"includes/options/contact.php\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzcxN2QxZTgzM2QyZTU0OGMzMmE2YWUzMjRkZDEzZGY0L3Jhdy9iMmY3ODVhMTZmMGIxMzFkZTQ2ODg1ZGJmNjM3MDZhYmI2MWZjZWRlL2NvbnRhY3QucGhw\";}}}s:6:\"405872\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Jun. 14, 2016\";s:11:\"description\";s:62:\"<p>Fixes WooCommerce product category shortcode ordering.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:23:\"includes/woo-config.php\";s:9:\"reference\";s:168:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzJmNmRhYzBkNWEwYTNjZjUxYzZhZTgzOTY4M2FmZjAwL3Jhdy81MjFjMzg5ZTY2MWEyYTgzNDhiMjBiYzBjMDhiNzU2YzM2YjUxYzIwL3dvby1jb25maWcucGhw\";}}}s:6:\"405775\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Jun. 13, 2016\";s:11:\"description\";s:67:\"<p>Fixes the cross sells section on the WooCommerce cart page.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:26:\"assets/css/woocommerce.css\";s:9:\"reference\";s:172:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzcxY2I4NjU3NTUwMWZjMDcwM2Q3YWUwNjJlMGEzYWUyL3Jhdy81NTBkNmU4ZDAzMzA0MzVhODhmZDcwYjkzNWRlZjUyODUxNGFjZGQwL3dvb2NvbW1lcmNlLmNzcw==\";}}}s:6:\"405680\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Jun. 9, 2016\";s:11:\"description\";s:37:\"<p>Fixes missing Instagram icon.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:9:\"style.css\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzM4N2EyZTQzZjkwNTQwM2QxNjliNGQ1MGFlNDllY2E2L3Jhdy8yNjhhZDRlMmJhNzExNzZhYzI1YTU4ZTAyOGUzYmQyY2QwZWIyNTRmL3N0eWxlLmNzcw==\";}}}s:6:\"405598\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Jun. 9, 2016\";s:11:\"description\";s:66:\"<p>Fixes header v6 menu not being correct on webkit browsers.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.3\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.3\";s:4:\"path\";s:9:\"style.css\";s:9:\"reference\";s:164:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzRiNGZmMmYzMTlkNDQ1MWUxNzVkNTM1NzEwYjg5M2ZlL3Jhdy8xMjY2ZTkyMjBiMWRmYTdiN2U4YjFkZjQyZDc0ZWU4MTNhY2EzOWEyL3N0eWxlLmNzcw==\";}}}s:6:\"404654\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"May. 24, 2016\";s:11:\"description\";s:75:\"<p>Fixes google font char subset loading issue (updated patch version)</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:65:\"includes/avadaredux/custom-fields/typography/field_typography.php\";s:9:\"reference\";s:188:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzL2M2ZmI0MDAxMjYwZjU4ZWI5Nzc0MWI0MDJiOTc1ZTc1L3Jhdy9hMDlkYmI2OGJlODJlNTg0MDIzNTkyMDA4NWRjYzkxNTIzYjhjMWQ2L2ZpZWxkX3R5cG9ncmFwaHkucGhw\";}}}s:6:\"403984\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"May. 12, 2016\";s:11:\"description\";s:166:\"<p>FIX: Theme Options not saved to all languages when using WPML with current language set to &#8220;all&#8221; &#038; main language other than &#8220;en&#8221;.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:46:\"includes/avadaredux/class-avada-avadaredux.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9hMzdkZDgyODUwODQ4ZDE0YTI3MjZjYTUwYzkxMGQ1NS9yYXcvMDU1OWI3ZWEyY2FlMDY4ZWNjMzg0N2EyNzNjNDQxZDgzNjMyNDlmZC9jbGFzcy1hdmFkYS1hdmFkYXJlZHV4LnBocA==\";}}}s:6:\"403965\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"May. 12, 2016\";s:11:\"description\";s:67:\"<p>Fixes Google Maps not working due to error with infobox JS.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:27:\"assets/js/infobox_packed.js\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzhmN2JmMmUwMzNhMmY0YjJlYTYxODU2M2Q0YjU5MjIzL3Jhdy9iNDkzNzI2M2VlZTc5MTk2MjU4MDY1YTU1NGExNWU0NTdmNTg4ZTUxL2luZm9ib3hfcGFja2VkLmpz\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:32:\"includes/class-avada-scripts.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzL2I3ODZiNmQwMTc3NDdkMjE5NmUwNzNhMWMwOWM4MzUxL3Jhdy85MjViM2MyNzFiMDJmYWZiNDJhYzJkY2VmYWI0ZmNhYzRmMjkzYWE4L2NsYXNzLWF2YWRhLXNjcmlwdHMucGhw\";}}}s:6:\"403963\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"May. 12, 2016\";s:11:\"description\";s:93:\"<p>Fix: WooCommerce product variation showing quantity even when only sold individually.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:71:\"woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php\";s:9:\"reference\";s:208:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNzQzMDA3ZTY5YjBmZjE0YjdiYjhiYTE2YmFiZDBmZi9yYXcvZGU1OGI3YWVkOTBjNDg3ZjZjNTY0YzdlNTc3NjMxMDNmNTNlOGQxNi92YXJpYXRpb24tYWRkLXRvLWNhcnQtYnV0dG9uLnBocA==\";}}}s:6:\"403897\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"May. 11, 2016\";s:11:\"description\";s:77:\"<p>Fix color calculation for the header background color &#038; opacity.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:24:\"includes/dynamic_css.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9lZTUwNmM3MDY1NjkyMzc5YmU1ZGQ0MDA1ZmI2MzhiNC9yYXcvZTkzZWMwMDFmZTkxODAxZmJiMDc1NDA3NTAxYjZhMzIwZGYwNTFhOC9keW5hbWljX2Nzcy5waHA=\";}}}s:6:\"403662\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"May. 9, 2016\";s:11:\"description\";s:72:\"<p>Fixes blurry grid images and improves responsive images overall.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:3:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:13:\"functions.php\";s:9:\"reference\";s:168:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2ZkMDUzYzE5M2I2Njk0YWFmYTYxMzUxMzk5ZTdhM2JhL3Jhdy9jODdlMmFkMDkzMGZlMTViOTQ0Mjg0NjI3MzNhZjkzMDAwMTdmZjkzL2Z1bmN0aW9ucy5waHA=\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:31:\"includes/class-avada-layout.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzJkYzIzMmM4ZGMwNmE4NWYyODA1NGFlYzcwZWFjNDM3L3Jhdy9iY2M5NjU5OTM4ZDA1NWRlYWY2YjI5MzUzNzc3NTdkOTllMWU2MGM2L2NsYXNzLWF2YWRhLWxheW91dC5waHA=\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:31:\"includes/class-avada-images.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzllNDBmMWJiYTU2NjM5OTMyMjNiNDhjNjI2YWIxZmJkL3Jhdy84NzFlODBjNGVjODMyNmRiMjQwMjVhM2Y0Njk2NjE1ZTY0OGM5ZTlhL2NsYXNzLWF2YWRhLWltYWdlcy5waHA=\";}}}s:6:\"403532\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"May. 6, 2016\";s:11:\"description\";s:83:\"<p>Adds Facebook App ID to the Facebook Page widget to make all features work.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:46:\"includes/class-fusion-widget-facebook-page.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2JkYjQ0MTI5Njk5ZjQxMTg5NWUzN2MwMTdlZWYwYjg2L3Jhdy8wZDMzZGQxMzU0MDAyNDY0ZTFiMThjOTE1YTJlMmIwMzk4NTQwMGFlL2NsYXNzLWZ1c2lvbi13aWRnZXQtZmFjZWJvb2stcGFnZS5waHA=\";}}}s:6:\"403404\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"May. 4, 2016\";s:11:\"description\";s:81:\"<p>Fixes anchor link scrolling not working if anchor is on a different page.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:18:\"assets/js/theme.js\";s:9:\"reference\";s:160:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzU1YTY1NDM0NTFiNzg3NDMyMTJmODkwYjUwN2M0ZGZmL3Jhdy80YTg3MmE2ZWUwMThiZDRmZjI3ZWJmOTNkZTJhZTQ3NzQwZDZkMmMyL3RoZW1lLmpz\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:21:\"assets/js/main.min.js\";s:9:\"reference\";s:164:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzAxYTJlMDM3OGEzYzdiODc0ODNlYWFhNjE2NWYzYTExL3Jhdy82ZjlhMTIxMzRjNTFmZGY2MjllYzgyOTdlMmE3ZDNkOTQ0MGQ0YWUxL21haW4ubWluLmpz\";}}}s:6:\"403197\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"May. 2, 2016\";s:11:\"description\";s:90:\"<p>Fixes buddyPress theme option sidebar settings not always being applied correctly.</p>\n\";s:8:\"versions\";a:3:{i:0;s:5:\"4.0.2\";i:1;s:5:\"4.0.1\";i:2;s:3:\"4.0\";}s:5:\"patch\";a:3:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:33:\"includes/class-avada-template.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzM3MTVmMzYzYzU5ZTk0M2U4YjQwYTgyYjg3ZDdiYmY2L3Jhdy80ZDkzOTU0MTIyNDk3NTdjNzVjYzA0NjU3MjhlZmMzYjE2MTU4ZTA3L2NsYXNzLWF2YWRhLXRlbXBsYXRlLnBocA==\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:33:\"includes/class-avada-template.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzM3MTVmMzYzYzU5ZTk0M2U4YjQwYTgyYjg3ZDdiYmY2L3Jhdy80ZDkzOTU0MTIyNDk3NTdjNzVjYzA0NjU3MjhlZmMzYjE2MTU4ZTA3L2NsYXNzLWF2YWRhLXRlbXBsYXRlLnBocA==\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:33:\"includes/class-avada-template.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzM3MTVmMzYzYzU5ZTk0M2U4YjQwYTgyYjg3ZDdiYmY2L3Jhdy80ZDkzOTU0MTIyNDk3NTdjNzVjYzA0NjU3MjhlZmMzYjE2MTU4ZTA3L2NsYXNzLWF2YWRhLXRlbXBsYXRlLnBocA==\";}}}s:6:\"403159\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"May. 2, 2016\";s:11:\"description\";s:92:\"<p>Fixes standard fonts falling back to browser default in webkit and revslider arrows.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.2\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.2\";s:4:\"path\";s:32:\"includes/dynamic_css_helpers.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzQyOTg0YTdlNmY3ZDQ4MWQyYzI2YjA0ZWJmMGY5ZGQyL3Jhdy9lZWFjMTQwMTdhMWI2NTc1NmRkNzk2MjA3YzZiZTFjZDM5OGI5YTZkL2R5bmFtaWNfY3NzX2hlbHBlcnMucGhw\";}}}s:6:\"402628\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 25, 2016\";s:11:\"description\";s:56:\"<p>Fixes WooCommerce product variation description.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"4.0.1\";}s:5:\"patch\";a:5:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:26:\"assets/css/woocommerce.css\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzkwNTRiNWUwODk0M2ZlNTEwY2IzZjYxNzY1OGE4YWM2L3Jhdy83YTRhMDhiNWJkOWQ2MzA4M2E5MDNkZTI2MDJhZmNlMDQ1Y2IwNDdkL3dvb2NvbW1lcmNlLmNzcw==\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:30:\"assets/js/avada-woocommerce.js\";s:9:\"reference\";s:188:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzdhMWZkODgxMjhkYmEzNDZhOTEwYWMzODI0YTExY2YxL3Jhdy81Y2MxMDlkMzIwZDczNWNkZTZkMDNiMmFkNGNiMzkyMWQwZmJkNzU5L2F2YWRhLXdvb2NvbW1lcmNlLmpz\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:17:\"assets/js/main.js\";s:9:\"reference\";s:172:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzL2Y0NWFiMDc1OGM5NzllM2U2YzhjYjIzNTJhZDM3ZjdjL3Jhdy9kZGM5ZjQ1Y2Q3ZGQ1ZjdlN2ExZTU3NzZkNjJiZjc0YmZmYzkzNjhiL21haW4uanM=\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:21:\"assets/js/main.min.js\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzBlZmU1OTM5NGNmNjkxZDQyNDQxZjJlNjVlZmU1NzA5L3Jhdy9jODVmMzQ0MmZkZmI3Y2VlYzZiZTllNjI1YTRkOWM2NzgxNGU5YmZkL21haW4ubWluLmpz\";}i:4;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:34:\"assets/less/theme/woocommerce.less\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9taWtrYTIzLzNhMTRjYTQwZTg3NTJkNGYzMGFhYjg0MDc1MmYxYTNhL3Jhdy9iMTMxMjc1YjZiM2IzNjkzOGUxN2FlZmUwNDcyOGY3MDUxYzQwZTVjL3dvb2NvbW1lcmNlLmxlc3M=\";}}}s:6:\"402423\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 22, 2016\";s:11:\"description\";s:77:\"<p>Fixes portfolio items per page option set to 0 not showing all posts.</p>\n\";s:8:\"versions\";a:2:{i:0;s:3:\"4.0\";i:1;s:5:\"4.0.1\";}s:5:\"patch\";a:4:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:30:\"templates/portfolio-layout.php\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2VhNDc5OTAwZTI0NzU4ODliYmNmMmE0ZGI4YmIzMGM4L3Jhdy9mYjRjODgwMTQ2OTU5N2FlYzAyMTM3MjU0NTFkZGU4NjBiNDlhZTk3L3BvcnRmb2xpby1sYXlvdXQucGhw\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:30:\"templates/portfolio-layout.php\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2VhNDc5OTAwZTI0NzU4ODliYmNmMmE0ZGI4YmIzMGM4L3Jhdy9mYjRjODgwMTQ2OTU5N2FlYzAyMTM3MjU0NTFkZGU4NjBiNDlhZTk3L3BvcnRmb2xpby1sYXlvdXQucGhw\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:34:\"includes/class-avada-portfolio.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzUwZjI2MTA3YzQ0YWVhZDQ3Y2MzYzYxMzg3OTRmYWUzL3Jhdy9jOWFjNWU5MjU1NmJhNWQxODc1MTdiMjUxYjY2N2RiZTU5ZjdiYWQyL2NsYXNzLWF2YWRhLXBvcnRmb2xpby5waHA=\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:34:\"includes/class-avada-portfolio.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzUwZjI2MTA3YzQ0YWVhZDQ3Y2MzYzYxMzg3OTRmYWUzL3Jhdy9jOWFjNWU5MjU1NmJhNWQxODc1MTdiMjUxYjY2N2RiZTU5ZjdiYWQyL2NsYXNzLWF2YWRhLXBvcnRmb2xpby5waHA=\";}}}s:6:\"402367\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 21, 2016\";s:11:\"description\";s:80:\"<p>Fixes site performance issue when WPML string translation addon is used.</p>\n\";s:8:\"versions\";a:2:{i:0;s:3:\"4.0\";i:1;s:5:\"4.0.1\";}s:5:\"patch\";a:6:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:36:\"includes/redux/class-avada-redux.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvNzMxMWVjZjBjZDI2ODRhODI3YzBkNDgzOGFiY2RkZDlkZDYzYmQzNS9jbGFzcy1hdmFkYS1yZWR1eC5waHA=\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:46:\"includes/avadaredux/class-avada-avadaredux.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2Y4ZGMzMzE1YmQ2OWM2YTMwMGI4MDFjYzNkMjY2NjgxL3Jhdy8zMzNkNzY4MDA3NTNhM2RhZWE2OTk2NTYxNmU3YzZkYzEzMzEwYWM2L2NsYXNzLWF2YWRhLWF2YWRhcmVkdXgucGhw\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:37:\"includes/class-avada-multilingual.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS1tdWx0aWxpbmd1YWwucGhw\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:37:\"includes/class-avada-multilingual.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS1tdWx0aWxpbmd1YWwucGhw\";}i:4;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:24:\"includes/class-avada.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS5waHA=\";}i:5;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:24:\"includes/class-avada.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS5waHA=\";}}}s:6:\"402250\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 20, 2016\";s:11:\"description\";s:110:\"<p>Fixes WPML/PolyLang saving options to all languages when current language is set to &#8216;all&#8217;.</p>\n\";s:8:\"versions\";a:2:{i:0;s:3:\"4.0\";i:1;s:5:\"4.0.1\";}s:5:\"patch\";a:6:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:36:\"includes/redux/class-avada-redux.php\";s:9:\"reference\";s:192:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvNzMxMWVjZjBjZDI2ODRhODI3YzBkNDgzOGFiY2RkZDlkZDYzYmQzNS9jbGFzcy1hdmFkYS1yZWR1eC5waHA=\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:46:\"includes/avadaredux/class-avada-avadaredux.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2Y4ZGMzMzE1YmQ2OWM2YTMwMGI4MDFjYzNkMjY2NjgxL3Jhdy8zMzNkNzY4MDA3NTNhM2RhZWE2OTk2NTYxNmU3YzZkYzEzMzEwYWM2L2NsYXNzLWF2YWRhLWF2YWRhcmVkdXgucGhw\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:37:\"includes/class-avada-multilingual.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS1tdWx0aWxpbmd1YWwucGhw\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:37:\"includes/class-avada-multilingual.php\";s:9:\"reference\";s:200:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS1tdWx0aWxpbmd1YWwucGhw\";}i:4;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:24:\"includes/class-avada.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS5waHA=\";}i:5;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:24:\"includes/class-avada.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC9mNDQwYjFlMjYwM2Y0ZjIxMWZkNjJhZWZiM2FkMGNmNy9yYXcvMGFjNTFhYzc1MjBiNjFlODY2YWI5NGU2NGVhYjNiNmMyMjRmOGNkOS9jbGFzcy1hdmFkYS5waHA=\";}}}s:6:\"402147\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 19, 2016\";s:11:\"description\";s:52:\"<p>Fixes lightbox slideshow videos not showing.</p>\n\";s:8:\"versions\";O:8:\"stdClass\":2:{s:1:\"0\";s:5:\"4.0.1\";s:1:\"2\";s:3:\"4.0\";}s:5:\"patch\";a:4:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:32:\"includes/class-avada-scripts.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzk5ZjdiNmUzY2I3OTRkM2UxYzkxMTNhZDRjNDk3ZDMxL3Jhdy8zOTM2NGYyNjU4MzM3NzhmZTQwZjAzYmFjYjMwZmZjZjQwYjQ1M2VhL2NsYXNzLWF2YWRhLXNjcmlwdHMucGhw\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:46:\"includes/avadaredux/class-avada-avadaredux.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzg2M2U5NDNmNzA4NmViMDQzMDVlZWY2NGY3MzU2YzQzL3Jhdy81Y2QzMGFkMTcxODk2ZDhhYTA0N2U1NjZhZTFjNzIyNjllYjA3ZGIzL2NsYXNzLWF2YWRhLWF2YWRhcmVkdXgucGhw\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:32:\"includes/class-avada-scripts.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzk5ZjdiNmUzY2I3OTRkM2UxYzkxMTNhZDRjNDk3ZDMxL3Jhdy8zOTM2NGYyNjU4MzM3NzhmZTQwZjAzYmFjYjMwZmZjZjQwYjQ1M2VhL2NsYXNzLWF2YWRhLXNjcmlwdHMucGhw\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:46:\"includes/avadaredux/class-avada-avadaredux.php\";s:9:\"reference\";s:184:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzg2M2U5NDNmNzA4NmViMDQzMDVlZWY2NGY3MzU2YzQzL3Jhdy81Y2QzMGFkMTcxODk2ZDhhYTA0N2U1NjZhZTFjNzIyNjllYjA3ZGIzL2NsYXNzLWF2YWRhLWF2YWRhcmVkdXgucGhw\";}}}s:6:\"402141\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 19, 2016\";s:11:\"description\";s:58:\"<p>Fixes PHP notices when using recent works element.</p>\n\";s:8:\"versions\";O:8:\"stdClass\":2:{s:1:\"0\";s:5:\"4.0.1\";s:1:\"2\";s:3:\"4.0\";}s:5:\"patch\";a:4:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:31:\"includes/class-avada-images.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2RiNTQ4MDU1OTJiYmE2Yjg4YmQyMDRkM2NmMTA3ODVhL3Jhdy9lNjE0ZTcyNDExMjFkMGQ0YzY4ZTZmOWI1ZGQ4NTNmMGRmMjk4ZmE0L2NsYXNzLWF2YWRhLWltYWdlcy5waHA=\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"4.0.1\";s:4:\"path\";s:28:\"includes/avada-functions.php\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzgwNzQ4MDFiMjc5MjE3NjFkODY4MzJkNDg0ODYzODRjL3Jhdy9iNGE4ZTRmNGUzODdkYzRiZTYwMTBkMzEzNDdhNDI4ZGIyYzUzNzhjL2F2YWRhLWZ1bmN0aW9ucy5waHA=\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:31:\"includes/class-avada-images.php\";s:9:\"reference\";s:180:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwL2RiNTQ4MDU1OTJiYmE2Yjg4YmQyMDRkM2NmMTA3ODVhL3Jhdy9lNjE0ZTcyNDExMjFkMGQ0YzY4ZTZmOWI1ZGQ4NTNmMGRmMjk4ZmE0L2NsYXNzLWF2YWRhLWltYWdlcy5waHA=\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:3:\"4.0\";s:4:\"path\";s:28:\"includes/avada-functions.php\";s:9:\"reference\";s:176:\"aHR0cHM6Ly9naXN0LmdpdGh1Yi5jb20vbWF4aW11czgwLzgwNzQ4MDFiMjc5MjE3NjFkODY4MzJkNDg0ODYzODRjL3Jhdy9iNGE4ZTRmNGUzODdkYzRiZTYwMTBkMzEzNDdhNDI4ZGIyYzUzNzhjL2F2YWRhLWZ1bmN0aW9ucy5waHA=\";}}}s:6:\"402122\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Apr. 19, 2016\";s:11:\"description\";s:74:\"<p>Fixes Woo featured products element SHOWING non-featured products.</p>\n\";s:8:\"versions\";a:2:{i:0;s:5:\"4.0.1\";i:1;s:3:\"4.0\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:11:\"fusion-core\";s:7:\"version\";s:5:\"2.0.1\";s:4:\"path\";s:49:\"shortcodes/class-woo-featured-products-slider.php\";s:9:\"reference\";s:216:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC81YjNiZDk4OWFiNGZlMjE1NjMxNTc2NDkxZDdlYjFiYS9yYXcvZWIxNGU0NjdlOGE3ZGVlMThjMmYyOGUxODE0MTZkMDcwYjJkMjZkYy9jbGFzcy13b28tZmVhdHVyZWQtcHJvZHVjdHMtc2xpZGVyLnBocA==\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:11:\"fusion-core\";s:7:\"version\";s:3:\"2.0\";s:4:\"path\";s:49:\"shortcodes/class-woo-featured-products-slider.php\";s:9:\"reference\";s:216:\"aHR0cHM6Ly9naXN0LmdpdGh1YnVzZXJjb250ZW50LmNvbS9hcmlzdGF0aC81YjNiZDk4OWFiNGZlMjE1NjMxNTc2NDkxZDdlYjFiYS9yYXcvZWIxNGU0NjdlOGE3ZGVlMThjMmYyOGUxODE0MTZkMDcwYjJkMjZkYy9jbGFzcy13b28tZmVhdHVyZWQtcHJvZHVjdHMtc2xpZGVyLnBocA==\";}}}}','no'),(65117,'_transient_timeout_jetpack_https_test_message','1472587137','no'),(65118,'_transient_jetpack_https_test_message','','no'),(65120,'fcbkbttn_options','a:24:{s:21:\"plugin_option_version\";s:4:\"2.50\";s:23:\"display_settings_notice\";i:0;s:13:\"first_install\";i:1460064638;s:22:\"suggest_feature_banner\";i:1;s:4:\"link\";s:14:\"FreeReinCenter\";s:7:\"my_page\";i:0;s:4:\"like\";i:1;s:13:\"layout_option\";s:12:\"button_count\";s:11:\"like_action\";s:4:\"like\";s:12:\"color_scheme\";s:5:\"light\";s:5:\"share\";i:0;s:5:\"faces\";i:0;s:5:\"width\";i:450;s:5:\"where\";s:5:\"after\";s:14:\"display_option\";s:8:\"standard\";s:10:\"count_icon\";i:1;s:9:\"extention\";s:3:\"png\";s:11:\"fb_img_link\";s:100:\"http://freereincenter.com/wp-content/plugins/facebook-button-plugin/images/standard-facebook-ico.png\";s:6:\"locale\";s:5:\"en_US\";s:5:\"html5\";s:1:\"0\";s:24:\"use_multilanguage_locale\";i:0;s:19:\"display_for_excerpt\";i:0;s:20:\"hide_premium_options\";a:0:{}s:19:\"go_settings_counter\";i:1;}','yes'),(76847,'_site_transient_timeout_browser_aa7adcc5662813180f8b2225f232c91f','1473105538','no'),(76848,'_site_transient_browser_aa7adcc5662813180f8b2225f232c91f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"52.0.2743.116\";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'),(76793,'_transient_timeout_boldgrid_staging_version_data','1472514910','no'),(76794,'_transient_boldgrid_staging_version_data','O:8:\"stdClass\":4:{s:6:\"status\";i:200;s:7:\"message\";s:2:\"OK\";s:6:\"result\";O:8:\"stdClass\":1:{s:4:\"data\";O:8:\"stdClass\":15:{s:5:\"title\";s:16:\"BoldGrid Staging\";s:7:\"version\";s:3:\"1.2\";s:8:\"asset_id\";i:548421;s:12:\"release_date\";s:10:\"2016-07-22\";s:19:\"requires_wp_version\";s:3:\"4.3\";s:17:\"tested_wp_version\";s:5:\"4.5.3\";s:8:\"sections\";s:5068:\"{\"description\":\"<p>BoldGrid Staging is a standalone plugin to allow use of a staged website while keeping a live website intact during development.<\\/p>\\n\",\"installation\":\"<ol>\\n<li><p>Upload the entire boldgrid-staging folder to the \\/wp-content\\/plugins\\/ directory.<\\/p><\\/li>\\n<li><p>Activate the plugin through the Plugins menu in WordPress.<\\/p><\\/li>\\n<\\/ol>\\n\",\"changelog\":\"<h4>1.2<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-2124   Customizer\'s list of pages to add to a menu are always active pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-2134   Staging\'s boldgrid_attribution option and \'Uninitialized string offset\' Notice.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.3<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-2037   Added capability for auto-updates by BoldGrid API response.<\\/li>\\n<li>Testing:      JIRA WPB-2046   Tested on WordPress 4.5.3.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.2<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1865   Add active \\/ staging navigation to BoldGrid Inspirations Cart.<\\/li>\\n<li>Update:       JIRA WPB-1884   Passed WordPress 4.5.1 testing.<\\/li>\\n<li>Bug fix:      JIRA WPB-1863   BoldGrid Cart does not look for watermarked images used within staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1888   Staging options missing from Dashboard > Settings > Reading.<\\/li>\\n<li>Bug fix:      JIRA WPB-1887   Copy to Staging link does not have correct cursor.<\\/li>\\n<li>Bug fix:      JIRA WPB-1892   Page template not saving correctly for staged pages.<\\/li>\\n<li>Bug fix:      JIRA WPB-1898   When no menu is assigned to a location, active pages show in menu on staged site.<\\/li>\\n<li>Bug fix:      JIRA WPB-1899   Warnings and Notices thrown when using BoldGrid Inspirations start over.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1834   Delete BoldGrid Staging Attribution page when starting over.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1.0.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1816   Fixed update class interference with the Add Plugins page.<\\/li>\\n<\\/ul>\\n\\n<h4>1.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1809   Fixed undefined index \\\"action\\\" for some scenarios.  Optimized update class and addressed CodeSniffer items.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.9<\\/h4>\\n\\n<ul>\\n<li>Misc:         JIRA WPB-1361   Added license file.<\\/li>\\n<li>Bug fix:      JIRA WPB-1723   Switching between Staging and Active in the customizer loads wrong content.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.8<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1604   Updated some CSS for standards.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.7<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1634   Now does not enable staging theme on install; use the enable link.<\\/li>\\n<li>Rework:       JIRA WPB-1620   Updated require and include statements for standards.<\\/li>\\n<li>New feature:  JIRA WPB-1538   Added a way to set staging site\'s homepage.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.6<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1580   Added feedback when deploying a staged site.<\\/li>\\n<li>New feature:  JIRA WPB-1572   Added staging switch for static gridblocks<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5.1<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Fixed PHP version check condition (&lt;5.3).<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.5<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1553   Added support for <strong>DIR<\\/strong> in PHP &lt;=5.2.<\\/li>\\n<li>New feature   JIRA WPB-1542   Manage menu assignment within editor.<\\/li>\\n<li>Misc:         JIRA WPB-1468   Updated readme.txt for Tested up to: 4.4.1<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.4<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1426   When installing into staging, with active site, active widgets are overwritten..<\\/li>\\n<li>Bug fix:      JIRA WPB-1452   Upon deploying staging, new active sites lost Social Media icons.<\\/li>\\n<li>Bug fix:      JIRA WPB-1450   Staging pages show in search results when searing on the front end.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.3<\\/h4>\\n\\n<ul>\\n<li>Bug fix:      JIRA WPB-1422   Customize links showing in wrong menu...<\\/li>\\n<li>New feature   JIRA WPB-1439   Tie into Theme Framework\'s filter for creating attribution page link and fix it for Staging.<\\/li>\\n<li>Bug fix:  JIRA WPB-1428   Live Preview of staged theme throws JS error.<\\/li>\\n<li>Bug fix:      JIRA WPB-1446   Properly rename a staged page when it ends with \'-staging-(a number)\'<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.2<\\/h4>\\n\\n<ul>\\n<li>New feature:  JIRA WPB-1363   Updated readme.txt for WordPress standards.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1396   Call to action disappears when customizing staging.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1389   Setting Launched staging theme mods to allow theme to trigger activation<\\/li>\\n<\\/ul>\\n\\n<h4>1.0.1<\\/h4>\\n\\n<ul>\\n<li>Rework:                       Created class Boldgrid<em>Staging<\\/em>Dashboard_Menus and reorganized related code.<\\/li>\\n<li>Bug Fix:      JIRA WPB-1383   Fixing issue that prevented color palettes from updating on staging deploy.<\\/li>\\n<\\/ul>\\n\\n<h4>1.0<\\/h4>\\n\\n<ul>\\n<li>Initial public release.<\\/li>\\n<\\/ul>\\n\",\"upgrade_notice\":\"<h4>1.0.1<\\/h4>\\n\\n<p>Users should upgrade to version 1.0.1 to receive a fix for color palettes in staging deployment.<\\/p>\\n\"}\";s:7:\"siteurl\";s:24:\"http://www.boldgrid.com/\";s:13:\"compatibility\";s:281:\"{\"4.3.1\":{\"0.1\":[100,12],\"0.2\":[100,12],\"1.0.1\":[100,12],\"1.0.2\":[100,12],\"1.0.3\":[100,12],\"1.0.4\":[100,12],\"1.0.5.1\":[100,12],\"1.0.6\":[100,12],\"1.0.7\":[100,12],\"1.0.8\":[100,12],\"1.0.9\":[100,12],\"1.1.0.1\":[100,12],\"1.1.1\":[100,12],\"1.1.2\":[100,12],\"1.1.3\":[100,12],\"1.2\":[100,12]}}\";s:6:\"rating\";i:100;s:11:\"num_ratings\";i:100000;s:4:\"tags\";s:133:\"{\"inspiration\":\"Inspiration\",\"customization\":\"Customization\",\"build\":\"Build\",\"create\":\"Create\",\"design\":\"Design\",\"staging\":\"Staging\"}\";s:7:\"banners\";s:141:\"{\"low\":\"//repo.boldgrid.com/assets/banner-staging-banner-772x250.png\",\"high\":\"//repo.boldgrid.com/assets/banner-staging-banner-1544x500.png\"}\";s:17:\"version_downloads\";i:1312;s:9:\"downloads\";i:0;}}s:7:\"updated\";i:1472486110;}','no'),(73427,'can_compress_scripts','1','no'),(73426,'_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:57:\"https://downloads.wordpress.org/release/wordpress-4.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.6.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.6-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.6\";s:7:\"version\";s:3:\"4.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1472506334;s:15:\"version_checked\";s:3:\"4.6\";s:12:\"translations\";a:0:{}}','no'),(77133,'_transient_external_ip_address_127.0.0.1','198.46.81.24','no'),(68576,'boldgrid_staging_theme_mods_Avada','a:1:{s:18:\"nav_menu_locations\";a:0:{}}','yes'),(77132,'_transient_timeout_external_ip_address_127.0.0.1','1473108490','no'),(68589,'avada_version','4.0.3','yes'),(68590,'avada_previous_version','a:1:{i:0;b:0;}','yes'),(68592,'avada_dynamic_css_posts','a:2:{i:10709;b:1;s:6:\"global\";b:1;}','yes'),(73423,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1472506334;s:7:\"checked\";a:12:{s:9:\"800pxmock\";s:3:\"1.0\";s:16:\"800pxmock_static\";s:3:\"1.0\";s:12:\"800pxmock_v2\";s:3:\"1.0\";s:12:\"800pxmock_v3\";s:3:\"1.0\";s:5:\"Avada\";s:5:\"4.0.3\";s:12:\"twentyeleven\";s:3:\"2.5\";s:13:\"twentyfifteen\";s:3:\"1.6\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:13:\"twentysixteen\";s:3:\"1.3\";s:9:\"twentyten\";s:3:\"2.2\";s:14:\"twentythirteen\";s:3:\"2.0\";s:12:\"twentytwelve\";s:3:\"2.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(77008,'wpseo_sitemap_product_type_cache_validator','6iwka','no'),(77154,'_site_transient_timeout_theme_roots','1472508133','no'),(77155,'_site_transient_theme_roots','a:12:{s:9:\"800pxmock\";s:7:\"/themes\";s:16:\"800pxmock_static\";s:7:\"/themes\";s:12:\"800pxmock_v2\";s:7:\"/themes\";s:12:\"800pxmock_v3\";s:7:\"/themes\";s:5:\"Avada\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','no'),(73420,'jetpack_sync_settings_disable','0','yes'),(76855,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1472543942','no');
INSERT INTO `wp_options` VALUES (76856,'_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:46:\"WP Mobile Apps: WordPress for iOS: Version 6.4\";s: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:33:\"http://apps.wordpress.com/?p=3568\";s: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://apps.wordpress.com/2016/08/26/wordpress-for-ios-version-6-4/\";s: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:4716:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.4 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What&#8217;s New:</h1>\n<p><strong>iPad Keyboard Shortcuts.</strong> Press down the command key on your external keyboard to see a list of available shortcuts in the main screen and in the post editor.</p>\n\n<a href=\"https://apps.wordpress.com/img_0007/\"><img width=\"300\" height=\"225\" src=\"https://apps.files.wordpress.com/2016/08/img_0007.png?w=300&h=225\" class=\"attachment-medium size-medium\" alt=\"Hold down the command key, and see the available shortcuts.\" /></a>\n<a href=\"https://apps.wordpress.com/img_0006/\"><img width=\"300\" height=\"225\" src=\"https://apps.files.wordpress.com/2016/08/img_0006.png?w=300&h=225\" class=\"attachment-medium size-medium\" alt=\"There are many shortcuts you can use in the post editor, too.\" /></a>\n\n<p><strong>Share Media.</strong> Our sharing extension now supports media, too!</p>\n\n<a href=\"https://apps.wordpress.com/img_2385/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2385.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"Select any image and tap on the WordPress icon.\" /></a>\n<a href=\"https://apps.wordpress.com/img_2386/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2386.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"Add a message and share it to your blog!\" /></a>\n\n<p><strong>People Management.</strong> You can now manage your site&#8217;s users and roles using your mobile device.</p>\n\n<a href=\"https://apps.wordpress.com/img_2392/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2392.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"A new people management section is available.\" /></a>\n<a href=\"https://apps.wordpress.com/img_2393/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2393.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"See a list of your blog\'s users and their roles.\" /></a>\n<a href=\"https://apps.wordpress.com/img_2394/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2394.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"Tap on any person to see their details.\" /></a>\n\n<p><strong>Search in the Reader.</strong> The Reader now has search capability and autocompletes suggestions.</p>\n\n<a href=\"https://apps.wordpress.com/img_2390/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_23901.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"Tap the magnification icon on the top right corner.\" /></a>\n<a href=\"https://apps.wordpress.com/img_2389/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2389.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"Searching is easier than ever.\" /></a>\n\n<p><strong>Improved Gestures.</strong> Full screen image previews can be dismissed with a swanky flick/toss gesture.</p>\n<p><strong>Bugs Squashed.</strong> A new homemade bug spray formula has allowed us to squash <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.4+label%3A%22%5BType%5D+Bug%22\">many uninvited guests</a>.</p>\n<p><strong>And much more! </strong>You can see the full list of changes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed%20milestone%3A6.4\">here</a>.</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/claudiosmweb\">@claudiosmweb</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.5+\" target=\"_blank\">our 6.5 milestone on GitHub</a>. Until next time!</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3568&subd=apps&ref=&feed=1\" width=\"1\" height=\"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:\"Fri, 26 Aug 2016 12:27:45 +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:14:\"diegoreymendez\";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:50:\"WP Mobile Apps: WordPress for Android: Version 5.7\";s: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:33:\"http://apps.wordpress.com/?p=3535\";s: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:72:\"https://apps.wordpress.com/2016/08/26/wordpress-for-android-version-5-7/\";s: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:2814:\"<p>Hello WordPress users! <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Version 5.7 of the WordPress for Android app</a> is now available in the Google Play Store.</p>\n<h1>New &#8220;Plans&#8221; section in My Site</h1>\n<p>Starting with 5.7, you can see your current WordPress.com plan and learn more about the benefits we offer in other plans.</p>\n<p><img class=\"aligncenter wp-image-3532\" src=\"https://apps.files.wordpress.com/2016/08/screenshot-2016-08-02_15-46-12-755.png?w=600\" alt=\"screenshot-2016-08-02_15.46.12.755\" /></p>\n<h1>Manage your followers and viewers from the &#8220;People Management&#8221; screen</h1>\n<p>You&#8217;re now able to use the app to invite new Administrators, Editors, Authors or Contributors to your site, or remove unwanted followers.</p>\n<p><img class=\"aligncenter wp-image-3533\" src=\"https://apps.files.wordpress.com/2016/08/screenshot-2016-08-02_15-51-08-242.png?w=600\" alt=\"screenshot-2016-08-02_15.51.08.242\" /></p>\n<h1 id=\"other-changes\">Other Changes</h1>\n<p>Version 5.7 also comes with a few other changes and fixes:</p>\n<ul>\n<li>Reader tweaks in the Post Detail screen for tablets.</li>\n<li>Keeps the &#8220;View Site&#8221; link visible for newly created users.</li>\n<li>Fixes a rare crash when creating a new account.</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.8\">our 5.8 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/0nko\">@0nko</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/karambir252\">@karambir252</a>, <a href=\"https://github.com/khaykov\">@khaykov</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, and <a href=\"https://github.com/theck13\">@theck13</a>.</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3535&subd=apps&ref=&feed=1\" width=\"1\" height=\"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:\"Fri, 26 Aug 2016 11:33: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:6:\"Maxime\";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:40:\"HeroPress: A Minority Amongst Minorities\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1241\";s: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:\"http://heropress.com/essays/minority-amongst-minorities/\";s: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:25589:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/08/082416-Uriahs-Victor-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Time passed, and I fell more and more in love with WordPress.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A Minority Amongst Minorities\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20Minority%20Amongst%20Minorities&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fminority-amongst-minorities%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A Minority Amongst Minorities\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fminority-amongst-minorities%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fminority-amongst-minorities%2F&title=A+Minority+Amongst+Minorities\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A Minority Amongst Minorities\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/minority-amongst-minorities/&media=http://heropress.com/wp-content/uploads/2016/08/082416-Uriahs-Victor-150x150.jpg&description=A Minority Amongst Minorities\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A Minority Amongst Minorities\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/minority-amongst-minorities/\" title=\"A Minority Amongst Minorities\"></a></div><p>I’m a minority amongst minorities, but it doesn’t matter.</p>\n<h3>Let’s get to know each other</h3>\n<p>Hi, I’m Uriahs Victor and I’m a Carib &#8211; bean from the island of St. Lucia. How many Black Developers do you know in the WordPress Community? 5? 20? How many of them are from the Caribbean? How many raised up in places like this:</p>\n\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/my_childhood_home/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/my_childhood_home-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Uriahs Victor\'s childhood home, a blue house with low jungle around it\" /></a>\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/view_from_my_old_home/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/view_from_my_old_home-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"A vew from Uriahs Victor\'s childhood home, a shed and barn nestled in the jungle\" /></a>\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/neighbourhood_houses/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/neighbourhood_houses-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"A view of Uriahs Victors childhood neighborhood,, small houses surrounded by jungle\" /></a>\n\n<p>I chose to write on this topic in hopes that there’s someone else like me reading this article someday who’s living in an area where it may seem like there aren’t many career paths.</p>\n<blockquote><p>It doesn’t matter where in the world you are or your complexion; anyone could code.</p></blockquote>\n<h3>How my passion for programming began</h3>\n<p>I was fortunately raised with both parents in a community on my island called Fond St. Jacques which is a part of a bigger town called Soufriere. I grew up doing everything a typical adolescent from my community would be doing: playing football, playing cricket and going to work on my parents farm and occasionally on other farms to earn some money to burn through by drinking with friends ( don’t think about it too hard ) and partying.</p>\n<p>One day I came home to a used computer setup in my room and was extremely ecstatic with the idea that my family now owned one. I spent hours upon hours on this computer messing around with paint but mostly playing Pinball, there was no internet in my community at the time but I was very intrigued by video games, once I got my first taste of unrestricted internet access several months after; my love for video games grew, I spent time reading about them but more time playing them and at that time I had decided that I wanted to be a Game Designer.</p>\n<p>If being a Programmer from a rural community out of the Caribbean sounds different (not impossible) looking back at it now then just imagine how it sounded saying I wanted to be a Game Designer when someone asked me. I spent years with this goal set, I spent days reading about game designing but I always felt lacking, I believed there was always 1 skill Game Designers needed that I did not have and that was being able to draw/design.</p>\n<p>In 2010 life was pretty easy going, I was 15 and still had not done any piece of Web or Desktop Development coding. My Secondary schooling was going pretty good, I was always the top performing IT student so this brought me comfort as I knew I would soon be writing the “CXC” exams soon.</p>\n<h3>Everything changes</h3>\n<p>On October 28th 2010 I woke up during the night to the sound of heavy rains, I looked through one of the windows of my home at the time and saw the trees around my house swaying pretty normal, or so I thought. The morning of October 29 I woke up to the sound of friends saying “Uriahs your mom shop is gone” in our second language (French Creole), this language naturally sounds a bit harsh when used to say various things so I thought they were pulling some kind of prank on me. What I saw after heading to the balcony where my friends were changed my life.</p>\n\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/tomas2/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/tomas2-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"A neighborhood with muddy water halfway up the sides of the houses\" /></a>\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/tomas/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/tomas-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Metal infrastructure and trees sweeping a house away\" /></a>\n\n<p><em>Some Damage done to my hometown (more images could be seen by googling “<a href=\"https://www.google.com/search?q=Hurricane+Tomas+Fond+St.+Jacques+Damage&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiequDphNXOAhVDOCYKHeHrAPwQ_AUICSgC&biw=1242&bih=1510\">Hurricane Tomas Fond St. Jacques Damage</a>”</em></p>\n<p>My friends were right, my mom&#8217;s shop where she sold snacks and food items which generated most of the income for my schooling had completely vanished, no trace of it was left, like it was never there.</p>\n<blockquote><p>This storm had done so much damage that there was no way for anyone from my community to get to school</p></blockquote>\n<p>Roads were completely sliced through by water and eventually I had to move out of my community to live in Soufriere for ease of travelling to school.</p>\n<p>At age 16 I still wanted to be a Game Designer, I had spent the previous 5 years excelling in Information Technology at my Secondary school but had never done any piece of programming, the damages of Hurricane Tomas were still evident and I was still shaken up at how my life had changed, I was no longer living with my parents in my hometown, everything I would not wish for a teenager.</p>\n<p>To this day the damage done to my home town is still visible:</p>\n\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/20160816_132245/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/20160816_132245-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Building with storm damage years later\" /></a>\n<a href=\"http://heropress.com/essays/minority-amongst-minorities/20160816_132253/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/08/20160816_132253-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Building with storm damage years later\" /></a>\n\n<p><em>This is the exact same area from one of the previous images. These pictures were taken August 8th 2016 when I visited.</em></p>\n<p>In the Caribbean, at the end of your 5 years of Secondary schooling you are required to write an exam called “CXC” if you wish to pursue higher education. For my academic year we never finished our Information Technology syllabus which touched a bit on Pascal programming, so when it came to writing the Information Technology exam every category was aced, but <strong>I failed the programming section</strong>, even then I still wanted to be a Game Designer and had not yet grown any affection for coding.</p>\n<p>In 2011 I started schooling at Sir Arthur Lewis Community College (SALCC) pursuing an Associate Degree in Computer Systems Engineering which was the only option available which dealt with Technology at that college (there are only two colleges on my island). This was a 2 year degree where the first year students are introduced to both the Hardware and Software side of computing then in the second year choose the path they wish to pursue. This was also around the time I first came across WordPress while fiddling on the internet and <strong>making the mistake of not looking more into what it really was</strong>.</p>\n<h3>Technical Project</h3>\n<p>One year into my Computer Engineering program it finally came the time to choose my path in IT and of course I chose the Software path because I believed if I wanted to be a Game Designer then this was the best path. That remaining year was when I really started to build up my affection for code, there was only one course in the software path that actually dealt with any type of code to some extent called “Programming Methodology”. Programming Methodology was a course tailored to teach you the very basics of programming such as Loops, IF and ELSE statements, Variables and small exercises to help you put those into practice. This entire Programming Methodology course was done with VB6 examples in Visual Studio 2006 so <strong>I was not taught a single line of Web Development code</strong>.</p>\n<p>At this college every student who does Computer Systems Engineering is required to present a “Technical Project” in a typed and physical presentation form, it&#8217;s purpose is to show what you&#8217;ve picked up from the program over the 2 years; without receiving a pass on this Technical Project students would not be awarded their Degree and would need to redo the project until they succeeded. It may sound a bit brutal but I believe this is a good final test and I hope they don’t change this procedure.</p>\n<p>I had known about this requirement for a very long time so I decided to build a video game for my technical project, I knew I could not draw so I decided to use a RPG Maker and ponder ways I could get a pass by presenting to the graders a video game which I did not physically design any of the characters or coded them in. I eventually decided to create an Educational video game and touch on the topic of teaching through entertainment (Edutainment). There was this one course called Data Communications that students always seem to have trouble passing so I thought “Hey, maybe I should create a game showing some basics of Data Communications”.</p>\n<p>During my time learning how to use this RPG Maker and creating this game I found myself using a lot of the logic operators I had learnt about in Programming Methodology, this was all good because in my presentation I could have shown that though I used a RPG Maker, there was actually a lot of programming logic going on under the hood and that I was actually coding.</p>\n<blockquote><p>While working on this project my love for code grew, I was having fun.</p></blockquote>\n<p>By the time I had finished creating this game my passion had already broken down from Game Designing to coding. Thankfully, I was successful with the game which I called “EduCom” and was able to finish college in a perfect 2 years (woohoo!), you can download EduCom here: <a href=\"https://uriahsvictor.com/portfolio/educom-educational-video-game/\">Click here</a></p>\n<p>Fast forward a few months and there I was as an intern from college at a web agency understudying some colleagues who didn’t build desktop apps. Keep in mind that at college I had learnt VB6 to the point where I could have switched over to self-learn VB.NET and I was now sitting in a web agency learning web development, well guess what? I still loved it. I went home each day and practiced it, I used <a href=\"http://codeacademy.com\">http://codeacademy.com</a> (which now redirects to codecademy.com) to learn HTML and CSS and I was even good with jQuery at some point! Life was great, at that time getting employed by the agency was not a big deal for me, I just loved coming to work and understudying the other Developers.</p>\n<blockquote><p>A shock came to me one day when I was told that I had went to the wrong company for my internship.</p></blockquote>\n<p>I remember to this day clearly being told that I was supposed to carry out my internship at this web agency but now I was being told that I went the wrong place. I really liked where I currently was but I actually needed to leave for the company which I was registered to in the school records, <strong>I still wonder what would have happened if I had never corrected that mistake</strong>.</p>\n<p>With 2 months left out of the 3 month long internship program, I was at a new company with very little excitement in me. The silver lining came when I arrived and noticed that there was this 1 developer who was responsible for both building and maintaining desktop applications and websites, two things I really liked doing, so I quickly gravitated towards him and in no time we became friends. I was awed by him and I could safely say just like the previous guys at the web agency that he played a part in me not forgetting my true passion for coding. I say this because at this newly assigned company I became an IT Technician, doing everything Techs usually do such as fixing printers, troubleshooting WIFI networks, fixing computers and even building them too, but even after spending the day as an IT Technician I often spent the night as a Developer. <strong>I never stopped coding</strong>, I often came home fatigued from all the hands on tech work but I pushed myself through CodeCademy’s exercises, I spent time working in Visual Studio building simple apps that did nothing useful but I still liked the feeling of seeing my code come to life.</p>\n<p>At the ending of my internship I had become such a great IT Technician that I got the job. I was excited because heck, who wouldn’t be excited to get a job straight out of college in a country with high unemployment rate?</p>\n<h3>Reality Is Cruel; Immerse Yourself &#8211; Uriahs Victor</h3>\n<p>On September 3rd 2013; two weeks before my birthday was my first day officially on the job. My day was going by normal, until I got a call from my sister, crying. My father had lost his life because of a mishap while working on our family farm. It took me a while to realize what had happened, I didn&#8217;t want to believe it. Might sound strange to you, but video games again came up and helped me through.</p>\n<p><a href=\"http://heropress.com/wp-content/uploads/2016/08/custom_pc.jpg\"><img class=\"alignright wp-image-1255 size-medium\" src=\"http://heropress.com/wp-content/uploads/2016/08/custom_pc-300x225.jpg\" alt=\"Tricked out PC case with lights inside.\" width=\"300\" height=\"225\" /></a>Life went on and after one year I had grown my IT Technician skills even more, I was often tasked with building custom PCs like this.</p>\n<h3>No matter where you are at right now, don’t stop doing what you truly love.</h3>\n<p>The day came when my Developer friend at the company decided it was time for him to leave the job for greater things, and guess who offered to be the new Developer? That’s right, me. With some help from my colleague I got familiar with the different apps and websites the company had under their management, again I came across WordPress but I still did not know much about it on a coding stand point, I spent time at home getting familiar with its backend but what was more unusual to me was its code. I knew how to build static websites with HTML and CSS but I did not know much PHP at the time so I had to quickly learn a fair level of PHP to find myself around and also learn different things about WordPress such as plugins and backing up&#8230; enough to fill in my colleague’s shoes as quickly as I could before he was gone.</p>\n<h3>I am not happy at my job!</h3>\n<p>Two years into the job and things had begun to turn sour for me, I was not happy at my job. One of the main reasons was that I felt underappreciated and overlooked. Though I was the new Developer for the company they never got over the fact that I was also pretty good with computers, so I was often asked to stop whatever software related tasks I was doing to head over to some client’s business to check out a faulty computer or things of that nature. I was unhappy, I felt like I this company did not value the software side of their business nearly as much as the hardware side, couple that with the fact that I was still being paid the same salary as when I was only an IT tech, to now being in charge of the company’s software and still finding myself doing IT Technician related tasks and then being asked by my employer “Why can’t you work on the client apps at home?”, there was no overtime pay offered in my contract, so I used my nights to better myself and also to rest my mind.</p>\n<p>I was still 20 but soon to be 21 at the time and I felt overworked. Having to condition your brain to work on VB.NET apps some of which were not built by yourself requires time to be spent getting familiar with the source code, but often minutes after I would have to recondition my brain to think of reasons why a computer has a certain issue, this was like P90X on the brain, it was a daily thing and I began disliking as weeks and months went by. Time passed and things became sourer, I began contemplating my resignation; I did not like the way I was being treated and it had begun to show, I often only found joy when practicing my code at home, this late night practicing also often caused me to arrive late the next day for work which I compensated for by leaving at late hours.</p>\n<h3>If it doesn’t come bursting out of you, don’t do it.</h3>\n<p>The day came when I decided to resign from my job but something inside me said “Uriahs, give it another shot”, that voice was the bad voice, I was let go from the job the same day I planned to resign.</p>\n<h3>Is Karma real?</h3>\n<p>So there I was, a 21 year old who had no backup plan and no job applications out in the wild but I was happy. I had felt relief that I did not have to deal with working in an environment I didn’t like. I was told by my past colleagues that my replacement had come in the next day and I thought to myself that maybe this company was contemplating letting me go just as long as I was contemplating leaving (lol). Well, let’s just say this replacement only lasted 3 days on the Job then quit after messing up one of the company’s high end clients website, a news publishing website: <a href=\"http://stluciastar.com/\">http://stluciastar.com/</a> built on WordPress which I had been maintaining and making code modifications for when asked.</p>\n<p>I don’t know why the company thought it was ok to call me 3 days after letting me go, asking for my “help” in fixing whatever problem a replacement Developer (who I believe shortly quit after the incident) had done, but after consulting with the WordPress community, it was made clear to me that I should either charge for my services or decline; heck, I was unemployed and still had rent and bills to pay but I instead eventually declined.</p>\n<h3>A new beginning</h3>\n<p>Weeks went by with me just getting used to being out of an office type job to being home, I had been living alone since I had gotten the past job so I also had to get used to having less people around me. I took that time to learn more about WordPress, Udemy pricing scheme didn’t change yet so I bought myself a few WordPress Development courses for $10USD each when they came on sale, such as: WordPress Theme Development with Bootstrap by Brad Hussey, in that one course I learnt more about WordPress than I had learnt in all my time working in my last job(wut?). I began doing freelance work online and locally, there were not many other options on my island to work in software so I started questioning whether I should be sending out applications for new jobs or just do full time freelancing; I had my doubts about the few companies there were, and I actually enjoyed working from home. Time passed and I fell more and more in love with WordPress, I watched tutorials and googled away trying to pick up knowledge, the WordPress codex which I once found intimidating began to look sexy.</p>\n<p>Once I felt I had gathered enough knowledge on WordPress, I thought of a plugin idea and began working on it. I had no immediate help except for the WordPress community populating the codex with all the useful information. I spent a few weeks working none stop on this plugin which I thought did a pretty good task which was to Inform buyers of a downloadable WooCommerce product that there is an update for that product after the shop owner has marked it as updated. After completing the plugin I was ready to submit to the WordPress repository, it brought me joy when I got the e-mail letting me know that the plugin was accepted to the WordPress repository! I love open source so just having a plugin for WordPress which could at least help some people made me feel warm inside.</p>\n<h3>Pirate of the Caribbean</h3>\n<p>Around that time something equally interesting happened. I had completed a short video chat with Ionut and Sabina from <a href=\"http://themeisle.com\">ThemeIsle</a> and found out that I would be part of their WordPress support team for their themes and plugins! Obviously I was happy, I would be amongst like minded individuals, a team who appreciates WordPress as much as I do, a team I could learn from! All without needing to fly over to Romania!</p>\n<h3>Let’s have a drink</h3>\n<p>One day while performing a random Google search for my plugin I saw in the search results a link to WPTavern, I curiously clicked on the link and saw that my plugin (TLD WooCommerce Downloadable Product Update Emails) had been picked as one of the top 3 plugins of the week on WPTavern, my very first plugin and <a href=\"https://wptavern.com/wpweekly-episode-233-recap-of-wordcamp-chicago-2016\">it was mentioned on WPTavern</a>?!</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://wptavern.com/wpweekly-episode-233-recap-of-wordcamp-chicago-2016\">WPWeekly Episode 233 – Recap of WordCamp Chicago 2016</a></p></blockquote>\n<p><br />\nIn under 1 year I have achieved more than I did in the recent years. It wasn’t easy, many nights were spent awake googling away, many parties were missed so I could save and be able to pay bills. If you like something, do it!</p>\n<blockquote><p>Programming is for anyone and when I notice someone from my island or the Caribbean show interest in coding I never refrain from encouraging them.</p></blockquote>\n<p>I am currently 21 and will be 22 next month, I still have lots to learn, I still have lots to give back to the WordPress community and open-source community on a whole, I currently aid small businesses and non-profits on my Island grow their brand with WordPress. I have plugins and plugin ideas in the pipeline which I am currently not able to complete, but through learning and growing my skills I eventually will.</p>\n<p>It doesn’t matter which part of the world you grew up in, what challenges you’ve faced, nor does it matter your race, all it takes is the internet, passion, patience, practice and of course prayer.</p>\n<p>WordPress has been good to me, if it has been good to you, then helping the WordPress Community in any way possible is the best we could all do.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/minority-amongst-minorities/\">A Minority Amongst Minorities</a> appeared first on <a rel=\"nofollow\" href=\"http://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, 24 Aug 2016 12:00: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:\"Uriahs Victor\";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:52:\"Post Status: Static site generators versus 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:31:\"https://poststatus.com/?p=26180\";s: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:63:\"https://poststatus.com/static-site-generators-versus-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7124:\"<h3>The current state of affairs</h3>\n<p>In 2016, WordPress is far from the only choice for a new website. In fact, website owners have enjoyed a plethora of options (hosted and self-hosted) for many years. WordPress has remained the juggernaut solution for self-hosted websites, with 25% marketshare of the total web, and as the mainstay CMS for small-to-medium businesses with small or low budgets.</p>\n<p>Amongst two groups &#8212; large institutions that need high scalability, and the ever-tinkering developer crowd &#8212; another option is trending positively: the static site generator, also known as a flat-file CMS.</p>\n<p>Don’t get me wrong — the WordPress install base is huge, and the threat posed by static site generators is small. But it’s growing. Post Status editor Brian Krogsgard polled developers <a href=\"http://www.slideshare.net/krogsgard/the-state-of-wordpress-business\">prior to Pressnomics</a>, to assess the threat level posed by various CMSs and publishing platforms; Medium and static site generators were considered more of a threat than any others:</p>\n<p><img class=\"aligncenter size-large wp-image-26181\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-23-at-9.58.07-AM-752x234.png\" alt=\"Screen Shot 2016-08-23 at 9.58.07 AM\" width=\"752\" height=\"234\" /></p>\n<p>He also wrote in a newsletter to <a href=\"https://poststatus.com/club\">members</a> in November, 2015, “Didn’t I just mention about the appeal of static sites? I really think they’re a big top-end threat,” referring to the <a href=\"https://github.com/department-of-veterans-affairs/vets-website\">launch of vets.gov</a>. Earlier that month, Smashing Magazine christened them <a href=\"https://www.smashingmagazine.com/2015/11/modern-static-website-generators-next-big-thing/\">the next big thing</a>. A number of high profile websites use static site generators, from <a href=\"http://product.voxmedia.com/2015/7/8/8907841/introducing-autotune\">Vox Media</a> to <a href=\"http://kylerush.net/blog/meet-the-obama-campaigns-250-million-fundraising-platform/\">Barack Obama</a>.</p>\n<p>A spate of flat-file CMS options have become strong contenders: <a href=\"https://jekyllrb.com/\">GitHub’s Jekyll</a> is by far the most popular, but it’s joined by <a href=\"http://getgrav.org/\">Grav</a>, <a href=\"http://www.couchcms.com/\">Couch</a>, <a href=\"http://picocms.org/\">Pico</a>, and <a href=\"https://www.staticgen.com/\">more</a>. You can even host your static site on <a href=\"https://pages.github.com/\">GitHub Pages</a> for free, and they’re happy to let you use a custom domain.</p>\n<h3>Historical WordPress advantages</h3>\n<p>The continuing appeal of WordPress has been fourfold:</p>\n<ol>\n<li>The ability to get started very cheaply, without a monthly fee on top of hosting costs.</li>\n<li>The liberty to use a custom domain name.</li>\n<li>A robust ecosystem that provides thousands of free or inexpensive themes and plugins.</li>\n<li>One-step installation facilitated by mainstream web hosts’ embrace of WordPress.</li>\n</ol>\n<p>Since Jekyll and its ilk are mostly open-source, advantage #1 is wiped out. GitHub Pages knocks out advantage #2. WordPress retains the upper hand regarding #3 and #4. Younger projects have a long way to go before they can rival the WordPress community, and they’re still focused on serving fellow developers rather than everyday consumers. Until that changes, big web hosts won’t bother to enable ultra-easy installation.</p>\n<h3>Modern WordPress drawbacks</h3>\n<p>WordPress does have legitimate downsides, especially if you’re already a competent web developer or you’re focused on the highest levels of technical performance.</p>\n<p>Site speed is ever more important in an age of social distribution and mobile browsing, and made more difficult considering site assets and page weights seem to be constantly getting larger. WordPress can be difficult to scale for high levels of traffic, and certain site architecture decisions can get developers in trouble.</p>\n<p>High scalability and smart web performance management with WordPress requires significant development expertise or more expensive managed hosting partners, especially for complex WordPress installs; whereas the inherently static nature of static site generators makes scalability more trivial.</p>\n<p>Finally, security is a concern for some people that choose static site generators. WordPress has opportunities for user input that static site generators do not. It is also a natural target of hackers, simply due to its popularity. And static site generators are almost completely locally stored &#8212; aside from the output itself &#8212; whereas WordPress (potentially outdated, along with underlying themes and plugins) is stored on the server, more vulnerable to attacks.</p>\n<h3>Why WordPress is still winning</h3>\n<p>As I noted amongst its historical advantages, WordPress has an unparalleled ecosystem of plugins, add-ons, and extensions. (For comparison, the <a href=\"http://www.jekyll-plugins.com/\">Jekyll Plugins website</a> only lists fifty-two options at the time of writing.) It’s also relatively easy for non-technical people to install and use WordPress, in part because mainstream hosting companies put in the effort to make it easy, but even prior to such conveniences WordPress <a href=\"https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install\">boasted</a>, &#8220;the famous 5-minute install.&#8221; And static site generators are just not as powerful as traditional content management systems, especially in regard to user input.</p>\n<p>Among the static site generators, Jekyll in particular is working toward feature parity, but it will take a long time. Current ease-of-use tools like <a href=\"http://prose.io/\">Prose</a>, a content editor that integrates with GitHub, and <a href=\"http://cloudcannon.com/jekyll-gui/\">CloudCannon’s Jekyll GUI</a>, which aims to help developers collaborate with clients, are in their infancy in terms of adoption and are still finicky to use.</p>\n<p>It can be tempting to look longingly at the growing ecosystem around static site generators. It&#8217;s also easy to forget just how much you get &#8220;for free&#8221; with built-in WordPress functionality. Static site generators definitely play a role in the modern web, and can be a great choice for certain types of websites. But no static site generator signals the end for WordPress and its continuously strong community.</p>\n<h3>The future — what should you do?</h3>\n<p>Since you’re reading Post Status, it seems fair to assume that you’re part of the WordPress ecosystem, and very likely earn a living from it. Should you be panicking? No, for all the reasons I laid out.</p>\n<p>But any wise professional keeps an eye on the future of their industry. We are seeing a trend, and over time Jekyll and its siblings will gain more marketshare. It’s probably worth your time to try out a few flat-file CMS options, get familiar with how to use and customize them, and perhaps consider what WordPress itself can learn from them.</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, 23 Aug 2016 20:23: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:10:\"Sonya Mann\";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:40:\"Post Status: WordPress 4.6, “Pepper”\";s: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:31:\"https://poststatus.com/?p=26067\";s: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:44:\"https://poststatus.com/wordpress-4-6-pepper/\";s: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:14018:\"<p>WordPress 4.6, “Pepper”, <a href=\"https://wordpress.org/news/2016/08/pepper/\">has been released</a>. It’s named, as always, after a famous jazz musician, and this release is named after <a href=\"https://en.wikipedia.org/wiki/Pepper_Adams\">Park Frederick &#8220;Pepper&#8221; Adams III</a>, a baritone saxophonist and jazz composer.</p>\n<p>The Release Lead for WordPress 4.6 was <a href=\"https://dominikschilling.de/\">Dominik Schilling</a>, known often as Ocean90, and the Deputy Release Lead was <a href=\"https://www.garthmortensen.com/\">Garth Mortensen.</a> There were 272 total contributors to this release. According <a href=\"https://twitter.com/aaronjorbin/status/765631441950703617\">to Aaron Jorbin</a>, 85 of these contributors were first timers, so congratulations to all new WordPress contributors!</p>\n<p>For this release, we did a special episode of the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and me, Brian Krogsgard.</p>\n<p>In this episode, Joe and I discuss WordPress 4.6 and deep dive on a few of its features.</p>\n<p><!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/44775.mp3\">https://audio.simplecast.com/44775.mp3</a><br />\n<a href=\"https://audio.simplecast.com/44775.mp3\">Direct Download</a></p>\n<h2>About WordPress 4.6</h2>\n<p>Here’s a video overview of WordPress 4.6:</p>\n<div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://videos.files.wordpress.com/GbdhpGF3/video-25313e7f01_hd.mp4\">https://videos.files.wordpress.com/GbdhpGF3/video-25313e7f01_hd.mp4</a></div>\n<p>&nbsp;</p>\n<p>Overall, this was a planned iterative release from the beginning, with a goal to fix as many longstanding bugs as possible, and to refine existing features, rather than to focus on a lot of brand new features.</p>\n<p>Folks have been clamoring for a release like this for a long time, and in most respects 4.6 delivered. <a href=\"https://core.trac.wordpress.org/milestone/4.6\">According to Trac</a>, 489 tickets were closed, across 53 components, during the 4.6 milestone. Also, it shipped exactly on time.</p>\n<h2>User facing features</h2>\n<p>WordPress 4.6 has a few user facing features that aren&#8217;t huge functional changes, but nice interface enhancements.</p>\n<h3>Shiny updates</h3>\n<p>No more <em>bleak screen of sadness</em>, as the team working on this termed it. The plugin installation, updates, and delete process is much smoother than it used to be. There&#8217;s a nice video of this <a href=\"https://make.wordpress.org/core/2016/06/02/proposal-more-shiny-updates/\">from the initial proposal</a>:</p>\n<div class=\"wp-video\"><a href=\"https://make.wordpress.org/flow/files/2016/05/Shiny-Plugins.mp4\">https://make.wordpress.org/flow/files/2016/05/Shiny-Plugins.mp4</a></div>\n<p>&nbsp;</p>\n<p>This was the second release where &#8220;shiny updates&#8221; features were a focus. To see some under the hood considerations for developers, there&#8217;s <a href=\"https://make.wordpress.org/core/2016/07/06/shiny-updates-in-4-6/\">more information on that</a> from Pascal Birchler.</p>\n<h3>Native fonts</h3>\n<p>WordPress is leaving Open Sans, which was introduced with the &#8220;MP6&#8221; admin overhaul of <a href=\"https://poststatus.com/meet-wordpress-3-8/\">WordPress 3.8</a>. You may have seen GitHub’s recent change to native fonts. It&#8217;s definitely a trend lately. Matt Miklic <a href=\"https://make.wordpress.org/core/2016/07/07/native-fonts-in-4-6/\">explains the switch</a> from Open Sans to native system fonts in the WordPress admin.</p>\n<p>The declaration of fonts when using system fonts has a good bit of science behind it, and may be useful for those of you who wish to do something similar for your own projects. Marcin Wichary has a really interesting post <a href=\"https://medium.design/system-shock-6b1dc6d6596f#.n2idzpgry\">describing Medium&#8217;s process</a> when they made the switch.</p>\n<p>And if you&#8217;re curious, the new declaration is this:</p>\n<pre>font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", sans-serif;</pre>\n<h3>Inline link checker</h3>\n<p>WordPress will now automatically detect improperly formatted links, as you write. While this doesn&#8217;t check the validity of any properly written URL, it will ensure the URL you add in an <code>href</code> is properly formatted. So, it will catch if you accidentally type something like <code>htp://w.org</code> or <code>http:/w.org</code> and outline it in red for you to fix.</p>\n<p>If you copy and past a URL into the link editor, but don&#8217;t include <code>http://</code> at all (I do this a bunch), it auto detects and inserts it for you.</p>\n<h3>Browser content caching</h3>\n<p>Yet more efforts have been made to always ensure that you do not lose your content as you write. I followed the <a href=\"https://core.trac.wordpress.org/ticket/37025\">steps in the Trac ticket</a> to see exactly what happens here.</p>\n<p>So I typed the first sentence below, saved a draft, then typed the second paragraph:</p>\n<blockquote><p>What if I start typing and save a draft?</p>\n<p>Then start typing some more, because that&#8217;s what bloggers do. And I chill here for a few seconds, then stupidly just reload this page?</p></blockquote>\n<p>Then I reloaded the page without saving again, and got this notice:</p>\n<a href=\"https://poststatus.com/wordpress-4-6-pepper/#gallery-26067-1-slideshow\">Click to view slideshow.</a>\n<p>And just like that, the content is back, because it was saved in the browser&#8217;s local storage. Pretty cool.</p>\n<h2>Developer features</h2>\n<p>There are several important developer centric features that you should know about.</p>\n<h3>Enhanced meta data registration</h3>\n<p>This is a significant aid to the (pending) REST API meta handling, but also improves other meta data functionality. The <code>register_meta()</code> function allows developers to tell WordPress more about what specific meta data is designed to do. In WordPress 4.6, the arguments for this function have changed, enabling more information to be communicated in the third parameter, which is now an array.</p>\n<p>The <code>show_in_rest</code> key, an experimental key (until the API endpoint goes in), finally solves the issue for the REST API for knowing when to include meta data in the API&#8217;s default responses. It&#8217;s one step of a few that need to be made to better support meta for the API, but it&#8217;s a good step forward.</p>\n<p>For plugin developers not using <code>register_meta()</code>, be sure to learn more about it and the advantages, as there are quite a few. Jeremy Felt describes how to use <code>register_meta()</code> <a href=\"https://make.wordpress.org/core/2016/07/20/additional-register_meta-changes-in-4-6/\">on Make Core</a>.</p>\n<h3>Translation priorities and changes</h3>\n<p>WordPress will now default to the translations from <a href=\"https://translate.wordpress.org\">Translate.WordPress.org</a> community translations, then pull from theme or plugin translation files. A procedure called “just-in-time” translation loading will be utilized, and for plugins and themes distributed through the official repository, <code>load_plugin_textdomain()</code> and <code>load_theme_textdomain()</code> no longer need to be used.</p>\n<p>Commercial plugin authors will still largely follow the same internationalization procedures they always have.</p>\n<p>In a related note, and quite impressively, WordPress 4.6 shipped 100% translated in 50+ languages.</p>\n<h3>Resource hints</h3>\n<p>Joe helped teach me more about resource hints on the podcast, and Aaron did a much better job detailing resource hints than I could, in his <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">excellent field guide</a>:</p>\n<blockquote><p>Resource Hints is a rather new <a href=\"https://w3c.github.io/resource-hints/\">W3C specification</a> that <em>“defines the <a href=\"https://w3c.github.io/resource-hints/#dfn-dns-prefetch\"><code>dns-prefetch</code></a>, <a href=\"https://w3c.github.io/resource-hints/#dfn-preconnect\"><code>preconnect</code></a>, <a href=\"https://w3c.github.io/resource-hints/#dfn-prefetch\"><code>prefetch</code></a>, and <a href=\"https://w3c.github.io/resource-hints/#dfn-prerender\"><code>prerender</code></a> relationships of the HTML Link Element (<code>&lt;link&gt;</code>)”</em>. These can be used to assist the browser in the decision process of which origins it should connect to, and which resources it should fetch and preprocess to improve page performance.</p>\n<p>In 4.6, WordPress adds an API to register and use resource hints. The relevant ticket is <a href=\"https://core.trac.wordpress.org/ticket/34292\">#34292</a>.</p>\n<p>Developers can use the <code>wp_resource_hints</code> filter to add custom domains and URLs for <code>dns-prefetch</code>, <code>preconnect</code>, <code>prefetch</code> or <code>prerender</code>. One needs to be careful to not add too many resource hints as they could quite easily <em>negatively</em> impact performance, especially on mobile.</p></blockquote>\n<p>Resource hints can be very useful for certain situations, and it&#8217;s a technique that I personally need to explore further. Those of you doing advanced performance-driven development will surely be excited about support for this in WordPress.</p>\n<h3>Customizer APIs</h3>\n<p>The <a href=\"https://make.wordpress.org/core/2016/07/06/customize-api-changes-in-4-6/\">Customize API continues to evolve</a> and improve, and Nick Halsey walks through new developer-focused features and changes to the API for WordPress 4.6. Also quite notably, Weston Ruter describes <a href=\"https://make.wordpress.org/core/2016/07/05/customizer-apis-in-4-6-for-setting-validation-and-notifications/\">new APIs for both settings validation and notification management</a> in the customizer.</p>\n<h3>Other developer-centric changes</h3>\n<p><a href=\"https://make.wordpress.org/core/2016/07/08/multisite-focused-changes-in-4-6/\">Multisite changes</a>: Jeremy Felt describes <code>WP_Site_Query</code> and <code>WP_Network_Query</code>, and goes over a few new functions and filters.</p>\n<p>There is now a <a href=\"https://make.wordpress.org/core/2016/07/18/comments-in-4-6-can-now-be-cached-by-a-persistent-object-cache/\">persistent comment cache</a>, allowing more performant comment loading functionality. Rachel Baker, the comments component maintainer, explains further.</p>\n<p>The WordPress HTTP API <a href=\"https://make.wordpress.org/core/2016/07/27/http-api-in-4-6/\">now uses the Requests library</a>, as Ryan McCue describes.</p>\n<p>Aaron Jorbin describes some of the <a href=\"https://make.wordpress.org/core/2016/07/06/bootstrapload-updates-in-4-6/\">lower level WordPress loading priorities</a> and defaults that have changed. He also describes how WP CLI and core have reconciled their differences in <code>wp-settings.php</code>, which makes backward compatability for WP CLI possible now.</p>\n<p>Boone Gorges <a href=\"https://make.wordpress.org/core/2016/07/06/wp_term_query-in-wordpress-4-6/\">describes the introduction of <code>WP_Term_Query</code></a>. He’s the term whisperer. As Joe and I discuss in the podcast, these sorts of changes make for better consistency in WordPress, and provide an improved developer experience.</p>\n<h2>Learn more</h2>\n<p>WordPress 4.6 is the result of hundreds of community members. You can find their names and links to their profiles on <a href=\"https://wordpress.org/news/2016/08/pepper/\">the official release post</a>.</p>\n<p>Also check out the official <a href=\"https://codex.wordpress.org/Version_4.6\">4.6 Codex page</a> that has a lot of handy information and links to source Trac tickets. You can see all closed tickets from <a href=\"https://core.trac.wordpress.org/milestone/4.6\">4.6 on the Trac milestone</a>. View all new functions, classes, methods, and hooks <a href=\"https://developer.wordpress.org/reference/since/4.6.0/\">on the official Developer Reference</a>. And learn more about some of what I discuss above, and other items, on the ever-helpful <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">field guide</a>.</p>\n<p>For the record, WordPress 4.5 was downloaded more than 45 million times. You can <a href=\"https://wordpress.org/download/counter/\">track 4.6 downloads</a> on the page dedicated to the task.</p>\n<p>Thank you to everyone who contributed to WordPress 4.6! I hope you have a <img src=\"https://s.w.org/images/core/emoji/72x72/1f37a.png\" alt=\"?\" class=\"wp-smiley\" /> or <img src=\"https://s.w.org/images/core/emoji/72x72/1f37b.png\" alt=\"?\" class=\"wp-smiley\" /> to celebrate if that&#8217;s your kind of thing, or otherwise <img src=\"https://s.w.org/images/core/emoji/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" />  your efforts.</p>\n<h3>Podcast Sponsor: Prospress</h3>\n<p><a href=\"https://prospress.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Prospress</a> exists to make the world’s best eCommerce platform a little better, because they want to help entrepreneurs prosper with WordPress. They are the creators of WooCommerce Subscriptions, PayPal Digital Goods, and One Page Checkout. Check them out at <a href=\"https://prospress.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Prospress.com</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, 17 Aug 2016 17:21:07 +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:\"Brian Krogsgard\";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:41:\"HeroPress: Taking A Chance With 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:55:\"http://heropress.com/?post_type=heropress-essays&p=1228\";s: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:52:\"http://heropress.com/essays/taking-chance-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10160:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/08/081716-NevenaTomovic-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is actually for everyone, and that\'s what\'s fantastic about it.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Taking A Chance With WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Taking%20A%20Chance%20With%20WordPress&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Ftaking-chance-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Taking A Chance With WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Ftaking-chance-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Ftaking-chance-wordpress%2F&title=Taking+A+Chance+With+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Taking A Chance With WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/taking-chance-wordpress/&media=http://heropress.com/wp-content/uploads/2016/08/081716-NevenaTomovic-150x150.jpg&description=Taking A Chance With WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Taking A Chance With WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/taking-chance-wordpress/\" title=\"Taking A Chance With WordPress\"></a></div><p>My grandad always used to say “<em>živi se usput</em>”, which translates from Serbian into &#8220;<em>life happens while you are making plans</em>&#8220;. Everyone is in a rush,  planning their next weekend, holiday, career path, children…. Of course you have to exercise, stay fit, look good, relentless pressure is the way of life today. I happen to be one of those people who like making plans and setting goals. <strong>However, WordPress was never in any of my plans, I happen to stumble upon it</strong>. A friend of mine, Emma, a Cambridge philosophy graduate, who spends her time teaching circus arts, said “I stumble through life in general – I think the best people do it”. I think there is a lot of truth in this, sometimes the best things happen while you are busy making other plans. (This sounds a bit like an infomercial!)</p>\n<p>When I spoke to Topher about this essay, he said to me “<em>oh so your story is also about taking chances</em>”. I never thought of my past actions as taking chances; I am one of those people who jump with their eyes closed, rather than take small calculated steps. But, I will tell you how and why I took a chance with WordPress.</p>\n<h3>Before WordPress (BWP)</h3>\n<p>BWP starts for me 6 months ago, because I have only been a WordPresser for the second part of 2016. I am a UCL graduate, I studied Italian and German language and literature. I have always been interested in reading, art, history of art and generally interested in understanding people. I used to go to the National Art Gallery in London with my dad and we would cover an era each time talking about how art changed, how the paintings happen to catch the change in culture and belief system of society. I continued to dedicate myself to art and language throughout my academic life, I wrote my dissertation in German, on an expressionist artist Oskar Kokoschka and for my MA I translated a black comedy in Italian that looks at social strata. I went on to study and work as a conference interpreter working in all four of my languages and getting lots of opportunities to meet different and interesting people.</p>\n<p>I never imagined myself as a 60-hour-workweek girl in an office typing away on my computer. I planned my career to go a different way. I went to Italy to help create and promote a new teaching method called “edutainment”, teaching through entertainment. That’s where I was first introduced to marketing, localization and writing for an online audience.</p>\n<h3>BWP And My Sports Career</h3>\n<p>Apart from being a quintessential bookworm, I am also a covert adrenaline junkie. This actually ties in well with all of my studies. Sports and studies have one common denominator &#8211; it takes a lot of discipline for both. When I was 3 years old I started rollerblading, my mother found the smallest rollerblades (ever made) and bought them for me. I also played ice hockey in a mixed team and in 2014 we won the national championship in the UK. I am a qualified volleyball coach and ski instructor. Currently my sport obsession is with aerial gymnastics, and acro yoga. I like challenging myself both physically and mentally.</p>\n<h3>Never Stop Learning</h3>\n<p>In a recent <a href=\"https://managewp.com/tony-cecala-interview-on-wordpress-managewp-and-learning\">interview with Tony Cecala</a>, which was actually my first official interview for ManageWP, Tony said “never stop learning”, and this stuck with me, because I realized that the most important thing for me in whatever I do is to keep learning something new. At school I enjoyed learning new things, I enjoy trying out new sports and testing myself, and the same applies to work. Any job you do will have some repetitive aspect, and that is understandable, but it’s important for me to be in a position that embraces personal growth. That’s what WordPress has offered me, a combination of learning and support.</p>\n<h3>My Road To WordPress</h3>\n<p>I was first introduced to WordPress, when I moved back home to Serbia. I applied to work at <a href=\"https://managewp.com/\">ManageWP</a>, as “<em>what the hell</em>”, maybe there is a small chance they will call me back. My team lead happens to also play ice hockey and the first interview was us discussing hockey teams and player positions. Shortly after (they did test my skillset), I started working as a PR &amp; Digital Marketer. As part of the Growth team my job was to get acquainted with the WordPress community, introduce people to our product through online and offline methods, write content and establish myself as a product evangelist. I worked in our Customer Happiness Team as well, helping communicate with our customers on a daily basis.</p>\n<p>WordPress was taking a chance for me, because I never thought of myself as an IT type. My boyfriend on the other hand is a software engineer, and so instead of being enthused by his job, I was always put off. He spends hours a day in front of a computer looking at strange symbols (that’s PHP I hear). Now, ironically I can understand a large part of PHP, no thanks to my boyfriend, but to my ManageWP colleagues.</p>\n<blockquote><p>WordPress is actually for everyone, and that’s what’s fantastic about it.</p></blockquote>\n<h3>After WordPress (AWP)</h3>\n<p>Since being at ManageWP and part of the WordPress world, a lot has changed. I now have an online voice. I set up a blog, I was published on Tech.co, FishingBooker, Meks Themes, Devana Tech, Freelancermap and ManageWP. I also spoke at WordCamp Belgrade and it turned out to be one of the most popular talks of the day, I am speaking at WordCamp Split come September. On top of that I have been given an incredible opportunity to be part of the 2017 WCEU Paris organization team. WordPress has taught me how to express myself, in a non academic setting, how to become a better public speaker, and now I will learn how to help organize an event for a whooping 3 000 people. Never planned that!</p>\n<p>WordPress has also offered me security by giving me a chance to do what I am good at. I have been able to dedicate myself to research, to writing and languages. I have also been able to carry on meeting people and travelling. A country like Serbia hardly offers international work opportunities, and WordPress has opened my eyes to a new community; a community that forges friendships across the world, accepts everyone, encourages tolerance, and welcomes rookies with open arms.</p>\n<h3>AWP And More</h3>\n<p>I don’t know of many other communities out there like WordPress, it’s rare to find a place where everyone is accepted and valued. It doesn’t matter if you are a software engineer or a language nerd, there is a place for you in WordPress. (This is the second part of my infomercial!)</p>\n<blockquote><p>The biggest thing that WordPress has taught me is that sometimes in the most unlikely of places you will learn the most valuable lessons.</p></blockquote>\n<p>It means that taking a chance is always worth the risk. Perhaps I wasn’t bred for the IT world, and I am more suited to be in the same room at the National Gallery as the 17th century French paysage painter, Claude, and his English counterpart of the 19th century, Turner. It so happens that I can’t paint, but I can write, and WordPress has created a virtual room in which I fit it.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/taking-chance-wordpress/\">Taking A Chance With WordPress</a> appeared first on <a rel=\"nofollow\" href=\"http://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, 17 Aug 2016 12:00:52 +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:14:\"Nevena Tomovic\";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:73:\"WordPress.tv Blog: How to Get 100 Content Ideas in an Hour: Nicole Kohler\";s: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:31:\"http://blog.wordpress.tv/?p=571\";s: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:\"http://blog.wordpress.tv/2016/08/11/how-to-get-100-content-ideas-in-an-hour-nicole-kohler/\";s: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:1094:\"<p>If there’s one thing worse than writer’s block, it’s running out of ideas for your blog or business — or not having any to begin with. Luckily, the internet has made getting inspired an easy task, not to mention an incredibly quick one. In this talk, Nicole shares tips, tools, and content “lifehacks” you can use to generate 100 (or more!) content ideas in less time than it takes to settle on a new theme. Filmed at <a href=\"http://wordpress.tv/event/wordcamp-boston-2016/\">WordCamp Boston 2016</a></p>\n<p></p>\n<p><a href=\"http://littleyellowpenguin.com/wp-content/uploads/2016/07/WCBoston-Kohler-FINAL.pdf\">Presentation slides</a></p>\n<p>See more WordCamp videos at <a href=\"http://wordpress.tv/\">WordPress.tv</a>!</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/571/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/571/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=571&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"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, 11 Aug 2016 03:02: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:11:\"Jerry Bates\";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:37:\"HeroPress: Finding WordPress in Fargo\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1211\";s: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:52:\"http://heropress.com/essays/finding-wordpress-fargo/\";s: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:12851:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/08/081016-StaceyBartron-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It may not all pan out, but I\'m along for the ride with WordPress in my backpack & I cannot wait to see where I end up.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding WordPress in Fargo\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20WordPress%20in%20Fargo&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-fargo%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding WordPress in Fargo\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-fargo%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-fargo%2F&title=Finding+WordPress+in+Fargo\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding WordPress in Fargo\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/finding-wordpress-fargo/&media=http://heropress.com/wp-content/uploads/2016/08/081016-StaceyBartron-150x150.jpg&description=Finding WordPress in Fargo\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding WordPress in Fargo\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/finding-wordpress-fargo/\" title=\"Finding WordPress in Fargo\"></a></div><p>I am sure most of you are wondering “New phone, who dis?” when it comes to me. Okay maybe not those words exactly, but I know I am a no-name and haven&#8217;t been around very long. I haven&#8217;t created any kick ass plugins (yet), I haven&#8217;t contributed to WordPress core (yet), and I haven&#8217;t developed any themes (yet).</p>\n<p>So why was I asked to write an essay? Maybe it&#8217;s because there are a lot of people out there who are also trying to break into this community, probably somewhat introverted like me who don&#8217;t know how, or why, or what to do. No, I don&#8217;t have all the answers, I don&#8217;t have a set plan, and I am not in the position to dish out advice because I am still trying to figure it out and navigate it the best I can. But maybe, just maybe, this essay will ring true with someone who thinks, “SAMESIES.” and they know they&#8217;re not the only one out there.</p>\n<p>Or maybe it&#8217;s because I am awesome. You guys can be the judge.</p>\n<h3>Let&#8217;s get introduced</h3>\n<p>I am a shy, but not so shy girl, from the great city of Fargo, ND (No, it&#8217;s nothing like the awesome movie or TV show, don&#8217;tcha know) who started Freelancing in March 2016 after working for a local agency for two and half years.</p>\n<p>My story is probably one many have seen. Girl gets job, girl learns a lot, girl&#8217;s eyes are opened to a whole new world, girl works hard but doesn&#8217;t move up, girl applies for remote jobs with no luck, girl decides she can do this by herself, and girl leaves full time job and joins the million other freelancers in the self-employment world.</p>\n<p>Generic sounding, but there is a bit more to it.</p>\n<h3>Let&#8217;s go back in time for a quick second</h3>\n<p>It all started in my parent’s basement when I was 16. Anyone ever heard of Xanga? It was a social blogging platform that was huge in my school. I made graphics using some freeware Photoshop knock off and custom layouts using basic CSS and HTML for Xanga in my free time, because you know, that&#8217;s normal for a 16 year old girl.</p>\n<p>My parents encouraged me to go to school for graphic design at our local technical college and (blah blah blah&#8230;.let&#8217;s fast forward.) 4 years later after I graduated for Graphic Design, while I was working for a local school photography lab designing layouts for school ID cards and yearbooks, I graduated a second time after going back for Web Development and Design.</p>\n<p>I landed a job doing web design in July 2013. In the interview, they asked me if I knew what WordPress was and I answered honestly like any person would in an interview with something along the lines of, “I have heard of it but I have never used it. BUT I am a go getter and love taking on any new challenges so I don&#8217;t doubt I will be able to figure it out.” I dove in and learned a lot of the WordPress basics in a short amount of time.</p>\n<h3>A whole new world</h3>\n<p>Fast Forward to May 2014, we decided as a team to go to WordCamp Minneapolis for the first time. I am an introverted extrovert, so networking is not my thing. After I get to know people, I am good, but the first step to introduce yourself to someone is scary.</p>\n<p>After day one at WordCamp Minneapolis, my eyes were opened to a whole new world (queue Aladdin song). I didn&#8217;t know how my introverted self would do it, but I wanted to be best friends with everyone there. The WordPress community is so friendly, and so welcoming. I left feeling so inspired and wanted to go to every WordCamp that ever was. I went home with a goal of learning everything I can about WordPress.</p>\n<p>Shortly thereafter, I started to dabble in front-end development. Custom post types, short codes, page templates, etc. I looked at how the themes were created, reversed engineered them, and started to mess around with it. If I hit a bump, I researched it, and of course there was a tutorial or someone in the WordPress community had a solution. (Reason #785 why the WordPress community is fantastic, #ThoseSupportForumsTho.)</p>\n<blockquote><p>In November 2015, I started to feel this shift within myself; that I wanted to do more than I could do in my current position.</p></blockquote>\n<p>The company was going in one way and I was going the other. I wanted to grow as a designer and a developer.</p>\n<p>After a few months of indecision, wondering if I should move to Minneapolis and not hearing back from some remote positions I applied for, a former co-worker reached out to me and said she wanted to work with me. After discussing this with some friends, I had another former colleague that said they would hire me to develop their website, so the wheels started to turn in my head.</p>\n<p>Let me just say, freelancing full time was not anything I considered before. My typical response “Me? Run my own business? Say what? HAHAHA, right.” I thought of every reason why I shouldn&#8217;t do it. Lack of steady income, mortgage, self-employment taxes, not having other clients interested in working with me. I could go on and on, really.</p>\n<p>Yet there I was, considering quitting my full time job to work for myself. How else was I going to grow? How else was I going to get my name out there?</p>\n<p>I only had about a full week to decide what I wanted to do and this wasn&#8217;t an easy decision at all. After some sleepless nights and having the same conversation with my husband at least 100 times, who did nothing but encourage me while I talked myself out of it, I came to a decision.</p>\n<blockquote><p>I followed my gut instinct to grab the opportunity that was presented and go for it.</p></blockquote>\n<p>I didn&#8217;t 100% know what I was doing, but I knew I loved WordPress, I knew I had the design chops, and I knew I was great with clients. I was raised with a can-do attitude, so I was going to freelance my little heart out, and on March 5th, 2016, I entered the self-employment world.</p>\n<p>Fast forward to May 2016, I bought my ticket to WordCamp Minneapolis (because duh, it&#8217;s amazing). I then proceeded to buy my ticket to the Prestige Conference, which was taking place two days after WordCamp. I planned on going to both of these conferences by myself (and anyone who knows me on a personal level knows how much of an accomplishment this was for me). Because I was alone, WordCamp was a bit different this year. I didn&#8217;t have coworkers to talk to so I went in there with a mission to network, but my high anxiety and introverted side decided I should sit quietly and take it all in.</p>\n<p>Prestige Conference, for those who aren&#8217;t familiar, is a smaller conference and focused on running your small business. As a noobie freelancer, I needed to know how other like-minded people were running their businesses, how they were succeeding. So, there I was, a full-time freelancer for a whole 3 months, sitting in this conference with some of these big industry names. Intimidating? Yep, just a bit. The speakers left me in awe and I felt so out of my league but I was just happy to be there, learning and absorbing what everyone was saying.</p>\n<p>Topher and Cate DeRosia were also at this conference. Topher came up to me and started chatting and I quickly explained my background. He gave me some super helpful tips and resources for freelancing. I may have not emoted it, but I was elated. I made a connection. Not exactly because I was outgoing, BUT STILL, I NETWORKED!</p>\n<p>A couple weeks later, Topher contacted me to see if I was interested in making blog images for this very blog. Taken aback, but ever so grateful, I accepted. And after communicating over Twitter, Slack, and email for a couple more weeks, he asked if I wanted to write my own essay. Once again, shocked, dumbfounded, and hesitant because who would want to read my story, but after some encouragement, I was writing my essay.</p>\n<h3>Started from a basement now I&#8217;m here</h3>\n<p>So from where I started 12 years ago messing around with graphics, CSS &amp; HTML for Xanga in my parents basement in Fargo, ND, I am back in a basement, my own this time, doing pretty much the same thing. Doesn&#8217;t sound like a big upgrade, but believe me, it is.</p>\n<blockquote><p>I am sure I wouldn&#8217;t be where I am right now if I skipped out on any of the conferences I went to.</p></blockquote>\n<p>Where is my future going? Who knows. I am not a &#8216;go with a flow&#8217; person, but for the first time, I am trying to go with the flow. I am going to be going to more events and plan on going to WordCamp USA so I can take another stab at networking.</p>\n<h3>To sum it up</h3>\n<p>TL/DR version: My story may be generic, but my love for WordPress is anything but generic. Before WordPress I enjoyed doing graphic design and web design, but discovering the WordPress community helped me find that missing spark I needed. It&#8217;s helped me realize my goals and it&#8217;s helped me find my drive and ambition I didn&#8217;t know I had.</p>\n<blockquote><p>The WordPress community is a huge support system in my life and they don&#8217;t even know who the heck I am.</p></blockquote>\n<p>I can honestly say I love my job, I love working with clients, and I am damn lucky to be able to do what I do every day.</p>\n<p>It&#8217;s not all sunshine and rainbows. I still stress about everything that almost stopped me from doing this and I have my moments where I still question why I quit my full-time job. It may not pan out, it may go in a different direction, but I am along for the ride with WordPress in my backpack and I cannot wait to see where I end up.</p>\n<p><em>Special thanks to: My husband for dealing with my indecisiveness, my sister for being my cheerleader when I doubt myself, and my family for supporting my every decision, Topher for taking a couple minutes out of his day to talk to me and everything else that followed, Kelsey and the Enclave team for being my very first client, and everyone else who has supported this venture.</em></p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/finding-wordpress-fargo/\">Finding WordPress in Fargo</a> appeared first on <a rel=\"nofollow\" href=\"http://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, 10 Aug 2016 12:00: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:\"Stacey Barton\";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:74:\"Post Status: Choosing plugins, libraries, and frameworks — Draft Podcast\";s: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:31:\"https://poststatus.com/?p=25965\";s: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://poststatus.com/choosing-plugins-libraries-frameworks-draft-podcast/\";s: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:1614:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and me, Brian Krogsgard.</p>\n<p>In this episode, Joe and I discuss how we choose plugins, code libraries, and frameworks for our projects.</p>\n<a href=\"https://audio.simplecast.com/44063.mp3\">https://audio.simplecast.com/44063.mp3</a>\n<p><a href=\"https://audio.simplecast.com/44063.mp3\">Direct Download</a></p>\n<h3>Topics &amp; Links</h3>\n<ul>\n<li>How we pick plugins</li>\n<li>Analyzing a plugin on WordPress.org</li>\n<li>Using GitHub</li>\n<li>Picking libraries or drop-in frameworks</li>\n<li>Dealing with updates</li>\n<li>Differentiating between picking tools for our personal or internal projects, versus doing so for clients</li>\n</ul>\n<h3>Sponsor: WooCommerce</h3>\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a> makes the most customizable eCommerce software on the planet, and it’s the most popular too. You can build just about anything with WooCommerce. <a href=\"https://woocommerce.com/\">Try it today</a>, and thanks to the team at WooCommerce being a Post Status partner</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, 06 Aug 2016 14:57:45 +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:\"Brian Krogsgard\";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:33:\"HeroPress: The Joy of Giving Back\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1190\";s: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:44:\"http://heropress.com/essays/joy-giving-back/\";s: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:8817:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/08/080316-Juhi-Saxena-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Thanks to my mother; she has always supported me, without her I would not be here.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: The Joy of Giving Back\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Joy%20of%20Giving%20Back&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fjoy-giving-back%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Joy of Giving Back\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fjoy-giving-back%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fjoy-giving-back%2F&title=The+Joy+of+Giving+Back\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Joy of Giving Back\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/joy-giving-back/&media=http://heropress.com/wp-content/uploads/2016/08/080316-Juhi-Saxena-150x150.jpg&description=The Joy of Giving Back\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Joy of Giving Back\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/joy-giving-back/\" title=\"The Joy of Giving Back\"></a></div><p>I was born and brought up in a very small town called <a href=\"https://en.wikipedia.org/wiki/Patiyali\">Patiyali</a>. Patiyali is on the banks of the river Ganga. It is in India&#8217;s most populous state, Uttar Pradesh. Patiyali was laid back and idyllic, with no real opportunities in IT or computers. My father never wanted me to go for IT Job because I wouldn&#8217;t get chance to work near my town. He preferred I live closer home.</p>\n<p>My mother supported me and somehow she convinced my father to let me follow my dreams. Thanks to my mother; she has always supported me, without her I would not be here.</p>\n<p>In my college there was choice between Dot Net and Java, I choose Java. I have always been fan of Open Source. I loved Java, I had also started my blog on Java in my college time. After completing my MCA I had joined my first Job as a Java Developer. I did it for 1.5 years.</p>\n<p>I never wanted to quit my job as Java Developer, but I had to because of my sister health issues. Doctors said she would not survive, it was very critical time.</p>\n<h3>How I got into WordPress (Hello WordPress!)</h3>\n<p>Unemployed for 6 months, Java was still on my mind. I could not get any Job. Meantime I had started teaching. I was hopeless, I thought I would never get a chance to work in any IT company again. Then a friend, <a href=\"https://twitter.com/ankitguptaindia\">Ankit</a>, who worked in <a href=\"https://rtcamp.com/\">rtCamp</a>, a company based in Pune told me to look up WordPress and asked me to apply for a QA opening. That lucky day I got call from rtCamp and cleared my interview. Now the challenge was to convince my parents to allow me to go Pune. Pune is in Maharashtra, almost 1000 miles away from my hometown.</p>\n<p>My parents are from a smaller town, they were worried about me living alone in a big city. It was a challenge to convince them to let go.</p>\n<p>Some things they worried about:</p>\n<ul>\n<li>Place to stay: It was too tough to find a place when I had no one in Pune.</li>\n<li>Female Count: My mother was most worried about female count. rtCamp had only two female employees including me. (now they have 7)</li>\n</ul>\n<p>Before my first day, my father and I went to rtCamp&#8217;s address and looked up the office. Convinced the neighborhood where it was located was semi-residential and safe, he felt much better about Pune.</p>\n<h3>But WordPress is just a blogging platform</h3>\n<p>Before joining rtCamp I had known WordPress as only a blogging platform. My friends who worked in MNCs usually dismissed it as a blogging platform that could create only static sites at best. I did not have a very different opinion than my friends.</p>\n<p>Working in rtCamp was fun. I made friends but to be honest I did not find WordPress very interesting for the first six months in the beginning.</p>\n<h3>WordPress community called out to me</h3>\n<p>Then I saw my colleagues involved in the WordPress community as Core contributors and in many other ways. I saw how my company was encouraging people to get involved in community.</p>\n<p>That encouraged me to get involved in with <a href=\"http://make.wordpress.org\">make.WordPress.org</a>. I highly recommend you do that too.</p>\n<h3>First Contribution Core Patch</h3>\n<p>My first contribution was a small patch in the core. I was helped by colleagues and when it was accepted I was thrilled. Now something I did was on millions of websites. It might be a small line or two but still it was on millions of websites.</p>\n<p>In September 2015, I took part in WordCamp Pune. It was my first WordCamp. I met so many wonderful people; <a href=\"http://heropress.com/essays/making-family/\">Topher</a>, <a href=\"http://heropress.com/essays/breaking-the-silence/\">Mahangu</a>, <a href=\"http://heropress.com/essays/finding-hope-darkness/\">Raghavendra Satish Peri</a>, I got to learn so many new things from them.</p>\n<p>I try to contribute (Giving back to community) in every possible way, by giving support, translating, Review themes, and documentation.</p>\n<h3>Theme Review</h3>\n<p>Theme review was the challenge for me as I had no idea about WordPress development so I thought to learn by seeing other people&#8217;s code. It was challenge for me because I am QA (non- WordPress Developer), other people assume that we can not get involved in any code related activity. I learned a lot by reviewing themes, every day I review a theme I learn so many new things. The theme review team is wonderful, there are so many wonderful people like <a href=\"https://twitter.com/KevinHaig\">Kevin Archibald</a>, <a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a>, <a href=\"https://twitter.com/Kenshino\">Jon</a>, <a href=\"https://twitter.com/nilambar\">Nilambar</a>, who are ready to help you always. I am happy to be part of theme review team.</p>\n<p>I love WordPress, it&#8217;s wonderful, it has wonderful community.</p>\n<h3>Why do I love being part of WordPress?</h3>\n<p>Recognition.</p>\n<p>I have always been crazy for being known for something. In college time when I used to get likes for my blog post or any comment, I used to feel like…&#8230;wow, I can not even express that feeling in words. So that feeling WordPress gives me every time I gets mention in any WP.org posts. It gives me recognition.</p>\n<p><a href=\"https://make.wordpress.org/themes/2016/06/28/thank-you-reviewers-2/\">https://make.wordpress.org/themes/2016/06/28/thank-you-reviewers-2/</a><br />\n<a href=\"https://make.wordpress.org/docs/2016/07/12/summary-for-helphub-meeting-12-july/\">https://make.wordpress.org/docs/2016/07/12/summary-for-helphub-meeting-12-july/</a><br />\n<a href=\"http://make.wordpress.org/core/2015/09/21/week-in-core-sept-13-21-2015/\">http://make.wordpress.org/core/2015/09/21/week-in-core-sept-13-21-2015/</a><br />\n<a href=\"https://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/\">https://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/</a></p>\n<h3>A Thank You Note</h3>\n<p>All this wonderful adventure would not have been possible without someone back in Patiyali, who stood up for me and encouraged me to follow my dreams. My mother.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/joy-giving-back/\">The Joy of Giving Back</a> appeared first on <a rel=\"nofollow\" href=\"http://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, 03 Aug 2016 12:00:21 +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:11:\"Juhi Saxena\";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:50:\"Post Status: Using Kickstarter to fund open source\";s: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:31:\"https://poststatus.com/?p=25896\";s: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:55:\"https://poststatus.com/kickstarter-open-source-project/\";s: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:12695:\"<p>Open source is how we create raw ingredients for the digital economy. It&#8217;s a rough, organic, and hugely important process. In fact, open source represented $143 million <a href=\"https://medium.com/@nayafia/open-source-was-worth-at-least-143m-of-instagram-s-1b-acquisition-808bb85e4681\">of Instagram’s $1 billion acquisition</a>. Yet the role of open source as economic infrastructure <a href=\"https://medium.com/@nayafia/funding-digital-infrastructure-8b1bf8b8e4cb\">is perilous at best</a> — the next <a href=\"http://heartbleed.com/\">Heartbleed</a> could be any day. Bridges don&#8217;t collapse often, but sustainably maintained open source projects are few and far between. Unless a project has the backing of a benevolent organization, it’s all too easy to <a href=\"https://twitter.com/danielbachhuber/status/752973741781463040\">fall into a state of disrepair</a>.</p>\n<p>I do my part by volunteering several hours each week to maintain an open source project called <a href=\"https://wp-cli.org/\">WP-CLI</a>. Last November, I launched a Kickstarter project titled “<a href=\"https://www.kickstarter.com/projects/danielbachhuber/a-more-restful-wp-cli\">A more RESTful WP-CLI</a>” to provide a way for me, a <a href=\"https://handbuilt.co/\">self-employed freelancer</a>, to spend a large amount of dedicated time on WP-CLI and the <a href=\"http://v2.wp-api.org/\">WordPress REST API</a>. The funding wrapped up last month, so I thought it might be helpful to provide a retrospective on what worked, what I’d improve upon next time, and where I think this is all headed.</p>\n<h3>We all love #shipping</h3>\n<p>As a very brief summary of how I used the money:</p>\n<ul>\n<li>Over seven months, I spent 226 total hours on WP-CLI (150 of which were funded by the Kickstarter project) and 111 total hours on the WordPress REST API (92 of which were funded by the Kickstarter project).</li>\n<li>I shipped three major versions of WP-CLI, and helped with three releases of the WordPress REST API v2 plugin.</li>\n<li>In each release, I personally introduced dozens of new features to each project, fixed ten times as many bugs, provided code review, answered support questions, and revised documentation.</li>\n</ul>\n<p>There&#8217;s a <a href=\"https://wp-cli.org/restful/\">very complete project landing page</a> if you’d like to go through all of the details.</p>\n<h3>“I’d love to get paid to work on open source too”</h3>\n<p>On the surface, using Kickstarter seems like a great way to fund open source involvement: create a campaign, people give you money, and you get paid to work on your project. It&#8217;s actually fraught with challenges, though. The more appropriate way to think about using Kickstarter for open source is that you&#8217;re creating a one-time project for yourself, and have hundreds of customers to serve.</p>\n<h4>Kickstarter can help freelancers make significant open source contributions</h4>\n<p>It&#8217;s worth highlighting the single most important outcome of the crowdfunding campaign: I was able to spend dedicated time on WP-CLI and the WordPress REST API that I wouldn’t have been able to spend otherwise (or at least in such a concentrated period).</p>\n<p>As a freelancer, I evaluate every hour of my working day as either billable or non-billable. While I&#8217;m fortunate I can already spend a large amount of non-billable time as I please, at the end of the day the time I don&#8217;t spend on billable hours is money out of my pocket. Kickstarter enabled me to consider open source contributions as billable, and rationalize dedicating a large number of hours each week to the projects.</p>\n<p>In hindsight, the timing of the Kickstarter project turned out really well too. Because I didn&#8217;t have any clients when I quit my full-time job, the funds were a helpful cushion during the slow holiday period, and I had something to work on in January.</p>\n<h4>It&#8217;s important to have backers with deep pockets</h4>\n<p>Incorporating higher contribution levels, which I had primed by chatting with prospective backers in advance, meant the funding leapt forward in huge bounds. Every time one of those contributions came in, it moved the needle in a substantial way, and kept the excitement level up. This also helped keep lower level contributors engaged and willing to participate. I can’t imagine how difficult it would be to try and fund a Kickstarter exclusively on sub-$100 contributions.</p>\n<p><a href=\"https://poststatus.com/profiles/ben-welch-bolen/\">Ben Welch-Bolen</a>, who I hadn&#8217;t met until he snagged the top contribution slot, explains:</p>\n<blockquote><p>What attracted us to the WP CLI Kickstarter project was the higher pledge options that had some meaningful exposure for us to his community, and to him as a resource. Plus it was great to give back to a tool we use ourselves and follow closely.</p></blockquote>\n<p>I consider myself fortunate to have an existing audience willing to financially back my open source contributions. Because of my track record, I was able to put my own social capital on the line as collateral, to “guarantee” the project. <span class=\"pullquote alignright\">If you can’t name fifty people who would realistically fund your project, then you’ll need to have a substantial marketing budget (of time or money) to raise awareness.</span></p>\n<h4>Scope in open source is a double-edged sword</h4>\n<p>While I had an established objective for the Kickstarter, I didn’t have a clearly defined scope. This meant that some intermediate implementation details blocked later features. For instance, you can’t use <a href=\"https://github.com/wp-cli/restful\">RESTful WP-CLI</a> to manage menus, because the menu endpoints don’t yet exist in the WordPress REST API.</p>\n<p>At the same time, not having a super defined scope meant I could take the liberty to spend some of the time on what I thought was most useful. WP-CLI package management and the documentation portal essentially launched because I burned out working on the WordPress REST API.</p>\n<h4>Crowdfunding requires a certain type of personality</h4>\n<p>As far as honoring my commitments to my backers goes, I’d consider my Kickstarter a success. I did what I said I was going to do, on the schedule I communicated. I was able to do this, in part, because I’m a very meticulous person. I produce reasonably accurate estimates, keep track of how I spend my time, and over-communicate with stakeholders.</p>\n<p>If this doesn’t sound like you, then crowdfunding might not be a great fit. As a freelancer, you need to know in advance how the work will fit alongside client commitments. As a full-time employee, you need to make sure you&#8217;re capable of completing the project on nights and weekends.</p>\n<p><a href=\"https://poststatus.com/profiles/joshua-strebel/\">Josh Strebel</a>, to whom I&#8217;m thankful for a great deal of early feedback, thinks:</p>\n<blockquote><p>The open source community is primarily reputation based, WordPress especially. Getting a campaign funded on Kickstarter is about trust. Trust and reputation are shades of the same color so to speak. If you build a reputation of trust, launching and promoting a Kickstarter project should be fairly easy as your peers trust you to execute against your stated goals (their money is used for it’s stated intent and appears to achieve the desired outcome). I do not think you can reverse the order, the reputation in the community must be cultivated prior to seeking funds.</p></blockquote>\n<p>One huge challenge with a Kickstarter project is that you have to do all of the work after you receive the money, which can be really difficult for procrastinators. <span class=\"pullquote alignright\">You&#8217;re also faced with dozens of stakeholders to make happy, with your credibility and reputation on the line, so you need to make sure they’re regularly kept in the loop.</span></p>\n<h4>Most of what goes into open source isn’t very sexy</h4>\n<p>Contributing to open source isn’t just cranking out lines of code.</p>\n<p>I spent a huge amount of the funded WordPress REST API time on discussion, code review, and support. These maintenance tasks aren’t very appealing for crowdfunding, and probably wouldn’t make it very far as a part of a Kickstarter project. People want to fund sexy new features, not bug fixes, maintenance, documentation, etc.</p>\n<p>At the same time, this type of work is hugely expensive, and represents a substantial majority of the effort involved in maintaining an open source project.</p>\n<p>Fortunately, <a href=\"https://poststatus.com/profiles/josh-koenig/\">Josh Koenig</a> has a healthy understanding of where open source fits into his business:</p>\n<blockquote><p>We believe that open source software is a crucial part of the internet&#8217;s value proposition to humanity. However, at this stage in the development of our company, investments in open source have to be strategic. Any sustained contribution we make has to be justifiable in terms of hour it helps us improve our platform or grow our business.</p>\n<p>As such our primary code and sponsorship contributions tend to be down the stack, to projects or libraries that we depend on to run our platform. When it comes to WordPress or Drupal, we typically contribute in ways that will have the most impact for our core audience: professional developers. So that means tools and utilities like WP-CLI, Redis or Solr integration, diagnostic tools, etc.</p></blockquote>\n<h4>Simplicity means more time spent on the project</h4>\n<p>On the practical side, offering consulting-time rewards instead of physical swag helped me keep reward costs manageable. Only two-thirds of backers redeemed their rewards, so I spent a total of 41.25 hours on that part of the project.</p>\n<p>As it turns out, <a href=\"https://poststatus.com/profiles/jason-resnick/\">Jason Resnick</a> even appreciated the open-ended approach to rewards:</p>\n<blockquote><p>The best part of the project was the ability to choose my own path, so to speak. Kind of like those Choose Your Own Adventure books when you were a kid. WP-CLI can be used in so many different ways for different tasks, it was awesome to be able to just hop on a call with you and one or two other folks that also wanted to learn the same thing, and get the answers to the specific questions.</p></blockquote>\n<p>It also proved helpful to produce a landing page for the project with the overall goal, links to blog posts and milestones, and over-communication on how I was “spending” the money. In hindsight, I wish I had been more diligent about my progress updates and communication about what I was actually working on.</p>\n<p>My favorite production trick: I used HTML and CSS to produce a graphic in my browser, and took a screenshot of it &#8212; quite possibly the easiest way to create a Kickstarter header image, for you other non-designers.</p>\n<h3>Kickstarter is only the beginning</h3>\n<p>Kickstarter is an amazing platform for funding creativity. The next time I launch a crowdfunding project, I&#8217;ll make sure to:</p>\n<ul>\n<li>Get feedback on the idea from as many people as possible, as a way of generating interest and buy-in.</li>\n<li>Establish a project scope with features people want, while making sure there&#8217;s ample budget for the unglamorous work.</li>\n<li>Keep the rewards rewarding, and as simple to deliver as possible.</li>\n<li>Over-communicate progress, knowing I have hundreds of customers to make happy.</li>\n</ul>\n<p>In the case of WP-CLI, <a href=\"https://runcommand.io/\">runcommand</a> is my new company to pick up where Kickstarter leaves off.</p>\n<p>An increasing number of businesses use WP-CLI as a key part of their infrastructure. Right now, each business has to internalize much of the cost associated with creating WP-CLI-based features. For instance, many web hosts would benefit from offering a web browser interface for running WP-CLI commands. However, there isn&#8217;t yet a great way for them to collaborate and produce a common solution.</p>\n<p><a href=\"https://runcommand.io/\">runcommand</a> provides a platform for these businesses to <a href=\"https://runcommand.io/sparks/\">co-produce a shared open source roadmap</a>, and offload much of the burden of developing and maintaining infrastructural components.</p>\n<p>Thinking about using Kickstarter to fund your open source projects? Have questions about runcommand? I&#8217;d love to hear from you — <a href=\"mailto:daniel@runcommand.io\">daniel@runcommand.io</a> or <a href=\"https://twitter.com/danielbachhuber\">@danielbachhuber</a> on Twitter.</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, 02 Aug 2016 21:03: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:16:\"Daniel Bachhuber\";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:48:\"Post Status: Scaling WordPress — Draft Podcast\";s: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:31:\"https://poststatus.com/?p=25850\";s: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:40:\"https://poststatus.com/scaling-wp-draft/\";s: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:2270:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>In this episode, Joe and Brian talk scaling WordPress, and what to do when you think you might’ve reached WordPress’s limits. From meta data, to users, to traffic management, they break down some of the most common scaling issues.</span></p>\n<a href=\"https://audio.simplecast.com/43493.mp3\">https://audio.simplecast.com/43493.mp3</a>\n<p><a href=\"http://audio.simplecast.com/43493.mp3\">Direct Download</a></p>\n<h3>Topics</h3>\n<ul>\n<li>Posts</li>\n<li>Meta</li>\n<li>Search</li>\n<li>Database</li>\n<li>Users</li>\n<li>Traffic (types of caching)</li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://github.com/elastic/elasticsearch\">Elasticsearch</a></li>\n<li><a href=\"https://github.com/10up/ElasticPress\">ElasticPress</a></li>\n<li><a href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-mlt-query.html\">More Like This Query</a></li>\n<li><a href=\"https://github.com/alleyinteractive/es-wp-query\">Elasticsearch WP_Query</a></li>\n<li><a href=\"https://memcached.org/\">Memcached</a></li>\n<li><a href=\"http://redis.io/\">Redis</a></li>\n<li><a href=\"https://github.com/Rarst/fragment-cache\">Rarst Fragment Cache Plugin</a></li>\n<li><a href=\"https://github.com/humanmade/hm-fragment-cache\">Human Made Fragment Cache drop-in</a></li>\n</ul>\n<h3>Sponsor: iThemes</h3>\n<p><span><a href=\"https://ithemes.com/\">iThemes</a> has a full suite of excellent products to help you level up your WordPress website. From iThemes Security, to BackupBuddy’s new live backups, to Exchange for your next membership site, iThemes has you covered. Thanks to the team at iThemes being a Post Status partner!</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:\"Fri, 29 Jul 2016 17:55:41 +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:14:\"Katie Richards\";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:72:\"WordPress.tv Blog: Matt Gibbs: Diving Into Commercial Plugin 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=544\";s: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:89:\"http://blog.wordpress.tv/2016/07/28/matt-gibbs-diving-into-commercial-plugin-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1207:\"<p>Learn key takeaways from my running a plugin business. Matt Gibbs goes over how to determine whether your plugin idea can sell, how to set the price, deciding on the business model, whether to self-host, and handling support.</p>\n<div id=\"v-9NHU2NND-1\" class=\"video-player\">\n</div>\n<p><a href=\"http://slides.com/logikal16/deck#/\">Slides</a></p>\n<p>From <a href=\"https://wptv.wordpress.com/event/wordcamp-asheville-2016/\">WordCamp Asheville 2016</a></p>\n<p>More <a href=\"https://wordpress.tv/\">WordCamp videos</a></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/544/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/544/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=544&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://blog.wordpress.tv/2016/07/28/matt-gibbs-diving-into-commercial-plugin-development/\"><img alt=\"Matt Gibbs: Diving Into Commercial Plugin Development\" src=\"http://videos.videopress.com/9NHU2NND/matt-gibbs-diving-into-commercial-plugin-development-wcavl-2016_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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 Jul 2016 05:15:23 +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:11:\"Jerry Bates\";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:65:\"WPTavern: Cory Miller and Matt Danner Launch New Business Podcast\";s: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=57918\";s: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/cory-miller-and-matt-danner-launch-new-business-podcast\";s: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:2723:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/podcast.jpg?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/03/podcast.jpg?resize=960%2C472&ssl=1\" alt=\"photo credit: Maciej Korsan\" class=\"size-full wp-image-52297\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/IQVHQYS3GL\">Maciej Korsan</a>\n<p>WordPress professionals have demonstrated a decent appetite when it comes to listening to and supporting podcasts on <a href=\"http://iamdavidgray.com/best-wordpress-podcasts/\" target=\"_blank\">a wide variety of topics</a>, including industry news, development, e-commerce, marketing, and startups. Cory Miller, founder of <a href=\"https://ithemes.com/\" target=\"_blank\">iThemes</a>, and Matt Danner, the company&#8217;s COO, are adding a new business podcast to the mix with the launch of <a href=\"http://leader.team/\" target=\"_blank\">Leader.team</a>.</p>\n<p>The <a href=\"http://leader.team/episode-1-introductions-background-backstory/\" target=\"_blank\">first episode</a> introduces the hosts and the goals of the show and is now available on iTunes. Miller and Danner, who often have casual chats about business strategy, decided to start recording their conversations to share with others who might benefit from their mistakes and successes in entrepreneurship.</p>\n<p>&#8220;We&#8217;re going to talk about values, beliefs, philosophies, tools, all kinds of things that we have learned over the years, either accidentally or on purpose, about how to lead and manage teams and grow a business,&#8221; Miller said in the opening episode.</p>\n<p>Leader.team will feature a short (15-25 minute) episode twice a month on Thursdays with practical advice for leaders and managers. The second episode will be available tomorrow, and Miller and Danner have already outlined the topics for the next four episodes with questions that will guide the discussion on the show:</p>\n<ul>\n<li>The Beliefs, Values, Philosophies We Hold Dear</li>\n<li>The Culture We Cherish And Protect</li>\n<li>Finding, Recruiting and Hiring the Best People</li>\n<li>Leading a Hybrid Team of In-Office and Remote Team Members</li>\n</ul>\n<p>While Miller and Danner are not necessarily marketing the show as a WordPress-focused podcast, many of their shared experiences have come from growing one of the longest-running, successful product companies in the WordPress ecosystem. Upcoming episodes will feature big picture business topics that can be applied to many different types of industries. Leader.team episodes have been submitted to both iTunes and Google Play and will also be available on the show&#8217;s <a href=\"http://leader.team/\" target=\"_blank\">website</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 22:19: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: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:108:\"WPTavern: WordPress for Android 5.6 Adds Screen to Invite New Users, Expands Reader to Include Related Posts\";s: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=58328\";s: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:118:\"https://wptavern.com/wordpress-for-android-5-6-adds-screen-to-invite-new-users-expands-reader-to-include-related-posts\";s: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:2114:\"<p><a href=\"https://apps.wordpress.com/2016/07/27/wordpress-for-android-version-5-6/\" target=\"_blank\">Version 5.6</a> of the WordPress for Android app was released today with expanded features for WordPress.com sites. The previous release <a href=\"https://wptavern.com/wordpress-for-android-5-5-debuts-new-visual-editor-adds-user-management\" target=\"_blank\">added user management capabilities</a> under a new ‘People’ menu and 5.6 introduces the ability to invite new users.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/invite-new-users.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/invite-new-users.png?resize=281%2C500&ssl=1\" alt=\"invite-new-users\" class=\"aligncenter size-large wp-image-58332\" /></a></p>\n<p>This release also adds a related posts section to posts found in the Reader. It appears directly underneath likes on posts and pulls in three related articles from the WordPress.com community of sites.</p>\n<p>Version 5.6 adds the ability to customize the notification sound for new activity from the WordPress app. A handful of other small changes are also included in 5.6, as detailed in the release post:</p>\n<ul>\n<li>Post list: Posts in the middle of being uploaded will be disabled and shown a progress indicator. A publish button is added on drafts.</li>\n<li>“View Site” and “View Admin” will now open the device browser.</li>\n<li>A comment is automatically approved when you reply to it.</li>\n</ul>\n<p>If you use the app to manage both WordPress.com and self-hosted sites, you will notice a growing discrepancy between the site management screens and options available for each. Self-hosted site owners still cannot use the app to manage themes or users, and the gap is widening for each release. Version 5.6 expands features for WordPress.com users, while the capabilities for self-hosted sites fall further behind. We have requested a comment from Automattic&#8217;s mobile engineers regarding the roadmap for managing self-hosted sites and will update when we receive a response.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 20:19:41 +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: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:68:\"WPTavern: IncludeWP: A Directory That Caters to WordPress Frameworks\";s: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:45:\"https://wptavern.com?p=58222&preview_id=58222\";s: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/includewp-a-directory-that-caters-to-wordpress-frameworks\";s: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:3745:\"<p>Earlier this year, the WordPress plugin directory review team <a href=\"https://wptavern.com/the-wordpress-plugin-directory-will-no-longer-accept-frameworks\">reminded developers</a> that frameworks are not allowed in the directory. WordPress core doesn&#8217;t have a built-in way to support plugin dependencies which creates extra hassle for users.</p>\n<p>Seeing an opportunity, Vova Feldman, founder of Freemius, created <a href=\"https://includewp.com/\">IncludeWP</a>, a directory specifically catered to listing WordPress theme and plugin frameworks.</p>\n<img class=\"wp-image-58242 size-full\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/IncludeWPFrontpage.png?resize=1007%2C690&ssl=1\" alt=\"IncludeWPFrontpage.png\" />IncludeWP Front Page Displaying Theme and Plugin Frameworks\n<p>Frameworks are listed using their public GitHub repositories. Visitors can sort frameworks by stars, forks, issues, or name. Selecting a framework displays information including, how many sites it&#8217;s on and the number of plugins and themes hosted on the official directory that are using it.</p>\n<img class=\"wp-image-58259 size-full\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/IncludeWPSinglePageView.png?resize=1014%2C664&ssl=1\" alt=\"IncludeWPSinglePageView.png\" />IncludeWP Framework Single Page View\n<p>To identify which plugins and themes are used by frameworks, Feldman collaborated with Luca Fracassi of <a href=\"https://addendio.com\">Addendio</a>. &#8220;We realized that we can leverage the WordPress.org APIs and SVN to automatically identify plugins and themes associated with frameworks on WordPress.org,&#8221; Feldman said. &#8220;So we decided to join forces.&#8221;</p>\n<p>Fracassi developed a framework identification system and ran it against WordPress.org. The data was exposed via a custom API endpoint that allowed Feldman to display it on IncludeWP. &#8220;We leveraged Fracassi&#8217;s endpoint to fetch the plugins and themes data from WordPress.org and present it under the framework’s page,&#8221; Feldman said.</p>\n<p>Like the frameworks listed on IncludeWP, the code powering the site is open source and <a href=\"https://github.com/Freemius/IncludeWP\">available on GitHub</a>. &#8220;I’m preaching about code reusability,&#8221; Feldman said.</p>\n<p>&#8220;The least I can do is provide the option for other developers to reuse our code for their projects. By reusing this code base, everyone can easily create a similar category type listing mini-site for GitHub repos.&#8221;</p>\n<p>Developers interested in having their frameworks listed need to fork the <a href=\"https://github.com/Freemius/IncludeWP\">IncludeWP repository</a> on GitHub, add the framework as a .php in the src/frameworks folder, and submit a Pull Request. However, in order to be listed, frameworks must meet the following guidelines.</p>\n<ul>\n<li>The framework must be GPL Licensed.</li>\n<li>The framework must have a public repository on GitHub</li>\n<li>Complete each field in the src/frameworks area</li>\n<li>Add a reference to the plugin or theme&#8217;s slug if it&#8217;s hosted on WordPress.org</li>\n<li>Have a short description</li>\n</ul>\n<p>Feldman says he doesn&#8217;t plan on generating revenue through the site and considers IncludeWP as one of many contributions back to the WordPress community.</p>\n<p>IncludeWP is a great resource for developers whose frameworks are spread across GitHub who are looking for ways to generate more exposure. It&#8217;s also an excellent way to see what&#8217;s available in the WordPress ecosystem. Take a look around <a href=\"https://includewp.com/\">IncludeWP</a> and let us know what you think in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 15:07: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:\"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: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:83:\"HeroPress: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1177\";s: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:66:\"http://heropress.com/essays/16-little-things-grew-into-big-things/\";s: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:34430:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/07/072616-16-2-little-things-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pill quote:WordCamp was not a conference, it was a sharing of ideas. It was not a convention, it was a place to build actual relationships.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=16%20Little%20Things%20That%20Grew%20Into%20Big%20Things%20%28My%20Life%20in%20a%20Bunch%20of%20Words%29&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2F16-little-things-grew-into-big-things%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2F16-little-things-grew-into-big-things%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2F16-little-things-grew-into-big-things%2F&title=16+Little+Things+That+Grew+Into+Big+Things+%28My+Life+in+a+Bunch+of+Words%29\" rel=\"nofollow\" target=\"_blank\" title=\"Share: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/16-little-things-grew-into-big-things/&media=http://heropress.com/wp-content/uploads/2016/07/072616-16-2-little-things-150x150.jpg&description=16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/16-little-things-grew-into-big-things/\" title=\"16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\"></a></div><p>I suppose I’ve always had the “entrepreneurial spirit.” My first taste of being in business likely occurred prior to this, but the first time I *remember* really enjoying building my own business was in the fifth grade.</p>\n<h3>Little Thing #1</h3>\n<p>For Christmas, I had gotten a new handheld electronic game. I suspect that most readers here will not remember these, but the one I had gotten was the race car game. It was a game with a button that slid only left and right, the goal to be to dodge the oncoming LEDs with the LED you controlled with the slider. It was a simple game but fun. I brought it to school and started charging people .25 per game to play. I averaged $9.00 a day. That’s a lot to a fifth grader. I learned about profit and expenses (batteries do, after all, cost money). I learned about friendly competition when a friend of mine and classmate brought his electronic handheld football game to school and charged .50 per game. I learned about volume sales (my game would last about a minute or two whereas the football game lasted substantially longer). I also learned about charging what the market would bear (I couldn’t get .50 per game but I could do .25 all day long). And lastly, I learned about “The Man” and how something that is going so well can go away in the blink of an eye when the school, after about a month of my enterprise, decided that these games were too much of a distraction to “real learning” and shut both myself and my competitor down.</p>\n<blockquote><p>Little did the school know that I learned more with my business experience in that short time than I did my whole fifth grade year</p></blockquote>\n<p>(it was my worst experience in elementary school, yet one of my most formative). When all was said and done, though, I had made a couple hundred dollars from a game that cost about $40 (which I hadn’t even paid for). Not a bad return.</p>\n<h3>Little Thing #2</h3>\n<p>In High School economics class, we learned how the stock market worked. We split the class into several groups and formed “corporations.” The members of these corporations then bought stock with real money. This money went to buy product that we would sell to the student body over a period of a couple weeks. I had been asked to be a member of the one corporation due to a previous simulation in which I had almost successfully beaten another team by coordinating an uprising against them (the other team was far more powerful) by secretly putting several of the smaller, less powerful teams together to try to take out the big team. It almost worked. Almost.</p>\n<p>This team asked me to be part of this new corporation because they were impressed. We decided that the thing we were going to sell to the student body was going to be candy. I invested $9.00 into the company. Of the members of this newly formed team, I invested the most. We talked about what types of candy to buy. It mostly involved peanut butter cups and skittles as I recall.</p>\n<p>I don’t remember what the other corporations sold. It didn’t matter. It was not true competition because we each were exclusive with our products. During breaks, lunch, and after school, we all had our tables set up in the quad and sold our goods. Our corporation slaughtered all the others. It wasn’t even close.</p>\n<p>At the end of it all, we determined the stock value based on costs of goods sold and profit left over. We sold our stocks for what they were worth. My $9.00 had turned into about $75.00 in the two weeks. I made, far and away, more money than anyone else in the class (and according to the teacher, more than anyone ever had in that simulation). Making money was easy, and it was what I was meant to do. Or so I thought.</p>\n<h3>Little Thing #3</h3>\n<p>Back to Fifth Grade. At the time, my best friend, Jack, had introduced me to Basic programming. My dad worked at a local University and as a result, the head of the Math &amp; Computing Department granted me a student account on the mainframe (their department was right across from my dad’s “Modern Languages” Department). It was here that I learned that a simple Basic statement such as “10 goto 10” could actually take down a campus-wide system as these mainframes were really not built to do multi-tasking. The joy of an endless loop. I hate to admit that there were times that I would laugh maniacally as other students in the lab would start literally banging their keyboards because nothing was happening. To all of you, I most humbly and heartily apologize. I was a jerk. I blame Jack.</p>\n<blockquote><p>None the less, I had been bitten by the programming bug.</p></blockquote>\n<p>I expanded my knowledge beyond causing others brain damage for fun and actually started to program useful things. My dad hired me at .50 an hour (which I’m pretty sure came out of his own pocket) and I worked on programs that would quiz his students. It’s also probable that he did it to keep me out of trouble.</p>\n<p>My brain wrapped itself around programming rather quickly and, as a general rule, every day after school, you’d find me back up in one of the University labs hacking away. It wasn’t a bad life. I liked it a lot. My favorite lab was the one right outside the server room. I got to know the students who kept the systems up. I remember when they got some new storage. I want to say it was a drive that could store 20 megabytes. It was literally as big (and heavy) as a washing machine. Oh. . . the good ol’ days.</p>\n<h3>Little Thing #4</h3>\n<p>I believe it was during the summer between Eighth Grade and Ninth Grade (circa 1980-81) that a representative from a company called Commodore came and demonstrated this great new personal computer. It was better than a TRS80 and far more affordable than the Apple ][. It had color and a whopping 5 KB of RAM. That is pretty impressive. All you needed to do was hook it up to your TV. I don’t remember what I paid for it, but I knew this was the machine for me, so I ponied up with my hard-earned money for the computer that looked like nothing more than a keyboard and a tape drive. Before I knew it (well . . . four to six weeks later), I was a programming fool from the comfort of my own home. I could get used to this. It was a few months later that I had saved up enough for a 300 baud modem (If you don’t know what 300 baud is, let me explain: It’s SLOW) and learned how I could hook up to my account at the college. It was my first taste of remote work and I knew that, one day, it was going to be the life I’d be living. The world would just have to catch up (ya, I was just a scosche cocky back then).</p>\n<p>A year later, I upgraded to a Commodore 64 and purchased my first Commodore 1541 5.25” floppy drive. I learned about sprite graphics and created a game based on the Saturday Night Live character, “Mr. Bill.” The game totally sucked, but suffice it to say, Mr. Bill died a LOT at the hands of Sluggo. A LOT.</p>\n<h3>Little Thing #5</h3>\n<p>Between my Junior and Senior years of high school, I was going to take a trip to Europe. I knew that Europe was no place to take my computers, and what I really needed was to make memories. I had always envied my sister’s camera and decided that it was time for me to dive into 35mm photography, so I sold my whole computer setup and purchased my first 35mm camera; a Canon AE1-Program with a couple of lenses and some books and accessories. I quickly learned how to actually use the thing and gained a basic understanding of the math behind the exposure you want. During that trip, I shot as many rolls of film as I could afford and discovered that maybe a life in photography was what I really wanted.</p>\n<p>I came back, my senior year, where I was the head photographer for the yearbook. I was rather proud of that yearbook and I put a lot of time and effort into it. So much so, that the yearbook staff felt obligated to give me an award. As mentioned earlier, in my younger years, I was sort of a jerk, so I cannot remember what the award was. At the time it meant a lot to me, though.</p>\n<p>I loved photography and I loved technology. If only there was some way to combine photography with technology. . . Maybe one day.</p>\n<h3>Little Thing #6</h3>\n<p>After high school, I went to about one semester of College. I say, “about,” because I think the only class I regularly attended was the photography class I was taking. I really enjoyed the class and the teacher. But most of all, I enjoyed the full access to the dark room where I was the head know-it-all and all the other students came to me for assistance. My ego was riding pretty high around that time.</p>\n<h3>Little Thing #7</h3>\n<p>After deciding to drop out of college (much to the chagrin of my dad &#8211; did I mention he was a University Professor?), I knew I needed to make money. I applied for (and got) a job with a company called Lifetouch National School Studios. Many of you might be familiar with this company. They specialize in school photography. I worked there for two school years, the first being an assistant and general runner and then the next year I did a lot of darkroom work. I was in my zone. I got to be good friends with a guy named Gene who was the world’s biggest Raiders fan and even got me a press pass a couple years later to shoot from the sidelines.</p>\n<blockquote><p>During that game, I met people like Howie Long, Bo Jackson and Bob Golic.</p></blockquote>\n<p>I also met James Garner who got to stand by the bench because, well, he was James Garner. Incidentally, he was exactly what you’d have expected him to be. Gene also introduced me to the world of Santa Claus mall photography; possibly the worst job I ever had. No, I was not the Santa. I was the photographer. The problem was never the kids. It was always the parents. You try telling parents that their kid is hysterical, will never calm down, and will never smile for Santa because he or she is scared to death of the man with the beard. Or, maybe, try to find something to clean up the pee on the floor because some parent made their kid wait in line for two hours while he had to go to the bathroom (usually the two hours was because of a number of the aforementioned parents living in their dreamland of a smiling child). Or, having a parent make you tell their child that Santa has gone home for the day (because the parents waited until after the mall closed before they decided to get in line). All true stories. Ya &#8211; I only did it one Christmas. Ironically, I lasted longer than most.</p>\n<h3>Little Thing #8</h3>\n<p>I quickly realized that I needed to be making more money and that commissioned sales was where I needed to be. I applied for (and got) a job at a company called Circuit City. They sold electronics of all sorts. I originally wanted to work in their Camera Department, only to discover that they didn’t have one. So, it was Small Electronics for me, where I quickly became Assistant Manager of the department.</p>\n<p>After cutting my teeth in electronics, I figured out that where I really wanted to be was in the Video Department. It’s where the money was. So I put in for a transfer and that’s where I got to be good friends with Gregg Franklin. Gregg and I forged a strong friendship and discovered that neither one of us ever really had a desire to work for “The Man,” so we decided to look for business opportunities. This was around 1987 or 1988.</p>\n<h3>Little Thing #9</h3>\n<p>In 1989, Gregg and I decided to venture off from Circuit City and we bought a little camera store for $10,000.00. It had been around for a while and, honestly, neither one of us did much due diligence. Had we done so, we would have discovered the reputation the owner of the store had. We spent the next two years working on re-branding, building up a local reputation of supporting schools and professional photographers in the area, and eventually became a reputable business in town. The local photographers would come and chat for hours on end with us and we became friends with many who remain our friends to this day. During this time, we built a darkroom and did a lot of custom work.</p>\n<p>Additionally, a friend from school had started his own company in which he built custom PCs. It was time for me to return to the world of computing, where, after purchasing an XT PC running MS-DOS 2.0 (I believe), and a piece of database software called Q&amp;A, I developed a fully operational Point of Sale system. It was my first foray into data mining. I had finally figured out a way to combine my love of photography with my love for computing. It wasn’t what I initially imagined, but it would do.</p>\n<p>During the time of the camera store, I also started my own WWIV BBS called “The Dragon’s Tavern”, a precursor to the Internet. It had software and games (can you say, “Global Thermal Nuclear War?). At one point, I was the only one in the area with a BBS and ONE GIG of storage space. Modem tech had advanced and I got myself a USRobotics 14.4 Courier HST modem. I was the king of the local BBS world. WWIV was an open source BBS platform and I spent a lot of time writing mods for it in Turbo C++. I met people from all over the world and spent hours on the phone with some of them as we worked through programming issues and ideas. It was my first experience with remote collaboration.</p>\n<p>The camera store lasted a couple of years, but we suffered a bit from trying to do too much too fast, along with a failing economy, and we realized that our model was not really sustainable. Rather than getting buried under a mountain of debt, we made the choice to shut the place down.</p>\n<p>From there Gregg and I tried our hands at a few things, the most significant being a sign company (we had actually been running it as a side business from the camera story for some time, to help bolster our income). To be honest, I didn’t like that job that much. Gregg got to have all the fun doing the creative work, then he, our alcoholic partner who showed us the ropes, and myself would go and install them. Vinyl cutting was fun and the tech behind it still fascinates me, but it didn’t take long for us to learn that we were not the right fit with the third partner, so Gregg and I split from him.</p>\n<h3>Little Thing #10</h3>\n<p>Fast forward a couple years. Gregg and I had been doing our own things separately for a while, trying to find our place in life. Owning and shutting down a couple of businesses does make you realize that you’re not as perfect as you think you are and may even be a bit of cause for some soul searching. I cannot speak for Gregg, but I know that for myself, that was the case.</p>\n<p>I was burnt out on photography.</p>\n<blockquote><p>Doing something for a couple of years for others and none for yourself sort of takes the passion out of it.</p></blockquote>\n<p>Running a free BBS was not exactly a business model that worked. I think it was around 1995 that I discovered Netcom. It was one of the first real internet providers. I bit. I was hooked. It was *like* a BBS but SO much more! The world had opened up to me and I saw my vision of one day becoming a remote worker come that much closer. Before long, a feeling had returned that I had not had in awhile: the desire to learn something new in technology. I wanted to gain an understanding of how the back end of this wondrous new tool worked. I knew it was the future, and it was within my grasp. It had been a while since I had been that excited about anything.</p>\n<p>It was then that Gregg and I reconnected. Gregg had told me that some other mutual friends of ours were about to embark on starting a regional Internet Service Provider, servicing schools and running a digital technology called ISDN. They had invested in the equipment but needed someone to run it. They had asked Gregg, and when I expressed interest, we formed a partnership and got to work. During this time, I learned about routers, IP traffic, DNS, collaboration with people on a global level, scalability, building departments and efficiently servicing customers through no more than email and a telephone connection. I learned about the value of good documentation and I learned how to deal with big, huge companies and their lawyers. I learned all of these things and yet, I wouldn’t say that any of those shaped my future and my life and business operating philosophy more than the epiphany I had once I hired our first employee.</p>\n<p>Until this point, I had always been about making money and a name for myself. It was ALWAYS about the money for me. Always. But I remember that moment like it was yesterday. That moment I looked at the empty desk of our first employee and realized that we were embarking on something great. We were building a company that would help sustain the lives of others and their families. If all went well, it wouldn’t be just a few. It would be many.</p>\n<blockquote><p>In the blink of an eye, it went from being about me and what I could take home, to being about them.</p></blockquote>\n<p>To being about us. All of us. That one moment changed everything for me.</p>\n<h3>Little (ok BIG) Thing #11</h3>\n<p>In 2003, my wife and I decided to move to Wisconsin from sunny Southern California. I was going to continue to work remotely with the ISP we had built up to over 40 employees and my wife Jessica was going to also work remotely with the Electronic Funds Transfer company she had worked to build up while in California (she was their first employee). Wisconsin was a nice break from the rat race of Southern California. We bought a house, set up our office and before I knew it, I discovered that the people back home at the ISP didn’t understand the concept of remote work. I was a shareholder of a company that had no use for me sitting a couple thousand miles away. Sure, from time to time they’d call me, but overall, out of sight meant out of mind where I was concerned.</p>\n<p>We moved to a pretty small town where we were happy to have high speed internet, but there was not a lot of demand for a network engineer or software programmer. I had, once again, found myself somewhat without a professional purpose.</p>\n<p>Soon after our first year there, we found out that Jessica was pregnant. Our main purpose in moving to Wisconsin was to start a family, but Jessica had always had issues carrying a pregnancy to full term. It was heartbreaking to deal with multiple miscarriages, but we had found a doctor in Green Bay (2.5 hours away) who thought he might be able to narrow down the issue. He was right, and nine months (and two weeks) later, we were introduced to our son, Eli. Hard to believe it’s been 11 years. And while I was struggling to find my place professionally, there was no doubt that I knew my place personally, as a father.</p>\n<blockquote><p>I was 38 and suddenly felt it was what I was meant to do.</p></blockquote>\n<p>I attempted to work for a local computer place during this time, but that simply didn’t take. I had, for a long time, said that employment may not be for me and certainly, in that situation, I was proven right. I am not, and never have been, a “Yes” man, I would tell people. I needed to reinvent myself and I needed to figure out my place.</p>\n<p>This time put a lot of strain on my marriage to Jessica. She was the main bread winner and while she was appreciative of the fact that I was really good with taking care of Eli and doing things around the house, she felt the pressures of being responsible for the family’s financial well-being. “Just find something &#8211; anything,” she’d say. She wanted me to find something that made me happy. She knew that while I loved being a father, I also felt the pressure to contribute to our stability. I struggled. A lot.</p>\n<h3>Little Thing #12</h3>\n<p>During the short time that I worked for the computer company, we moved again. This time, we bought the home of one of the city’s founders. It was on the river and while the place needed work, it was on about 3 acres of land and was a pretty nice place. I had my eye on the house next to it which was a big Victorian (and at one point, part of the same property). It was owned by a couple of empty-nesters and I knew that owning the house we had just purchased would put us in a prime position to buy it when it became available. It was my five year plan.</p>\n<p>Two years later, I was approached by our neighbor. We bought the house and moved in. We still had not been able to sell the first house that we bought and it was sitting empty. We were about to have two empty houses. I had been doing tech work as I could, but still was without a purpose. Fortunately, Jessica was still plugging away. Throughout it all, she was supportive of my desire to find something. I admit, there were those moments where I was just happy to be a dad (that’s my way of saying I might have gotten a little lazy looking for an income).</p>\n<p>In the new house for a bit, I was talking to one of my friends back in California. He was going through some pretty major life changes and was looking for his own purpose. I remember asking him what he’d like to do and he said that he enjoyed going to motorcycle swap meets, buying parts and then selling them on Ebay. And just like that, a business was born. He needed a new start. I needed something to do &#8211; a way to make money. And I knew Ebay and tech really well. It seemed like a match made in heaven.We moved him into the empty first house that we had and ran the business out of that house for a while. We made contacts and started buying larger and larger lots, liquidating them almost as fast as we were getting them. We were starting to make a little bit of money, but we kept turning that money into bigger lots, which meant we needed more storage, which meant it was time to get office space. Our specialty was Harley Davidson parts and it only took a short time for me to go from only knowing that most Harleys had two wheels to being able to identify the part, year and bike it came from; to know its value; and to have an idea on its demand. I became a tougher negotiator and walked away from a deal or two that just didn’t feel right. The biker world was definitely a world I never imagined myself within, but I certainly, for the first time in my professional life, actually felt like I was part of a community.</p>\n<p>Soon after we started that company, though, the company Jessica had been working for shut its doors, literally overnight. She was not making money, in an industry where there was no local demand, and I was trying to grow a company. For those wondering, that is not a sustainable personal financial model. The housing market crashed, and I was spending nights doing database patient record merging at the local hospital.</p>\n<blockquote><p>Before we knew it, we were flat broke. We literally lost almost everything.</p></blockquote>\n<p>The two empty houses were taken by the banks and we were just fighting to keep the house we were in. It was also about this time that Jessica announced that she was pregnant with Brenna. It was the only good news we had at the time. I was 42 and, for the first time in my adult life, had to actually go to my parents and ask for help. I honestly don’t know where I’d be today if I didn’t have them.</p>\n<p>The company we had was starting to see dwindling sales. When the economy crashes, people suddenly learn to live with that little ding in their gas tank or that other non-critical noise their bike may be making. Ebay started raising their fees and our business model became unsustainable.</p>\n<h3>Little Thing #13</h3>\n<p>With money quickly dwindling away in our bank account, I suddenly had this wonderful idea to start making money off of our competitors on Ebay. They had an affiliate program and I needed to figure out a way to leverage that. But how?</p>\n<blockquote><p>It was then that I discovered WordPress.</p></blockquote>\n<p>Like many, I had always thought of it as a blogging platform and nothing more. But then I discovered a plugin that would read in a feed from Ebay and worked within WordPress. It took me about an hour to set up a WordPress site and another minute to figure out how to install the plugin. The next two days was spent populating categories, and a little over a month later, I got my first direct deposit from Ebay. This could work. But even more importantly, for the first time, I saw that WordPress could be so much more than a blogging platform.</p>\n<p>It wasn’t much longer before I was starting to develop websites for others. My design skills have always lacked, so to start, it was mostly out of the box themes, but as I got more seasoned, I learned more and more about the power of WordPress.</p>\n<p>Eventually, we closed down the motorcycle liquidation business.</p>\n<blockquote><p>We tried our hand at running a Renaissance Faire booth (along with touring the country), but that, too, was not really sustainable.</p></blockquote>\n<p>I even drove a truck with staging equipment for Fox Sports a couple of times. Anything to pay the bills.</p>\n<h3>Little Thing #14</h3>\n<p>During one of my driving trips, I had been talking to Gregg. Turns out he had been doing WordPress development for a while and he was looking for some help. I was not a good designer, and I had barely dipped my feet into being a developer, but Gregg was willing to teach me everything he knew. Every morning, I’d wake up, Gregg and I would get on a call and he’d explain really cool ways to customize WordPress. We’d strip a theme down to the bones and build it up. We’d find frameworks and build them out. We’d bang our heads over CSS (something, I think, neither of us ever really were able to wrap our minds around), and we had work. Lots of work.</p>\n<blockquote><p>Though financially ruined, Jessica and I were finally starting to see some light.</p></blockquote>\n<p>I had finally found something I really liked and she had finally found herself with a position working for another company. We had lost all our homes except the one in which we lived and had depleted all our bank accounts and college funds, yet we were hopeful. We had our two kids, a roof over our heads and work which generated income.</p>\n<p>Most of the work Gregg and I did was working with agencies. We liked it that way. Neither of us really enjoyed pounding pavement, so it was nice to have people who specialized in sales do that part of the lifting. But despite the fact that we were getting busier, we knew that we needed to work on passive income possibilities.</p>\n<h3>Little Thing #15</h3>\n<p>In 2012, Gregg brought up the idea of me going to WordCamp San Diego. Now, I hate conferences and conventions. This sounded to me about as far from fun as I could get. He offered to pay for the badge if I paid for my plane ticket. Not knowing *really* what a WordCamp was, I figured it was a fair deal. It was only after I spoke with Jessica about going that I realized the cost of the ticket. I tell people that I still feel like I got the better end of the deal.</p>\n<blockquote><p>That trip to WordCamp San Diego changed everything for me.</p></blockquote>\n<p>I had always believed that businesses could succeed while also being part of a community that supported and built each other up. For the first time in my adult life, I got to witness it first hand. I had a blast! WordCamp was not a conference, it was a sharing of ideas. It was not a convention, it was a place to build actual relationships. It was a business event, educational event, and social event all in one package. I knew I was in the right place (finally).</p>\n<blockquote><p>44 years old and I finally found my place.</p></blockquote>\n<p>But how could I actively participate? Part of being in a community is that desire and need to give back. I was green and hardly knew anything.</p>\n<h3>Little Thing #15(a)</h3>\n<p>One of the people I met while in San Diego in 2012 was Stephen Carroll. He had developed this really cool tool called DesktopServer; a tool Gregg and I used almost every day during our development days. Gregg was having an issue with a site we were building and Stephen offered to help us figure it out. I was blown away that someone would give up their time so freely with no interest in remuneration. He just wanted to help. Stephen and I spoke a little bit, but he mostly focused on helping Gregg get through the issue he had. He was kind and generous, and I liked him immediately.</p>\n<h3>Little Thing #16</h3>\n<p>In 2013 Gregg and I were working together on a project and, as often happened, the conversation turned back to what we could do for some passive income. He and I came up with an idea for a theme we wanted to build. It would be unlike anything anyone had seen. Robust, clean code, efficient. In other words, it was a theme that was above our skill levels, over our heads, and somewhat out of reach. We needed a developer with a skill that far exceeded our own. Gregg said it: “We need someone like Stephen.”</p>\n<p>I totally agreed with Gregg and so the call was placed. Gregg was to get in touch with Steve and see if he’d be interested in helping us out. It was a good plan.</p>\n<p>An hour later, Gregg called me back to let me know the result of the conversation. Steve was, indeed, anxious to work with us (if pressed slightly, I think he would tell you that he was anxious to work with Gregg since he only really knew me through Facebook). But what he wanted was for US to help HIM at ServerPress. He wanted to simply code while we handled the rest. I contacted him directly to ask him some questions, set up a path for the company under the new structure and the rest, as they say, is history.</p>\n<hr class=\"ttfmake-hr\" />\n<p>This past June marked three years since we re-formed the company and it’s been a thrill ride to say the least. Since then, we’ve grown the company by over 400%, I’ve had the opportunity to travel the country and speak at several WordCamps (2014 saw me at over 20) and I actually look forward to Mondays every bit as much as I look forward to weekends. ServerPress, LLC is a company that’s respected within the WordPress Community, and it has afforded me the ability to help financially sustain my family.</p>\n<p>In 2013 Jessica, Eli, Brenna, and I moved to Milwaukee where we bought an older home (117 years) with the purpose of restoring it, building it out (and up), and fostering to adopt sibling groups (you can read about it on my blog, <a href=\"http://twotofive.us\">http://twotofive.us</a>).</p>\n<blockquote><p>We currently have six foster kids which puts us at a family of 10.</p></blockquote>\n<p>None of this would have been possible without all the little things, a couple of big things, and WordPress (the most important of which, is its Community).</p>\n<p>While we’re still digging ourselves out of the mess of a few years ago, that light is getting brighter every day.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/16-little-things-grew-into-big-things/\">16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)</a> appeared first on <a rel=\"nofollow\" href=\"http://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 Jul 2016 12:00: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:14:\"Marc Benzakein\";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:50:\"WP Mobile Apps: WordPress for Android: Version 5.6\";s: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:33:\"http://apps.wordpress.com/?p=3488\";s: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:72:\"https://apps.wordpress.com/2016/07/27/wordpress-for-android-version-5-6/\";s: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:3187:\"<p>Hello WordPress users! <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Version 5.6 of the WordPress for Android app</a> is now available in the Google Play Store.</p>\n<h1 id=\"related-posts-in-the-reader\">Related Posts in the Reader</h1>\n<p><strong>Discover relevant work from the WordPress community.</strong> A section of related posts will now appear just underneath Likes on a post:</p>\n<p><img src=\"https://cldup.com/uI3GXFyyfOu/WFX8pk.png\" alt=\"Related Post Screenshot\" /></p>\n<h1 id=\"custom-notification-sound\">Custom Notification Sound</h1>\n<p><b>You&#8217;ve got activity!</b> With 5.6, you&#8217;ll be able to customize your notification sound:</p>\n<p><img src=\"https://cldup.com/uI3GXFyyfOu/LBsHX3.png\" alt=\"Custom Notification Sound\" /></p>\n<h1 id=\"invite-users\">Invite New Users</h1>\n<p><strong>A cordial invitation.</strong> Invite users to your site from the People management screen, designate their roles, and customize a message to send to them:</p>\n<p><img src=\"https://cldup.com/uI3GXFyyfOu/9fEtji.png\" alt=\"Invite Users\" /></p>\n<h1 id=\"other-changes\">Other Changes</h1>\n<p>Version 5.6 also comes with a few other changes and fixes:</p>\n<ul>\n<li>Post list: Posts in the middle of being uploaded will be disabled and shown a progress indicator. A publish button is added on drafts.</li>\n<li>&#8220;View Site&#8221; and &#8220;View Admin&#8221; will now open the device browser.</li>\n<li>A comment is automatically approved when you reply to it</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.7\">our 5.7 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/0nko\">@0nko</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/bummytime\">@bummytime</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/khaykov\">@khaykov</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/theck13\">@theck13</a>, <a href=\"https://github.com/thomasleplus\">@thomasleplus</a> and <a href=\"https://github.com/tonyr59h\">@tonyr59h</a>.</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3488&subd=apps&ref=&feed=1\" width=\"1\" height=\"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:\"Wed, 27 Jul 2016 06:51:53 +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:6:\"Maxime\";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:85:\"WPTavern: Easily Hide WordPress’ Blogging Features With the Disable Blogging Plugin\";s: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:45:\"https://wptavern.com?p=58111&preview_id=58111\";s: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:93:\"https://wptavern.com/easily-hide-wordpress-blogging-features-with-the-disable-blogging-plugin\";s: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:2643:\"<p>WordPress strikes a good balance by offering users the ability to publish dynamic content via posts and static content via pages. However, if you&#8217;d like to use WordPress primarily as a static content management system without the features related to blogging, check out a new plugin developed by <a href=\"https://profiles.wordpress.org/factmaven/\">Fact Maven Corp</a>. and <a href=\"https://profiles.wordpress.org/ethanosullivan/\">Ethan Jinks O&#8217;Sullivan</a> called <a href=\"https://wordpress.org/plugins/disable-blogging/\">Disable Blogging</a>.</p>\n<p>Disable Blogging hides a number of features including:</p>\n<ul>\n<li>Posts, Comments, and items related to blogging from the admin menus.</li>\n<li>Comments from pages.</li>\n<li>Blog related widgets.</li>\n<li>Pingbacks, Trackbacks, and XML-RPC header links.</li>\n<li>Biographical info and Admin Color schemes on the user profile page.</li>\n<li>Press This Bookmarklet.</li>\n<li>Posts via email.</li>\n<li>Howdy, help tabs, and query strings from static resources.</li>\n</ul>\n<p>To really get a sense for what it&#8217;s like to use WordPress without its blogging capabilities, I activated the plugin on a fresh install.</p>\n<img class=\"alignnone size-full wp-image-58148\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/DisableBloggingOnFreshInstall.png?resize=1025%2C579&ssl=1\" alt=\"DisableBloggingOnFreshInstall\" />Disable Blogging Enabled on a Fresh Install\n<p>There are two things that immediately stand out during testing. The first is that logging in takes users to their profile page instead of the Dashboard. Second, the Dashboard and the link to it are gone.</p>\n<p>I found the removal of the Dashboard creates a jarring experience that&#8217;s different from what users might expect. It&#8217;s usefulness to display widgets with site specific information, even for sites based on pages, is a huge benefit and therefore, its removal should be reconsidered.</p>\n<p>The nice thing about Disable Blogging is that it doesn&#8217;t permanently remove features or data. Regaining access to WordPress&#8217; blogging capabilities is as simple as deactivating the plugin.</p>\n<p>Browsing, using, and navigating WordPress with the blogging features hidden is an interesting experience that I encourage you to try for yourself. I tested <a href=\"https://wordpress.org/plugins/disable-blogging/\">Disable Blogging </a>on a fresh install of WordPress 4.5.3 and didn&#8217;t encounter any problems. The next time you or a client wants an easy way to disable WordPress&#8217; blogging capabilities, give this plugin a shot.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 02:27: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: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:71:\"WPTavern: TechCrunch Hacked by OurMine, Attackers Target Weak Passwords\";s: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=58081\";s: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/techcrunch-hacked-by-ourmine-attackers-target-weak-passwords\";s: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:3051:\"<p>TechCrunch is the latest victim in OurMine&#8217;s summer hacking rampage. The site, which is powered by WordPress and hosted via WordPress.com VIP, was <a href=\"http://webcache.googleusercontent.com/search?q=cache:https://techcrunch.com/2016/07/26/ourmine-team-important-message/\" target=\"_blank\">hacked this morning</a> and defaced with a message from the attackers who identify themselves as an &#8220;elite hacker group.&#8221;</p>\n<p>TechCrunch&#8217;s news ticker was updated to display: &#8220;Hello guys it’s OurMine Team, we are just testing TechCrunch Security, don’t worry we never change your passwords. Please contact us.&#8221; OurMine gained access to a contributor account and posted a similar message.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/techcrunch-hacked-by-ourmine.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/techcrunch-hacked-by-ourmine.png?resize=1025%2C523&ssl=1\" alt=\"techcrunch-hacked-by-ourmine\" class=\"aligncenter size-full wp-image-58085\" /></a></p>\n<p>According to a <a href=\"https://www.engadget.com/2016/07/26/ourmine-techcrunch-compromise/\" target=\"_blank\">report from Engadget</a>, TechCrunch&#8217;s sister site, the hackers gained access via a contributor&#8217;s weak password, not by exploiting a vulnerability in WordPress or the site&#8217;s plugins. TechCrunch was able to regain control of the site within minutes and delete the content created by the attackers in the admin.</p>\n<p>OurMine is the same group that <a href=\"http://gizmodo.com/mark-zuckerberg-hacked-on-twitter-and-pinterest-because-1780735073\" target=\"_blank\">hacked Mark Zuckerberg&#8217;s Twitter, Pinterest, and LinkedIn accounts</a> after he used the same password for multiple sites. Bad password security can make even the most secure websites vulnerable to these types of attacks. Although OurMine is primarily targeting high profile individuals and publications, WordPress sites are constantly the target of brute force attacks.</p>\n<p>Security plugins like <a href=\"https://wordpress.org/plugins/wordfence/\" target=\"_blank\">Wordfence</a>, <a href=\"https://wordpress.org/plugins/better-wp-security/\" target=\"_blank\">iThemes Security</a>, and <a href=\"http://bruteprotect.com/\" target=\"_blank\">Jetpack&#8217;s Brute Protect module</a> can help deter brute force attacks, but it&#8217;s virtually impossible to eliminate the human factor in poor password selection or the practice of using the same password for multiple online services. WordPress site owners, especially those who run publications that have many users with permissions, are especially vulnerable to attacks that target bad password security.</p>\n<p>Although WordPress warns users about weak passwords, it doesn&#8217;t force them to create a strong one. Site owners who want to make this a requirement can use a plugin like <a href=\"https://wordpress.org/plugins/force-strong-passwords/\" target=\"_blank\">Force Strong Passwords</a> for extra security.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 19:35:42 +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: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:100:\"WPTavern: WooCommerce Releases Square Integration to Sync Online and Offline Purchases and Inventory\";s: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=58049\";s: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:111:\"https://wptavern.com/woocommerce-releases-square-integration-to-sync-online-and-offline-purchases-and-inventory\";s: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:3478:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/woocommerce-logo.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/woocommerce-logo.jpg?resize=1025%2C466&ssl=1\" alt=\"woocommerce-logo\" class=\"aligncenter size-full wp-image-56606\" /></a></p>\n<p><a href=\"https://woocommerce.com/\" target=\"_blank\">WooCommerce</a>, which powers more than 37% of all online stores, announced today that the plugin now integrates with the millions of offline stores that use <a href=\"https://squareup.com/\" target=\"_blank\">Square</a> for payment processing. The new <a href=\"https://woocommerce.com/products/square/\" target=\"_blank\">Square for WooCommerce</a> extension tracks and syncs payments and inventory for products sold via online and offline stores.</p>\n<p>Before agreeing to work with Square on building an integration for WooCommerce inventory management, the Woo team verified customer demand via its ideas board where the feature <a href=\"http://ideas.woothemes.com/forums/133476-woocommerce/suggestions/3771433-integration-with-square\" target=\"_blank\">received more than 900 votes</a>. Prior to today&#8217;s extension release, those who managed stores in online and offline environments had to perform manual updates to ensure accuracy of the current inventory. Manually tracking inventory between stores is a tedious, never-ending task, especially for larger operations. This is why Square integration was the most-requested feature in WooCommerce history.</p>\n<p>After store owners connect a Square account to WooCommerce, they can perform a manual sync from WooCommerce to Square or back the other way. This will sync SKU&#8217;s, categories, details, and images for products that have been set up on either platform.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/square-woocommerce-sync.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/square-woocommerce-sync.png?resize=620%2C345&ssl=1\" alt=\"square-woocommerce-sync\" class=\"aligncenter size-full wp-image-58063\" /></a></p>\n<p>The ability to accept payments with WooCommerce using Square means store owners need only update products once and push changes to either store when ready to sell online or offline.</p>\n<p>&#8220;WooCommerce and Square have a close working relationship around this integration, where we&#8217;re working together to on-board new merchants, receive their feedback, and adjust the integration to make sure the initial version is the best it can be,&#8221; said Matt Cohen, product lead for WooCommerce.</p>\n<p>When asked if Automattic gets a percentage of Square&#8217;s fee based on the volume of sales it drives through its payment system, Cohen said that the companies have an agreement in place to promote the extension on WooCommerce.com and in Square&#8217;s catalog. He would not elaborate on the terms of the agreement. However, with WooCommerce powering more than a third of all online stores, it would be surprising if Automattic did not secure a custom volume rate.</p>\n<p>Square customers who want to automatically connect their online and offline stores can find the new <a href=\"https://woocommerce.com/products/square/\" target=\"_blank\">Square for WooCommerce</a> extension on WooCommerce.com. Current Square customers can use their existing account details to configure their stores to accept payments with Square and start syncing inventory.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 14:39: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: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:83:\"WPTavern: Automattic Will Continue to Use React.js in Calypso Despite 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:29:\"https://wptavern.com/?p=58065\";s: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:94:\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-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:3234:\"<p><a href=\"https://developer.wordpress.com/calypso/\">Calypso</a> is an application <a href=\"https://ma.tt/2015/11/dance-to-calypso/\">developed by Automattic</a> that is built entirely with JavaScript using the <a href=\"https://nodejs.org/en/\">Node</a> and <a href=\"https://facebook.github.io/react/\">React</a> libraries. <a href=\"http://react-etc.net/\">React, etc</a>., a site that covers news related to the React library, recently <a href=\"http://react-etc.net/entry/your-license-to-use-react-js-can-be-revoked-if-you-compete-with-facebook\">published an article</a> highlighting how a license to use it in projects can be revoked.</p>\n<p>React contains a <a href=\"https://github.com/facebook/react/blob/master/PATENTS\">patent clause</a> that allows Facebook to revoke the license if certain conditions are met. The clause has raised concerns that Automattic could have its license revoked for Calypso if it competes directly with Facebook.</p>\n<p>Not long after the public release of Calypso, Paul D. Fernhout created <a href=\"https://github.com/Automattic/wp-calypso/issues/650#\">an issue</a> on the <a href=\"https://github.com/Automattic/wp-calypso\">project&#8217;s GitHub page</a>. Among a number of other reasons, Fernhout suggested that React be replaced with <a href=\"http://mithril.js.org/\">Mithril</a>, an alternative JavaScript library that doesn&#8217;t contain a clause.</p>\n<p>Paul Sieminski, General Legal Counsel for Automattic, <a href=\"https://github.com/Automattic/wp-calypso/issues/650#issuecomment-235086367\">responded to the ticket</a> explaining why the company will continue to use React in its products.</p>\n<p>&#8220;Automattic looked at the legal issues with Facebook&#8217;s patent license on React,&#8221; Sieminski said. &#8220;The termination provisions of the patent license aren’t ideal, but are not a blocker to using React as part of Calypso.&#8221;</p>\n<p>&#8220;The termination provisions don’t apply to the right to use the code &#8211; just the license included in the &#8216;PATENTS&#8217; file. This license gives React users permission to use Facebook&#8217;s patents on React. Facebook&#8217;s intentions in including this additional license are admirable. As they say <a href=\"https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/\">here</a> &#8211; &#8216;[t]his grant was designed to ensure that developers can use our projects with confidence.\'&#8221;</p>\n<p>According to Sieminski, &#8220;The companies with the greatest concern are those that have large patent portfolios and engage in offensive patent litigation, especially against Facebook.&#8221;</p>\n<p>&#8220;Automattic isn’t in that boat, and has no plans to be, so we’re comfortable using React under its current license,&#8221; he said.</p>\n<p>Considering <a href=\"http://www.vox.com/2014/5/9/5699960/this-court-decision-is-a-disaster-for-the-software-industry\">how complex patent laws are</a>, developers using React are encouraged to seek legal advice from a reputable lawyer to determine if your use case violates Facebook&#8217;s patent clause.</p>\n<p>Has the clause kept you from using React in your projects? Let us know in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 08:05: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:\"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:22;a:6:{s:4:\"data\";s:11:\"\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:27:\"HeroPress: Defining Success\";s: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:28:\"http://heropress.com/?p=1170\";s: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:38:\"http://heropress.com/defining-success/\";s: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:6937:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/07/072516-defining-sucess-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"You\'ll be happiest when you define success by the number of lives you touch for the better.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Defining Success\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Defining%20Success&via=heropress&url=http%3A%2F%2Fheropress.com%2Fdefining-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Defining Success\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fdefining-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fdefining-success%2F&title=Defining+Success\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Defining Success\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/defining-success/&media=http://heropress.com/wp-content/uploads/2016/07/072516-defining-sucess-150x150.jpg&description=Defining Success\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Defining Success\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/defining-success/\" title=\"Defining Success\"></a></div><p>When I first started HeroPress I assumed we&#8217;d get at <em>least</em> 1000 page views per day. How many WordPress developers are there in the world? Tens of thousands? Hundreds of thousands? What about bloggers? Users? Millions of them? Surely even a tiny tiny fraction of that would make for thousands of page views, right?</p>\n<p>I&#8217;m writing this on a warm Sunday afternoon in July. HeroPress operates on GMT, so we&#8217;re about 20 hours into the day. Want to know how many page views we&#8217;ve had so far today?</p>\n<p><img class=\"alignnone size-full wp-image-1171\" src=\"http://heropress.com/wp-content/uploads/2016/07/Selection_634.png\" alt=\"16\" width=\"178\" height=\"73\" /></p>\n<p>And that&#8217;s pretty average for a Sunday. Only once in the history of HeroPress have we had a 1000+ page view day. It was very exciting.</p>\n<p>There was a time when the (apparently) low traffic on HeroPress.com bothered me. I even thought about shutting it down a few times. Why bother if so few people read?</p>\n<p>The reason it bothered me is that I was measuring success by numbers. Page views, repeat visitors, even number of concurrent readers on a Wednesday . It was all about the numbers. How many people pull up the site in the browser? That&#8217;s what I wanted.</p>\n<h3>Shifting Perspectives</h3>\n<p>My perspective first started to shift when I went to WordCamp Pune. A young woman came up to me with tears in her eyes, shook my hand, whispered &#8220;Thank you&#8221; and slipped back into the crowd.  I didn&#8217;t see her again, but I&#8217;ll never forget her.</p>\n<p>People introduced themselves and told me their story with shining eyes, full of excitement.</p>\n<p>That trip was a huge boost for my spirits, but I still watched the numbers.</p>\n<h3>Stories That Need To Be Told</h3>\n<p>Typically I seek out HeroPress contributors. People rarely think their own story is interesting, I usually have to show them. In the months that followed Pune however, several people came to me and said &#8220;I have a story, and I really need to share it, can I share it on HeroPress?&#8221; So far I&#8217;ve accepted all of those, so you&#8217;ve read them.</p>\n<p>Their stories burned in their hearts, and they needed other people to know. To know there are people out there who want to help them learn, grow, and have a better life. That there are second, third, and fourth chances.</p>\n<p>Comments from people both on the site and in person let me know that it worked. People find hope in the essays. Not just happy feel-good, but actual hope, that maybe there&#8217;s something better out there for them too.</p>\n<h3>Casting a Wider Net</h3>\n<p>I recently visited WordCamp Europe in Vienna. I was truly surprised by how many people had heard of HeroPress, and even knew my name. Story after story came to me from a dozen different cultures about how HeroPress stories give people confidence to try new things, talk to people outside their culture, or try to use WordPress to make a better life.</p>\n<p>It was humbling to me to hear those individual stories. People whose lives had been been changed by their contact with our community, inspired by HeroPress essays.</p>\n<h3>Defining Success by Different Numbers</h3>\n<p>I still define success by numbers, but it&#8217;s not page views anymore. I&#8217;d be lying if I didn&#8217;t say it&#8217;s a little about stats, because countries matter to me. A wide net matters to me.</p>\n<p>The numbers I <em>really</em> watch these days are the number of people who tell me HeroPress means something to them. I don&#8217;t keep an actual tally, but as long as I keep hearing from even one person that they&#8217;ve been made better by what&#8217;s on this site I consider it a success.</p>\n<p>I don&#8217;t know if we&#8217;ll ever get huge readership, and at this point I&#8217;m not sure I care. What has HeroPress meant to you? I&#8217;d love to hear in the comments.</p>\n<h3>And You?</h3>\n<p>How do you define success in what you do? Is it number of sales? Number of support tickets answered? Page views?</p>\n<p>I&#8217;d like to suggest that you&#8217;ll be happiest when you define success by the number of lives you touch for the better.  Sure, that might be measured by a stat somewhere, but always remember the real value is in the sparkle in their eyes, and the joy in their hearts.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/defining-success/\">Defining Success</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Mon, 25 Jul 2016 00:28:33 +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:\"\";}}}}}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:70:\"HeroPress: How WordPress (literally) turned me into a brand new person\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1147\";s: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:72:\"http://heropress.com/essays/wordpress-literally-turned-brand-new-person/\";s: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:35567:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/07/071916-new-person-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It\'s fair to say that without the support of the WordPress community I wouldn\'t be the person I am today - literally.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How WordPress (literally) turned me into a brand new person\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20WordPress%20%28literally%29%20turned%20me%20into%20a%20brand%20new%20person&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-literally-turned-brand-new-person%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How WordPress (literally) turned me into a brand new person\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-literally-turned-brand-new-person%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-literally-turned-brand-new-person%2F&title=How+WordPress+%28literally%29+turned+me+into+a+brand+new+person\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How WordPress (literally) turned me into a brand new person\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/wordpress-literally-turned-brand-new-person/&media=http://heropress.com/wp-content/uploads/2016/07/071916-new-person-150x150.jpg&description=How WordPress (literally) turned me into a brand new person\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How WordPress (literally) turned me into a brand new person\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/wordpress-literally-turned-brand-new-person/\" title=\"How WordPress (literally) turned me into a brand new person\"></a></div><h3>In the beginning&#8230;</h3>\n<p>I&#8217;ve always been a geek. When I was in the third grade, I wanted to grow up to be an Egyptologist (or maybe a Marine Biologist; I changed my mind often). My dad built custom computers for a living, and early on, he taught me how to build and wire a computer from spare components.</p>\n<p>I built my first web page when I was eleven years old; basic HTML, tables for layout, animated GIFs, and all. My first true web site that actually had more than one page was a Star Trek: Voyager fan site. For that site, I learned how to use frames to make a site that looked like a Star Trek computer interface, and I found Javascript snippets that allowed me to change content in one frame when a new page loaded in another frame.</p>\n<p>As I learned more and more about the web, I was hooked. I started learning about PHP, and realized I could make header and footer files, so that I didn&#8217;t have to edit every web page on my site when I added a new page.</p>\n<h3>Discovering WordPress</h3>\n<p>And then, about 12 years ago, I installed WordPress for the first time. Blogging was this brand new thing that lots of other geeks were doing, and so I jumped on the bandwagon. I was 19 years old, living with my mom, working a low-paying job at a book store, and going to school part time. Ya know, basically living the dream.</p>\n<p>WordPress was just about a year old at this point. There were no plugins or themes; you hacked core if you wanted to change the look of your blog. It was like the Wild West.</p>\n<p>And I loved it.</p>\n<p>Really, I enjoyed the process of changing the layout of my blog, editing the &#8220;theme&#8221; to make it look how I wanted. I got more of a kick out of that, than I did actually writing about myself.</p>\n<p>Fast forward a few years; I left the book store I&#8217;d been working at behind, and started working as a Pharmacy Technician. I loved that job, but it was stressful. I got yelled at by patients when their doctor didn&#8217;t call in their prescription, and somehow it was my fault their copay went up when their insurance changed in the new year.</p>\n<blockquote><p>Blogging became sort of a catharsis; a way to vent when I got home about everything that stressed me out during the day.</p></blockquote>\n<p>It also helped me find community. I followed and commented on a ton of other pharmacy blogs. The pharmacy blogging community was, and still is, a really tight-knit group. I made friends in the WordPress Forums. I made friends from all over the world and all walks of life.</p>\n<p>In 2009, I moved here to New York, from where I&#8217;d grown up, in the Washington, DC area. I&#8217;d only been to New York a couple of times before; once on a school field trip, and once to see a comedy film at the Staten Island film festival.</p>\n<p>But I needed a change of scenery from the non-stop politics of the DC beltway, and after that trip to New York, I had decided that I wanted to move here.</p>\n<h3>My first WordCamp</h3>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/nyc.jpg\"><img class=\"size-medium wp-image-1165\" src=\"http://heropress.com/wp-content/uploads/2016/07/nyc-300x241.jpg\" alt=\"New York City, my home for a little over five years.\" width=\"300\" height=\"241\" /></a>New York City, my home for a little over five years.\n<p>Fairly soon after I got to New York, I learned that there was going to be this event called &#8220;WordCamp,&#8221; where you could spend two whole days learning about WordPress and meeting other people from the WordPress community. And tickets were only $40, including a t-shirt and lunch on both days!</p>\n<p>Now, I&#8217;d just moved to New York. I was working in a retail job, and I was renting a room in an apartment in Washington Heights (the upper end of Manhattan).</p>\n<blockquote><p>There were nights I ate popcorn for dinner because I didn&#8217;t get paid until Friday. I was lucky if I had ramen.</p></blockquote>\n<p>So, as you might imagine, even $40 for something like this was hard to come by.</p>\n<p>And then, I heard that if you volunteered at WordCamp, you could get a free ticket! For anybody  who knows me, it&#8217;ll come as no great shock that I spent most of the weekend volunteering. I&#8217;d only signed up to help with folding t-shirts the night before, and to help with registration on both mornings.</p>\n<p>But I ended up spending most of the event walking from room to room, making sure everything was running on time.</p>\n<p>By the end of Saturday, I was exhausted, but I was hooked.</p>\n<p>I&#8217;m an introvert; socializing doesn&#8217;t come easy for me. But volunteering at WordCamp gave me a purpose in talking to people. My common interest with other attendees made it easy to strike up conversation.</p>\n<p>After lunch on Sunday, my feet had finally given out, and I&#8217;d collapsed in a chair in our registration area.</p>\n<p>And finally, Sunday afternoon, as WordCamp was ending, and everybody was coming down from the high generated by all of the weekend&#8217;s excitement, I found out that there was going to be another WordCamp in Boston a couple of months later.</p>\n<p>For those two months, I scrimped and saved, begged and borrowed, every penny I could, and just barely managed to come up with enough to take the bus up to Boston for the weekend. I made even more friends, from even more places. They didn&#8217;t need any more volunteers, so I actually spent the weekend attending sessions!</p>\n<p>Over the course of that weekend, I found myself talking with people in the hallways a lot. And I guess I sounded like I knew what I was talking about, because a lot of those conversations involved me giving advice about people&#8217;s sites, what plugin to use to solve a problem, stuff like that.</p>\n<p>And I realized a couple of things:</p>\n<p>A. I knew way more about WordPress than I realized, and</p>\n<p>B. I really loved being able to help people.</p>\n<h3>Wanderlust</h3>\n<p>Over the next couple of years, I went to half a dozen WordCamps, in Philadelphia, Baltimore, Chicago, New York again.</p>\n<p>I became hooked on traveling. Every few months, I visited a new city for the first time. I used WordCamp as an excuse to visit my older brothers in Minneapolis. I volunteered or spoke at almost every WordCamp I went to. And I ended up becoming one of the lead organizers for WordCamp NYC in 2012 and 2014.</p>\n<p>By that time, I&#8217;d also moved on from working in a pharmacy to working at the Apple Store. I eventually moved to the Genius Bar, where, even though it wasn&#8217;t WordPress, I got to help people solve tech problems.</p>\n<p>It was a job I enjoyed a lot more, one that payed a decent amount better, and made it easier to travel to far off places&#8211;which at this point, I already knew I couldn&#8217;t get enough of.</p>\n<p><strong>I wanted to travel the world.</strong></p>\n<p>It became an obsession, really. I spent hours online reading stories about people traveling around, working odd jobs here and there to make their way from country to country. And then, I found out, since I was under 30, I was eligible for something called a &#8220;Working Holiday&#8221; visa in Australia. Basically, it lets you move there for up to a year and work to pay your way, with the only caveat being you could only work for the same company for up to 6 months.</p>\n<p>So again, I scrimped and I saved, and planned for over a year. The visa itself cost almost $500, but that was nothing compared to the total cost of picking up roots and moving halfway around the world. It certainly wasn&#8217;t cheap, but I was lucky enough to be in a position in life that allowed me to do it. For that whole year, I didn&#8217;t go out to the movies. I rarely ate out, even at fast food. Foolishly or not, I took some money out of my 401k, so that I&#8217;d have enough money to get me through until I could get set up down under.</p>\n<blockquote><p>And when I had enough money, I bought a one way ticket from New York to Australia.</p></blockquote>\n<p>My finger hovered over that &#8220;purchase&#8221; button for what seemed like hours, but was probably just a few minutes. After I clicked, a wave of emotion hit me like a tsunami:</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/fruitstand.jpg\"><img class=\"size-medium wp-image-1164\" src=\"http://heropress.com/wp-content/uploads/2016/07/fruitstand-300x225.jpg\" alt=\"I worked at the iconic glass cube on Fifth Avenue in New York (we often called it the Fruit Stand). This was taken on my last morning of work before setting off for the great unknown.\" width=\"300\" height=\"225\" /></a>I worked at the iconic glass cube on Fifth Avenue in New York (we often called it the Fruit Stand). This was taken on my last morning of work before setting off for the great unknown.\n<p>&#8220;Wow, I&#8217;m really doing this!&#8221;</p>\n<p>&#8220;Wait, am I really doing this?&#8221;</p>\n<p>&#8220;Oh, crap, I&#8217;m really doing this.&#8221;</p>\n<p>A few months later, I said goodbye to my job at the Apple Store. I&#8217;d worked there for nearly 4 years, and some of my coworkers were my closest friends. My last day was the iPhone 6 launch.</p>\n<p>Apple has a tradition of &#8220;clapping out&#8221; employees on their last day, and at the end of my final shift, I was no exception. My coworkers gathered in the hallway outside the backroom, cheered for me, hugged me&#8211;I was in tears. It really hadn&#8217;t hit me until this moment that I was leaving almost everything and everyone I knew behind.</p>\n<p>I did have a few stops on my way out of the country. I wanted to visit my family in Minnesota one more time before leaving. Also, WordCamp San Francisco, which I&#8217;d been asked to help run volunteers for, was happening a couple of weeks before I was due to leave. So I decided to spend a few weeks in California.</p>\n<h3>The first WordCamp that changed my life</h3>\n<p>Most of the people who ran WordCamp San Francisco worked at Automattic, the company that runs WordPress.com, Jetpack, Akismet, and more. And I&#8217;d been wanting to work for Automattic ever since my very first WordCamp, when I first met people who worked there.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/wcsf.jpg\"><img class=\"size-medium wp-image-1166\" src=\"http://heropress.com/wp-content/uploads/2016/07/wcsf-300x227.jpg\" alt=\"I was too busy making sure everything was in place for volunteers at WCSF, but I did manage to take one photo during lunch.\" width=\"300\" height=\"227\" /></a>I was too busy making sure everything was in place for volunteers at WCSF, but I did manage to take one photo during lunch.\n<p>I arrived in San Francisco about a week before WordCamp, and spent the week working out of Automattic&#8217;s offices there, making sure everything was in place for the weekend. I got to talk to even more Automatticians, and since I was in charge of volunteers for the weekend, I got to boss a lot of them around.</p>\n<p>I had a rare opportunity to spend a lot of time with the people who worked there. An experience made even more rare by the fact that, since pretty much everybody at the company works from home&#8211;wherever that may be&#8211;it&#8217;s not very often that that many employees are in one place.</p>\n<p>By the end of the weekend, more than one of them encouraged me to submit an application to work for Automattic.</p>\n<blockquote><p>And I could feel in my bones that it was where I was supposed to be. So that very night, I polished up my resume, and sent it in by email.</p></blockquote>\n<p>But the application process takes time&#8211;WordCamp ended, and I had a plane to catch.</p>\n<h3>Out into the great unknown</h3>\n<p>Before I left the US altogether, I visited a few friends in San Diego, and even attended one last WordCamp&#8211;the smallest one to date, with only about 50 attendees&#8211;WordCamp Ventura. It was one last opportunity to see and make friends before leaving a continent behind.</p>\n<p>I boarded a plane at LAX at about 9:00 on a Tuesday night. I should have been exhausted, but I was so excited, I had energy to burn. Sitting there on the tarmac, waiting for takeoff, I reflected on how far I&#8217;d come, and how far I was about to go, and even though I had a 12-hour overnight flight ahead of me, I didn&#8217;t sleep a wink.</p>\n<p>As luck would have it, the best flight deal I could find from the US to Australia had a layover in Fiji, for just under 24 hours. When I booked the flight, I checked, and it turned out making the layover 5 days instead of one only added about $100 to the cost of the flight. I found accommodation at a hostel right on the beach for about $8/night, and that included a free ride to and from the airport.</p>\n<p>I was like &#8220;$150 side trip to Fiji for 5 days? Sign me up!&#8221;</p>\n<p>I got to the hostel about 6:00 in the morning, long before my bed was ready; check-in was normally at 1pm, I was told.</p>\n<blockquote><p>Being awake for 36 hours finally had caught up to me, so I collapsed in a hammock outside in the shade, and finally went to sleep.</p></blockquote>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/fijitime.png\"><img class=\"size-medium wp-image-1155\" src=\"http://heropress.com/wp-content/uploads/2016/07/fijitime-300x225.png\" alt=\"The view from the hammock I slept in while waiting for my bed to be ready.\" width=\"300\" height=\"225\" /></a>The view from the hammock I slept in while waiting for my bed to be ready.\n<p>They managed to get my bed ready a couple hours early, and so at 11:00, I dragged my feet and my suitcase over to the building I&#8217;d be sleeping in for the next few days, and slept until just after dusk.</p>\n<p>I spent the next few days lounging in hammocks, taking swims in the ocean, and exploring the tiny town of Nandi just outside of the airport. I took day tours, and spent an afternoon relaxing in mud baths, then getting a deep tissue massage that seemed to go on forever. One day, a bunch of people from the hostel took a bus all the way across the island&#8211;about a 2 hour journey&#8211;to watch a Rugby tournament that some of the hostel&#8217;s staff members were playing in. Our team didn&#8217;t win, but it was fun to watch, so we didn&#8217;t care.</p>\n<p>We spent the nights sitting around a fire, singing songs, and drinking Kava&#8211;a somewhat intoxicating drink that tasted like dirt, but made you happy and carefree.</p>\n<p>Those five days seemed like a lifetime, but they did finally end, and I had another plane to catch.</p>\n<h3>Back to reality</h3>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/operahouse.png\"><img class=\"size-medium wp-image-1157\" src=\"http://heropress.com/wp-content/uploads/2016/07/operahouse-300x225.png\" alt=\"When I first laid eyes on the Sydney Opera House, I stood in wonder for what felt like hours. \" width=\"300\" height=\"225\" /></a>When I first laid eyes on the Sydney Opera House, I stood in wonder for what felt like hours.\n<p>So, after one last flight, this one, mercifully only about 5 hours, I finally landed in Australia, Sydney to be exact. As corny as it sounds, I&#8217;d fallen in love with the city after watching Finding Nemo.</p>\n<p>I had spent so much time planning the &#8220;getting to Australia,&#8221; part of my journey, that I didn&#8217;t really have any solid plans for what to do after I got there.</p>\n<p>The first order of business was finding a long-term place to stay, and the second was finding a job.</p>\n<p>I had originally planned to transfer to an Apple Store in Sydney. But, as happens in large companies, I got caught in a quagmire of bureaucracy, and didn&#8217;t actually have a job waiting for me when I got to Australia. I met with managers at the store, and they were excited to have me come aboard, but there was a lot of red tape to get through.</p>\n<p>And so a couple of months went by, and my savings were rapidly depleting.</p>\n<blockquote><p>For a couple of weeks, just to pay my rent and buy some food, I spent hours every day as a street performer in one of the popular shopping areas in Sydney.</p></blockquote>\n<p>I&#8217;d gone to the Aussie equivalent of Best Buy, bought an amp and a microphone, and connected it all to my phone playing some Karaoke tracks.</p>\n<p>It was summertime, and just before Christmas, so there were lots of shoppers out and about, and in a giving mood. The Saturday before Christmas, I took in $300 in about 4 hours. It was really fun, and I made a lot of friends in other buskers, and some of our regular fans, but I couldn&#8217;t keep it up forever.</p>\n<h3>Finally, a paycheck&#8230;</h3>\n<p>Just as my savings were about to run out, and it looked like I might have to borrow money to head back to the States, I heard back from Apple. They wanted me to start working at the store in a couple of weeks. On that very same day, I got an email from Automattic. Over the previous few weeks, I&#8217;d interviewed with a hiring manager, and done a small project, and that day, they asked me to start a 6 week trial as a Happiness Engineer.</p>\n<p>I&#8217;d gone from having no jobs, singing on the street just so I wouldn&#8217;t be living on the street, to having two full time jobs at the same time, and raking in the dough.</p>\n<p>And so, I would wake up early in the morning, and spend a couple hours answering WordPress support tickets, then walk to the Apple Store and work a full 8 hour shift, and still come home and spend a few more hours working on tickets. I didn&#8217;t take a day off for over a month.</p>\n<p>But, six weeks into my trial, I found out I was going to be passed on to Automattic&#8217;s CEO&#8211; a guy you might have heard of, named Matt Mullenweg&#8211;for the final interview. I had to ping him every day to ask if he was available, and after about a week, we chatted for hours-six long, but engaging hours, about everything from Karaoke, to what books I liked, to my traveling around the world.</p>\n<blockquote><p>And at the end of the chat, Matt offered me the job. I would start full time at Automattic in a couple of weeks.</p></blockquote>\n<p>And so, I gave my notice at Apple, and to celebrate, in the long weekend I had before starting at Automattic, I took a trip to the Great Barrier Reef.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/kangaroo.jpg\"><img class=\"size-medium wp-image-1156\" src=\"http://heropress.com/wp-content/uploads/2016/07/kangaroo-300x243.jpg\" alt=\"The kangaroos at the sanctuary were quite friendly! As long as you had food to offer them, anyway.\" width=\"300\" height=\"243\" /></a>The kangaroos at the sanctuary were quite friendly! As long as you had food to offer them, anyway.\n<p>I had to fly up to Brisbane, then take an all day tour bus to a town hear the coast. We stopped at tourist traps along the way, including a sanctuary for kangaroos, koalas, emus, and more. That evening, we finally got to a small coastal town, with a population of <em>maybe</em> a few hundred.</p>\n<p>The next day, the winds were too high on the seas for us to safely take a boat out. Instead, our tour guide took us to the top of a cliff overlooking the beach that night.</p>\n<p>There were no cities for miles around, and I saw the entirety of the Milky Way in the sky for the first time in my life. That had a profound effect on me; it really hit home just how insignificant we really are in the universe.</p>\n<p>The next day, we took a boat out to the reef, and I got to snorkel for a few hours. I did what Finding Nemo had made me want to do; watch see turtles play and look for &#8220;annemenenennones.&#8221;</p>\n<p>And I found Nemo!</p>\n<h3>On my own for the first time&#8230;</h3>\n<p>Once I got back to Sydney, it was time to buckle down, and get to work. I had to buy, then set up my new computer. I went through some more training, settled into a routine, and attended my team&#8217;s weekly chats, which were at midnight, thanks to the time zone difference.</p>\n<p>That didn&#8217;t stop me from exploring, though.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/outback.jpg\"><img class=\"size-medium wp-image-1154\" src=\"http://heropress.com/wp-content/uploads/2016/07/outback-300x246.jpg\" alt=\"40,000 feet over the Australian outback, on my way to Bali, it seemed like I was over an alien planet.\" width=\"300\" height=\"246\" /></a>40,000 feet over the Australian outback, on my way to Bali, it seemed like I was over an alien planet.\n<p>Easter weekend, I took a side trip to Bali, Indonesia; flying there was actually cheaper than most destinations within Australia!</p>\n<p>I traveled inland to a small town near the center of the island named Ubud. And while I was there, I stayed in a treehouse (albeit, a treehouse with wifi and air conditioning).</p>\n<p>Every night, I got a full body oil massage for about $15 USD. I went to a monkey forest reserve, and spent hours playing with the monkeys. One even climbed up on my shoulder to grab a piece of fruit I was offering it.</p>\n<p>A month or so later, I went to a WordCamp in Brisbane. Since I could work from anywhere, I rented an AirBNB for the month there, and had an apartment all to myself, for the first time in my life.</p>\n<h3>A moment in crisis</h3>\n<p>It&#8217;s funny how living in a place by yourself is a completely different mentality from sharing one with family or roommates.</p>\n<p>What I didn&#8217;t know was just how much it would affect me.</p>\n<p>You see, I&#8217;d been struggling with something all my life; something I&#8217;d kept hidden from everybody around me, sometimes even from myself.</p>\n<p>Growing up, I always knew I was different somehow. It wasn&#8217;t until my teenage years that I was able to put a name to it, though.</p>\n<p>All my life, I was told I was a boy, by family, by friends, by society. I believed it, too. After all, if everyone calls you something for long enough, you tend to end up believing it&#8217;s true.</p>\n<p>But, in my heart, I knew I was different. I was really a girl.</p>\n<blockquote><p>I&#8217;d find out later that this was called being transgender.</p></blockquote>\n<p>Looking back, I can see signs that I wasn&#8217;t what everyone thought I was from my earliest memories, but it wasn&#8217;t until puberty hit that everything really started feeling wrong. My body wasn&#8217;t growing the way it was supposed to.</p>\n<p>The teen years are known for being a pressure-filled, anxiety-ridden period in anybody&#8217;s life.</p>\n<p>Mine was that way for the same reasons as most teenagers, but also because I had to hide who I really was. At the time, all I knew about trans people was what you saw on Maury and Jerry Springer, and the occasional transphobic jokes in TV shows and movies.</p>\n<p>I didn&#8217;t want to be one of those caricatures, so I buried my feelings deep down into myself, so that eventually, even I believed they weren&#8217;t real.</p>\n<p>But, every once in a while, they&#8217;d resurface. And I&#8217;d bury them back down because I was afraid. I was afraid that roommates would see me for the impostor that I felt like. Or that they&#8217;d be disgusted. I could never let my guard down.</p>\n<p>When I moved into that first apartment of my own, though, a couple of things happened:</p>\n<p>First, I was able to let my guard down. There was nobody around to worry about seeing me.</p>\n<p>More importantly, though, I came across a Facebook post of a former coworker who had transitioned earlier in the year.</p>\n<p>She&#8217;d originally made a big post on Facebook announcing that she was transitioning, but it happened during a time when I wasn&#8217;t really looking at Facebook, and by the time I was looking again, I had missed the post, and she had changed her name and profile image, so that I didn&#8217;t put two and two together.</p>\n<p>But in June, for the first time since transitioning (that I saw anyway), she posted a picture of herself. I practically did that double-take that they show in cartoons: &#8220;Is that who I think it is?&#8221;</p>\n<p>And so, I spent that evening reading back through all of her posts from the last six months. She talked about the feelings she&#8217;d had since she was a kid, and how she came to terms with them.</p>\n<blockquote><p>I sat there for hours, until the sun came up. At some point&#8211;I don&#8217;t know when&#8211;I started sobbing. Everything she was saying punched me in the gut like a prize-fighter.</p></blockquote>\n<p>These were the same feelings I&#8217;d suppressed all of these years&#8211;to a tee.</p>\n<p>I&#8217;ve heard before that when you&#8217;re transgender, before you can accept yourself and start to transition, two things need to happen:</p>\n<p>First, you need to realize you <strong>can</strong> do it.</p>\n<p>Then, you need to realize that <strong>you</strong> can do it.</p>\n<p>I already knew that it was possible to transition. Back when I worked in the pharmacy, I filled lots of hormone prescriptions for trans women.</p>\n<p>But reading my friend&#8217;s posts helped me realize that transitioning was something I could do. That I needed to do.</p>\n<p>I was in crisis mode. I was half a world away from everyone I knew, my family, my friends.</p>\n<p>I was scared. I wanted to go home, but I still had about four months to go until I came back to the US.</p>\n<h3>Starting a new journey, while already on another one</h3>\n<p>I wanted to go home early. Several times, I&#8217;d gone to booking sites, and held my finger over the purchase button with a different kind of trepidation than I&#8217;d had when I originally bought my ticket to Australia.</p>\n<p>But I&#8217;d already agreed to speak at a WordCamp in Pune, India in September, so if I went home early, it would mean cancelling that (and letting down one of my coworkers who&#8217;d worked hard to get me invited and approved to go in the first place).</p>\n<p>So, I carried on. I found a therapist that would talk with me online, to help me through all of the anxiety and depression I was going through. By the time we finished a couple of sessions, I was absolutely certain that transitioning was right for me.</p>\n<p>I muddled through the rest of my time abroad. I didn&#8217;t really go out much and explore the cities I had left to visit, though I did some. I&#8217;d started chatting with my friend whose posts had led to my own epiphany. Both she and the therapist I was talking to helped me through the worst of the homesickness.</p>\n<p>I kept working, and eventually, the trip to India came. I had a weekend in Pune, a month in Mumbai, then back home to the US. I enjoyed India a lot. I met a lot of people at WordCamp, who treated me like a rockstar for working at Automattic. And oh yeah, Topher (ya know, the guy who runs this site?) was there, too. <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<h3>Finally back home</h3>\n<p>After those final few weeks in India, September 30th finally came, and I was glad to be heading back home to the US. I&#8217;d spent the last few months making plans, and one of them was to tell my family.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/overgreenland.jpg\"><img class=\"size-medium wp-image-1162\" src=\"http://heropress.com/wp-content/uploads/2016/07/overgreenland-300x225.jpg\" alt=\"The view from the plane over Greenland, as I was finally on my way back home.\" width=\"300\" height=\"225\" /></a>The view from the plane over Greenland, as I was finally on my way back home.\n<p>After two 9.5 hour flights from Mumbai to Paris, then Paris to Minneapolis, I was home. I wanted to tell my family (who I knew would be supportive) right away.</p>\n<p>But every time I tried, my throat closed up and my eyes started to well up with tears.</p>\n<p>Once I told them, there would be (in my mind, anyway) no going back. It took a few days, but I ended up telling them one at a time&#8211;via text message, so that I could say everything I wanted to say without stumbling.</p>\n<p>Of course, my family accepted me for who I was, like I knew they would. But I still had to tell the rest of the world. So many people at work and in the WordPress community knew me already, so doing it under the radar wasn&#8217;t going to happen. And really, I&#8217;d spent my whole life hiding this part of me, and I didn&#8217;t want to hide anything any longer than I had to.</p>\n<p>So, I made another plan to tell my coworkers, my WordPress friends, then everybody else.</p>\n<h3>The second WordCamp that changed my life</h3>\n<p>As it turned out, WordCamp US was coming up in December, just about a week before my birthday. I thought that would be the perfect opportunity to tell a small group of people, just so they would have my back in case anybody acted like a jerk when I later posted online that I&#8217;d be changing my name.</p>\n<p>I&#8217;d already worked with my HR at work to come up with the right language for a blog post on our internal updates blog. And I would later use almost the same text when I posted to Facebook and my blog.</p>\n<p>So WordCamp came, and I pulled over the few people that I wanted to talk to, and started telling people.</p>\n<p>I told that small group of 5 during the community summit before WordCamp. Every single one of them told me they were happy for me, and thanked me for trusting them enough to tell them first.</p>\n<p>And so, that was that. I&#8217;d already scheduled the blog posts (both internal at work and my own blog) and the Facebook post to go out a few days after WordCamp.</p>\n<p>Or so I thought.</p>\n<blockquote><p>What I didn&#8217;t realize is just how much I&#8217;d missed my friends from the WordPress community.</p></blockquote>\n<p>I made new WP friends while traveling in Australia and India, for sure, but most of my friends were in Europe and the US, so WordCamp US was my first opportunity to see most of them.</p>\n<p>I saw people I hadn&#8217;t seen in over a year, sometimes longer, and I didn&#8217;t want to pretend with them anymore. And so, I started pulling them aside, one at a time.</p>\n<p>Every single one of them pretty much had the same three responses:</p>\n<p>&#8220;Congratulations on finally being able to be yourself,&#8221;</p>\n<p>&#8220;If you need to talk to someone, let me know,&#8221; and</p>\n<p>&#8220;If anybody gives you trouble, I&#8217;ll punch them.&#8221; (Thankfully that one didn&#8217;t become necessary.)</p>\n<p>Every time I told someone, and they reacted that way, I felt happier and happier. By the end of the weekend, when I&#8217;d planned to tell 5 people, I ended up telling several hundred; who knew I had that many WordPress friends?!</p>\n<p>The community I&#8217;d surrounded myself made me feel loved, and I knew what I was doing was right.</p>\n<p>A few days later, the blog and Facebook posts went out, and all of my friends and coworkers who weren&#8217;t at WordCamp finally knew.</p>\n<p>And I felt free.</p>\n<h3>And it&#8217;s all thanks to WordPress</h3>\n<p>Discovering WordPress opened up a whole new world for me. It started me on a whirlwind journey that nobody could&#8217;ve known where it would eventually take me.</p>\n<p>I look back at myself&#8211;when I started using WordPress&#8211;and I&#8217;m amazed. It&#8217;s hard to imagine that I was once that 19 year old kid, with a low paying job, living at home with a single parent, struggling to make ends meet, and just going through the motions of life without really living.</p>\n<p>Now, I&#8217;ve got an amazing job, friends and family that love me for who I am, and I can finally live my life without pretending to be someone I&#8217;m not.</p>\n<blockquote><p>Twelve years ago, I could never have imagined that I&#8217;d end up working for a company, and part of a community, that was full of so many accepting people. A community that placed a priority on making sure that all were welcome.</p></blockquote>\n<p>It&#8217;s fair to say that without the support of the WordPress community, I wouldn&#8217;t be the person I am today&#8211;literally.</p>\n<p>And to think it&#8217;s all because I started a blog over a decade ago.</p>\n<p><small>All photos in this post were taken by Amy Lane, and are licensed under a <a href=\"http://creativecommons.org/licenses/by-sa/4.0/\" rel=\"license\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</small></p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/wordpress-literally-turned-brand-new-person/\">How WordPress (literally) turned me into a brand new person</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:8:\"Amy Lane\";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:62:\"HeroPress: How to Learn WordPress Without Doing It on Your Own\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1138\";s: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:\"http://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\";s: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:10290:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/07/071316-following-your-dream-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pullquote: There\'s nothing that will spur you on more in life than following your dream\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How to Learn WordPress Without Doing It on Your Own\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20to%20Learn%20WordPress%20Without%20Doing%20It%20on%20Your%20Own&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Flearn-wordpress-without-doing-it-on-your-own%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How to Learn WordPress Without Doing It on Your Own\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Flearn-wordpress-without-doing-it-on-your-own%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Flearn-wordpress-without-doing-it-on-your-own%2F&title=How+to+Learn+WordPress+Without+Doing+It+on+Your+Own\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How to Learn WordPress Without Doing It on Your Own\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/&media=http://heropress.com/wp-content/uploads/2016/07/071316-following-your-dream-150x150.jpg&description=How to Learn WordPress Without Doing It on Your Own\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How to Learn WordPress Without Doing It on Your Own\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\" title=\"How to Learn WordPress Without Doing It on Your Own\"></a></div><p>Wait, what?</p>\n<p>Okay, the headline might be a bit confusing, but bear with me. It all makes sense, I promise.</p>\n<p>Let&#8217;s start somewhere else, though.</p>\n<p>Hi, I&#8217;m Madalin Milea, and I am a technology professional based out of Rennes, France. I&#8217;m self-employed, a WordPress enthusiast, collaborating with <a href=\"http://www.codeinwp.com/blog/\">CodeinWP</a> (one of the top blogs about WordPress), and a member of the support team at <a href=\"http://themeisle.com/\">ThemeIsle</a>. I also maintain my own blog at <a href=\"http://madalinm.com/\">M.Online</a>, writing about a variety of topics such as blogging, WordPress and programming.</p>\n<p><img class=\"alignnone size-large wp-image-644\" src=\"http://madalinm.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-17-at-5.59.05-PM-1024x580.png\" alt=\"Screen Shot 2016-06-17 at 5.59.05 PM\" width=\"810\" height=\"459\" /></p>\n<p>But I didn&#8217;t start like that. I studied Management and Economics for three years. It seemed like a sensible option, but while I knew I was gaining some useful skills, I also wanted more. I had a feeling I wasn&#8217;t yet on the right track.</p>\n<p>So I went right back to square one and started out on a new path &#8211; programming; a field that had always had a magical allure for me, something I&#8217;d always dreamed of doing but never thought possible.</p>\n<p>I obviously needed to learn a lot about WordPress, programming, and all things related before I could collaborate with companies like ThemeIsle, or before anyone would even hire me as a freelancer, for that matter.</p>\n<p>So how do you do that? How do you go from studying Economics and being a phone center technician (which I used to do), to a WordPress developer?</p>\n<p>Well, WordPress and programming in general are very interesting fields. First off, the way &#8220;mastering those fields&#8221; works is unheard of when compared to other fields. For example, if you want to be a doctor, you have no way of obtaining the necessary education on your own, through blog posts or whatever. You need to go to school. With programming, you very well <em>can</em> be self-taught, right from the start, all the way to being an expert.</p>\n<p>But maybe this is not the best path to take after all&#8230; Maybe you&#8217;re better off not learning everything all on your own? I mean, I found the amount of info available out there on the web rather overwhelming. There&#8217;s just soooo much stuff. Where does one start?</p>\n<h2>How to begin pursuing a new skill</h2>\n<p>I, for instance, decided to look for some online courses that could help me learn in a more easy-to-grasp way. So, after several hours of searching, I stumbled upon some <a href=\"https://www.udemy.com/\">Udemy</a> courses on sale over at <a href=\"https://deals.creativebloq.com/\">Creative Bloq Deals</a>.</p>\n<p>At first, they seemed interesting, but after a few days, I felt quite discouraged. It all seemed too complicated, I thought I&#8217;d never manage to learn anything. For a moment, I worried that I would never become a programmer. But I&#8217;m certainly not the one to give up easily, so I asked around for other ideas.</p>\n<p>One <a href=\"http://ionutn.com/\">friend of mine</a> recommended the <a href=\"https://teamtreehouse.com/\">Treehouse</a> courses and told me that there&#8217;s two weeks of free trial available (with full access). That seemed fair enough, so I gave it a go.</p>\n<p>Long story short, it turned out to be a brilliant decision, and looking back, perhaps one of the best career decisions I&#8217;ve ever made. After only two weeks, I was already fascinated by the courses and the team running them.</p>\n<p>It was during this time that I found my enthusiasm for WordPress and developed my skills. The Treehouse course structure really made things easy to follow. I was really taken with the whole experience.</p>\n<p>In just one year, I&#8217;ve learned PHP, JavaScript, CSS, and HTML. This has helped me to grow my new career as a freelancer, and allowed me to feel comfortable with things like creating themes, websites, and even plugins. This gives me a great feeling of satisfaction.</p>\n<p>In hindsight, I could have started with random free info that&#8217;s available on countless websites, but it wouldn&#8217;t have given me a natural step-by-step progression that a structured course does.</p>\n<p>So my message is this:</p>\n<blockquote><p>Even if you set out to learn a new skill on your own, you don&#8217;t actually need to be on your own the whole time.</p></blockquote>\n<p>Get guidance from someone or someplace that really knows what they&#8217;re doing!</p>\n<p>And please don&#8217;t get me wrong, I&#8217;m not saying that Udemy courses aren&#8217;t any good, but in my case, Treehouse has just turned out to be perfect, considering my newbie level. I want to thank the team (especially Zac Gordon and Nick Pettit, my favorite teachers) for their wonderful work.</p>\n<h2>&#8220;Can I make the move?&#8221;</h2>\n<p>You might be at that point when you just can&#8217;t decide what you want to do with your life, or maybe all your previous ideas or your parents&#8217; ideas don&#8217;t seem all that exciting anymore.</p>\n<p>That&#8217;s alright.</p>\n<p>You can always pivot. <em>Change</em> really isn&#8217;t as hard as you might think if you&#8217;re motivated and hard working. There&#8217;s nothing that will spur you on more in life than following your dream. Whether you&#8217;d love to be a web developer, write mobile apps, computer games or start your own award winning blog, you can do it.</p>\n<p>There are so many resources out there, some you pay for, but many are free. You can easily find a wealth of knowledge or even just people willing to share their expertise.</p>\n<p>Once you find the right route for you, like I did, you&#8217;ll be full of motivation, and it&#8217;s this motivation that will get you there. The thought of a new career doing what you love will inspire you to put in a couple of hours each evening after work mastering a new skill.</p>\n<p>Over the years I&#8217;ve learned a lot. These days, my areas of expertise include WordPress development, team management, programming and SEO. It&#8217;s my desire to learn more that has always pushed me forward. Every day, I expand my knowledge and hone my skills as a problem solver and effective developer.</p>\n<p>You always have to remember that nothing is easy, but when you overcome obstacles, you get a huge sense of achievement. For me, it&#8217;s so frustrating when I just can&#8217;t understand something. It would be easy to give up and think it&#8217;s simply beyond me, but if you persevere, the sense of achievement when you have that &#8220;A-ha!&#8221; moment is incredible. Just in the last year, I gained a set of skills that seemed pretty much impossible to me before.</p>\n<p>So again, whatever skill you want to master, don&#8217;t set out to do it on your own. Find quality sources of information, and don&#8217;t stop until you stumble upon something that fits.</p>\n<p><strong>What&#8217;s your dream career? Have you taken the first steps to make it a reality?</strong></p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\">How to Learn WordPress Without Doing It on Your Own</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:\"Madalin Milea\";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:24:\"HeroPress: Making Family\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1101\";s: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:42:\"http://heropress.com/essays/making-family/\";s: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:19817:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/07/070615-family-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pullquote: The longer we\'re a part of the WordPress community the more I realize we\'re not making friends, we\'re making family.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Making Family\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Making%20Family&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-family%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Making Family\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-family%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-family%2F&title=Making+Family\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Making Family\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/making-family/&media=http://heropress.com/wp-content/uploads/2016/07/070615-family-150x150.jpg&description=Making Family\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Making Family\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/making-family/\" title=\"Making Family\"></a></div><p>It&#8217;s not uncommon for me to ask someone to write a HeroPress essay and have them respond with &#8220;Why me? I&#8217;m not really on the periphery of anything. WordPress didn&#8217;t really help me overcome any hardship&#8221;. Almost every time I help them realize what an impact WordPress has made on their life, and how it has enabled them.</p>\n<p>It took me quite a while to walk that path myself. I was a web developer for 15 years before I started working with WordPress, and if I hadn&#8217;t found WordPress I&#8217;d still be a web developer, and making a good happy living.</p>\n<p>While WordPress as a technology made my career more pleasant, and certainly easier, the thing that has changed my life, and the life of my family, is unquestionably the WordPress community.</p>\n<h3>Who I Am</h3>\n<p>Another common requirement for writing a HeroPress essay is that you need to write to an audience. Who is this message for? This essay is for people like me. Read on and see if you&#8217;re like me.</p>\n<p>People call me Topher, and for the new folks, I manage this little site. I&#8217;ve often said that everyone is on the periphery of something. I don&#8217;t <em>feel</em> like I&#8217;m on the periphery of anything. I&#8217;m an educated white American man. That right there puts me smack in the middle of most things. But if I had to pick something a little different I&#8217;d have to say it&#8217;s the way I was brought up.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/07/topher_homestead.jpg\"><img class=\"wp-image-1104\" src=\"http://heropress.com/wp-content/uploads/2016/07/topher_homestead.jpg\" alt=\"Photo of the foundation of a house with a trailer next to it in a clearing in the forest.\" width=\"400\" height=\"267\" /></a>The shed we started in is in the top right, then we stayed in that trailer for a summer. The largest thing is the foundation of the house.\n<p>In 1979 my parents sold almost everything they had and moved 100 miles north. They bought a little plot of forest in the middle of a very large plot of forest and put up a tent and we moved in. Then we built a little shed, and my dad, my uncle, and I moved into that while mom and my sisters moved back to the city for a few months. We cleared the land and started building a house.</p>\n<p>When it came time to hook up to the electrical grid we were told it would be $20,000 for the hookup. That&#8217;s nearly $70,000 at today&#8217;s rate. My dad simply said no. We didn&#8217;t get connected to the electrical grid for another 15 years.</p>\n<p>If you&#8217;d like to read more of that story <a href=\"https://topher1kenobe.com/category/my-story/\">I did a nice long series on my own blog</a>.</p>\n<h3>How I Got Here</h3>\n<p>I taught myself to type in high school because it was way better than writing all that stuff by hand. When I got to college and it came time to write a paper I found that the library had a typewriter I could use.  It was an old IBM Selectric with a little motor that spun and hummed the end entire time.</p>\n<p>One day a guy said to me &#8220;Why don&#8217;t you use The Computer?&#8221;.</p>\n<p>&#8220;We have a computer?&#8221; I asked.  He showed me where the IBM 286 with WordPerfect was and I spent about a week learning everything I could about it. Soon I was typing papers for other people at a penny a word. That&#8217;s about $2 a page.</p>\n<p>Then one day someone donated a new computer to the college.  It was a Microsoft Xenix server, with 5 dumb terminals. <em>Five</em> people could use it at the same time! It also had something called &#8220;email&#8221;.  It wasn&#8217;t on any network, so we could only email people in that room. But we loved it. Everyone swapped emails.</p>\n<p>Fast forward a couple years and I went to a different school which ALSO had a server. This one was a giant VAX/VMS system. The machine was about the size of an old Volkswagen bug. There were terminals all over campus. You could send an electronic message to someone who was almost a mile away! It was amazing, and I was enthralled.</p>\n<p>In my 4th year of college I was told that we could soon be connected to The Internet. I&#8217;d never heard of that, so I started learning. I found out that it would be just like what we had, but we could send emails to other schools! And people all over the world. It was AMAZING.</p>\n<p>To try to keep a long story short(er) I moved through telnet, <a href=\"https://en.wikipedia.org/wiki/Gopher_(protocol)\">Gopher</a>, and finally the web.</p>\n<p>One day a friend came to me and said &#8220;Hey, look what I made!&#8221;.  It was a web page. With his own content on it! He said &#8220;It&#8217;s really easy, you should try it!&#8221; I told him no, it looked far too complicated. He said it really wasn&#8217;t, and showed me.</p>\n<p>That afternoon I learned every HTML tag there was. All 40 of them. And I started making web pages. Page after page. I made lists of interesting websites, and connected them all together. I built an unofficial website for my college. I joined the local Freenet, even though I didn&#8217;t have a computer of my own, and started building pages for them, for my city. It became an obsession.</p>\n<p>Eventually I talked the college into paying me to build them a real website. Here&#8217;s a screenshot:</p>\n<p><img class=\"aligncenter size-full wp-image-1106\" src=\"http://heropress.com/wp-content/uploads/2016/07/cornerstone_college_website_lynx.png\" alt=\"Screenshot of Cornerstone College\'s web site in Lynx in a terminal window,\" width=\"484\" height=\"316\" /></p>\n<h3>Leveling Up</h3>\n<p>After college I took a 6 month contract building an intranet website for Kellogg&#8217;s (the cereal people). It was their first internal website, and I had to make sure there was backward compatability for Netscape 1.0. It was still all plain HTML though.  CSS hadn&#8217;t been invented yet.  If there was back-end scripting to be done it was CGI in perl.</p>\n<p>Fast forward to 1998 and I was working in my office with some co-workers and one of our designers came into the room. He said &#8220;I have a contract to build a site for a realtor, but I need someone who knows PHP&#8221;. No-one said anything, so I said &#8220;I&#8217;ll do it!&#8221;.</p>\n<blockquote><p>That night I went home and learned PHP.</p></blockquote>\n<p>I built the site and got paid. Let&#8217;s just say I&#8217;m glad it&#8217;s not around anymore.</p>\n<p>I started taking more PHP jobs, getting better and better. A new thing became popular on the web called &#8220;web logging&#8221;, basically keeping a journal on the web.  People soon shortened it to &#8220;blogging&#8221;, which confused all the old people.</p>\n<p>I tried some blog software, but it was crazy hard to set up. One platform even required an Apache module of its own. I decided blogging wasn&#8217;t for me, and probably wouldn&#8217;t be going very far.</p>\n<h3>Enter WordPress</h3>\n<p>In 2003 I was working as a PHP/MySQL developer at a radio station attached to a college (the very same at which I started so long ago). I was teaching a class called <em>Intro To Web Development</em>. I&#8217;d recently heard about WordPress and tried it out. I wasn&#8217;t very impressed. I could build that. I required each student to have a project for the year, and I took one for myself. Build something better than WordPress.</p>\n<p>What I came up with wasn&#8217;t better than WordPress, but it was good enough that I used it as my main blogging software for 10 years. Looking back, I really wish I had become involved in the community then. Where would I be now?</p>\n<h3>Spinning Off Into Chaos</h3>\n<p>In 2010 I had been doing side work non-stop for several years. I did the math and realized that I was wasting a LOT of time and money going to my day job every day. Literally tens of thousands of dollars being lost by going there 5 days a week.</p>\n<p>I quit.</p>\n<p>I went freelance and the work poured in. I took a contract that used WordPress and was pretty impressed by its blogging abilities. It was still a chore to make any other kind of site with it, but I was able to bend it to my will. I loved that WordPress took care of permissions and user management for me. I quickly found out that most of the &#8220;WordPress developers&#8221; out there didn&#8217;t really know PHP. I had a huge advantage.</p>\n<p>I used WordPress occasionally until 3.0 came out.  <strong>Everything changed</strong>.</p>\n<p>Custom Post Types made practically anything possible! It was literally breathtaking. I hadn&#8217;t been so excited since the early days of web development, when a new browser version meant major new web technology.</p>\n<p>Everything in my life began to change rapidly as well. I went from freelancing to being CTO in a startup to being a WordPress VIP developer at a major agency to trying something cool (HeroPress) to writing documentation. 5 different job changes in 6 years. <a href=\"http://catewerks.com/our-jump-to-freelancing/\">It was pretty stressful for my family</a>.</p>\n<p>There was something consistent through most of the last 6 years though.</p>\n<h3>You</h3>\n<p>My first experience with The Community was when I went looking for a Theme Framework.  I found Startbox, by a guy named Brian Richards. I found out he lived only a few miles from my house! He answered SO MANY QUESTIONS. I wouldn&#8217;t be the WordPress developer I am today without him.</p>\n<p>We formed a local WordPress meetup, and one of the first things he said was &#8220;We need a WordCamp&#8221;. What&#8217;s a WordCamp? He told me all about it and said he wanted to pull one together in only 4 months.  I thought he was CRAZY, but sure enough he did it, and <a href=\"https://2013.grandrapids.wordcamp.org/\">WordCamp Grand Rapids</a> was born.</p>\n<p>I was hooked. I couldn&#8217;t wait until NEXT year when we could have another one!</p>\n<p>Then I learned they happen all over the place! ALL THE TIME!</p>\n<p>My first Away WordCamp was Austin in April 2014, and it felt like it changed everything. I mustered up the courage to approach Siobhan McKeown and ask her about writing docs. 15 minutes later (literally) I had admin rights to work on the Plugin Handbook. I spent the next 6 months finishing it.</p>\n<p>I met Shayda Torabi, Chris Lema, Shawn and Kay Hesketh. I met for the first time my own co-workers at XWP.</p>\n<p>And my father died.</p>\n<p>My sister called on a quiet Sunday morning at sunrise and told me he was gone. My dear brother Luke Carbis cried with me. I&#8217;m crying now as I write this.</p>\n<h3>More of You</h3>\n<p>I was surprised to learn soon after that XWP wanted me to go to WordCamp Miami. I didn&#8217;t expect <em>two</em> WordCamps in one year! I met David Bisset, Karim Marucchi, Joe Hoyle, and dozens of other people who are now solid friends.</p>\n<p>Then another, I found out I was going to WordCamp San Francisco! I met Rocio Valdivia, Julie Kuehl, Dave Rosen, Shane Pearlman, Jake Goldman, and more and more and more.</p>\n<p>It was at that WordCamp that someone nominated me to be XWP&#8217;s WordCamp Outreach person. Dave Rosen looked at me with a sparkle in his eye and asked &#8220;Would you like that?&#8221;. That moment was the true beginning of HeroPress. That&#8217;s where he started thinking &#8220;What if?&#8221;</p>\n<h3>HeroPress</h3>\n<p>Until HeroPress WordPress was a tool to further my career. I&#8217;d made some dear dear friends, but maybe I would have made dear friends without WordPress. Dave Rosen came to me and told me he wanted me to do something great for WordPress. He told me it was my journey to discover. He wanted a business, a new product that would change everything.</p>\n<p>He also sent me a picture.</p>\n<p>It was a narrow alley in India. I don&#8217;t know what city. In the center of the alley was a small child, maybe 3 years old, getting a bath. His or her mother was pouring water to rinse.</p>\n<p>&#8220;I want to help that child&#8221; Dave said. &#8220;I want to make a world where that child has the ability to make a good healthy living, without having to leave home.&#8221; The child was looking right at the camera.</p>\n<p>Right at me.</p>\n<p>Dave also made available to me a WordPress agency. &#8220;If you need to build anything, use them, I have them on retainer&#8221; he said. They were from Kolkata. I got to know one person there, a young man named Jeet. We spent months together trying to come up with something great to do for WordPress. I learned about his family, and he learned about mine. He got married in that time.</p>\n<p>One day Jeet let go of some frustration. He was trying to get enough work for his agency to stick together.  It was really a group of friends who had been freelancing, and they wanted to make it work as a team. But he couldn&#8217;t get good work.  There was plenty of work for &#8220;cheap labor from India where they work for almost nothing&#8221;.  But that doesn&#8217;t work for actual grown up developers feeding families. He asked <em>me</em> how to get good work.</p>\n<blockquote><p>I felt helpless. I&#8217;d never been to India. I wasn&#8217;t any good at business really. What do I know?</p></blockquote>\n<p>So I set out to find someone who DID know. Someone who&#8217;d made a successful WordPress business in India.</p>\n<p>That&#8217;s where the core idea of HeroPress started. That&#8217;s why HeroPress essays now need an audience. It&#8217;s about connecting people to each other to share wisdom.</p>\n<p>I lost track of Jeet not long after the <a href=\"https://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\">HeroPress Kickstarter</a> failed, and I&#8217;ve been looking for him ever since. If anyone knows where to find Soumyajit Saha, I&#8217;d love to know.</p>\n<h3>Failure</h3>\n<p>The Kickstarter failed. My job situation was uncertain. Jeet never got his advice. The kid in the alley would certainly never get a good job. That&#8217;s ridiculous of course, but I could still see those eyes.</p>\n<p>Then people started saying things like &#8220;HeroPress is such a good idea, please don&#8217;t let it die.&#8221; People who couldn&#8217;t afford to give more than they had, or any at all.  People said &#8220;I couldn&#8217;t afford to give any money, but I have time, if you need anything done, I&#8217;ll do it&#8221;. Dozens of them.</p>\n<p>I started thinking about how I could make it work. If I gave up on video, and went with plain text, how hard could it be? What could it cost besides hosting? I decided to go for it.</p>\n<p>I emailed Dave and asked permission but he didn&#8217;t write back. He was busy on something else at the time. I asked again.  Nothing.</p>\n<p>So I did it anyway.</p>\n<p>I found Rarst and asked him if he&#8217;d do his presentation in text form, and he said yes. We published. It was breathtaking.</p>\n<p>Then I thought &#8220;I should have another, right? Umm&#8230; next week?&#8221; So I tracked down Saurabh Shukla, who had given so much great advice on how to talk to people from other cultures. &#8220;Sure!&#8221; he said. Then I needed another. For about the first 3 months I got contributors merely days, sometimes hours before publish time.</p>\n<p>Failure turned to success. Text is BETTER than video. It&#8217;s cheaper, faster, more accessible.</p>\n<p>It&#8217;s not a viable business. No-one&#8217;s making their living from it. From the viewpoint of the original goal, it has been a failure. From the eyes of everyone who talks to me about it, I can see it&#8217;s a success.</p>\n<h3>Making Family</h3>\n<p>In the spring of 2014 I went with my wife and two children to WordCamp Chicago. We all made new, wonderful friends. My children know people from all over the world, some of them that I don&#8217;t even know, because of WordPress. My wife now has dear friends she talks to all the time because of that WordCamp.</p>\n<p><a href=\"http://heropress.com/wp-content/uploads/2016/07/wordcamp_dinner.jpg\"><img class=\"alignright wp-image-1122\" src=\"http://heropress.com/wp-content/uploads/2016/07/wordcamp_dinner-300x169.jpg\" alt=\"Some family being silly at dinner\" width=\"400\" height=\"225\" /></a>We were hooked. We decided to go to another WordCamp. Then another. We went to Chicago, Dayton, North Canton, Milwaukee, Miami, Orlando, Tampa, Virginia Beach, St. Louis, Kansas City, Columbus, and WordCamp US.</p>\n<p>Without my family I went to Pressnomics and WordCamp Pune.</p>\n<p>At every one of these places we made more friends. More people with whom we still stay in touch and to whom we have become close. Some of them we saw over and over at WordCamps all year, and traded stories of travel and family and life.</p>\n<blockquote><p>The longer we&#8217;re a part of the WordPress community the more I realize we&#8217;re not making friends, we&#8217;re making family.</p></blockquote>\n<p>Family from India, Ukraine, England, Argentina, Nepal, Lebanon, Sri Lanka, and literally hundreds of other countries.</p>\n<p>WordPress didn&#8217;t rescue me from anything. The code shaped my career sure, but what has changed me is you. The lives of myself and my family will forever be better because of you.</p>\n<p>Thank you.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/making-family/\">Making Family</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:14:\"Topher DeRosia\";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:70:\"HeroPress: WordPress, Where I Found What I Didn’t Know I Was Missing\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1088\";s: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:\"http://heropress.com/essays/what-i-didnt-know-i-was-missing/\";s: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:13262:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/06/062916-ididntknowiwasmissing-2-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Banner: The incredible thing about WordPress is the diversity of what you can pursue.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress, Where I Found What I Didn&#8217;t Know I Was Missing\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%2C%20Where%20I%20Found%20What%20I%20Didn%27t%20Know%20I%20Was%20Missing&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-didnt-know-i-was-missing%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress, Where I Found What I Didn&#8217;t Know I Was Missing\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-didnt-know-i-was-missing%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fwhat-i-didnt-know-i-was-missing%2F&title=WordPress%2C+Where+I+Found+What+I+Didn%26%238217%3Bt+Know+I+Was+Missing\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress, Where I Found What I Didn&#8217;t Know I Was Missing\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/what-i-didnt-know-i-was-missing/&media=http://heropress.com/wp-content/uploads/2016/06/062916-ididntknowiwasmissing-2-150x150.jpg&description=WordPress, Where I Found What I Didn\'t Know I Was Missing\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress, Where I Found What I Didn&#8217;t Know I Was Missing\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/what-i-didnt-know-i-was-missing/\" title=\"WordPress, Where I Found What I Didn&#8217;t Know I Was Missing\"></a></div><h3>Backstory</h3>\n<p>My grandparents used to have a photograph that showed me as a child, just old enough to start walking; and in it I was trying to climb onto this little cement horse sculpture they had in their yard.</p>\n<p>For as long as I can recall I&#8217;ve always had an interest in horses, and it was always believed that my primary career path in life would somehow revolve around riding or training horses.</p>\n<p>I had the first chance to work around horses when I was nine, my parents wouldn&#8217;t pay for riding lessons but I was given the green light to volunteer at a handicapped riding facility near our home. So I would go there a few times each week to lead the horses around and assist the riders. I was in heaven.</p>\n<p>After some months of this my parents finally conceded to riding lessons, then buying a horse and things seemed to be on course for a career in horses for me.</p>\n<p>When I was 14 years old, we had moved to our own little property where we could keep our own horses. I would have been entering the 9th grade that fall, but instead I proposed to my parents that I should drop out of school and start a horse business instead; and surprisingly they agreed.</p>\n<p>For the next 6 years, I would spend a significant amount of time learning how to build, maintain and improve my own website for that business; it started with a basic WYSIWYG website builder but I quickly learned I needed to dig directly into the code to achieve what I wanted. I broke things and learned how to fix by poking at them with a stick, possibly the most ineffectual method of learning but this was before Google contained all the answers to all the questions..</p>\n<h3>What about *WordPress*?</h3>\n<p>Bear with me, I&#8217;m getting to that point! It&#8217;s now 2005 and I&#8217;m packing up my truck and horse trailer with a reasonable amount of belongings and one of my horses to drive 2000 miles from southern Wisconsin to the Seattle, Washington area. The next step in my journey will be as working-student for a year, which is just a fancy way of saying I&#8217;ll be doing hard physical labor for gruelingly long hours in exchange for a few hours of one-on-one instruction when the trainer has time.</p>\n<p>I wanted to learn more about Classical Dressage, and with few options in my immediate location, began looking outside the Midwest until I found a small facility in the Pacific NorthWest that was teaching what I wanted to learn.</p>\n<p>So where does WordPress fit in here? From the time I started working at the farm, I had to maintain an online blog and post to it daily. I chose WordPress as my blogging platform, possibly it was a choice of complete chance. But **that was my introduction to WordPress**, the requirement to maintain a simple online blog every day.</p>\n<h3>Momentum</h3>\n<p>Every day, I blogged, and slowly I decided I wanted to do more with my blog. So I began exploring plugins and themes, and then how I could break and fix them to suit my own needs.</p>\n<p>People I knew in the horse community would hire me from time to time to work on their site or build them one, and I was doing this in HTML and CSS until I got started with WordPress; and soon I was converting everyone I could to a WordPress site.</p>\n<h3>Distractions</h3>\n<p>There were a lot of other things going on in my life at this time unrelated to WordPress and websites as I continued to search for what I really wanted to do with my life.</p>\n<p>I returned from Washington and began giving riding lessons in my area. I wrote and published a book about working with horses, &#8220;Centered Self, Centered Horse.&#8221; Despite the outward successes I was having, my career path with training horses was really just reaching its peak before fizzling out.</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/06/exhibition.jpg\"><img class=\"wp-image-1090 size-medium\" src=\"http://heropress.com/wp-content/uploads/2016/06/exhibition-277x300.jpg\" alt=\"Erica Franz, in costume, on a rearing horse\" width=\"277\" height=\"300\" /></a>One of the last times I exhibited my horses, this was at a fundraiser for a therapeutic riding facility.\n<p>I began practicing Therapeutic Massage to help bring in additional income, sadly my arms would only hold out for a few years before severe chronic tendonitis forced me to quit altogether.</p>\n<p>The economy in the gutter and I felt this might be a good time for me to pursue higher education, so I went to college for my Bachelor of Fine Arts degree.</p>\n<p>School was a welcome distraction as my involvement with the horse community became less satisfying. I felt more at odds every day with the common methods used to train and ride horses until I decided I needed a full break from all-things-horses.</p>\n<p>Even through all of this, I was still plugging away with WordPress, freelancing and slowly gaining more and more clients.</p>\n<h3>The Big (little) Change</h3>\n<p>In 2013, a freelance client I had just started working with wanted to use a very specific WordPress theme &#8211; Marketer&#8217;s Delight.</p>\n<p>It&#8217;s funny when you think back to something small that can completely change the course you&#8217;re on. But it was this tiny thing that I believe began a full-stop to the path I was travelling at that time and helped re-route me to where I am today.</p>\n<p>Marketer&#8217;s Delight, at that time, was a skin for the Thesis framework. So as I was working with it I would pop into the forum support to ask a few questions about whether certain functionality was supported out of the box, and Alex was looking to hire someone to help with forum support.</p>\n<p>On a lark, I sent him an email. I loved working with Marketer&#8217;s Delight and felt I&#8217;d enjoy helping others in the forum as they navigated their way through customizing the theme for their own site.</p>\n<p>And that was it, I joined Kolakube and worked in the support forum for about 3 months.</p>\n<p>After that opportunity I realized some very important things. 1) I love figuring things out and finding out what the cause of a problem is, and 2) I really love helping people.</p>\n<h3>Taking a chance at a random opportunity</h3>\n<p>I had continued to freelance while working in the support forum, but after that time I really wanted to work with another support team again.</p>\n<p>I wasn&#8217;t yet actively looking at job openings or submitting resumes to any companies; but opened up Twitter and one of the few people I was following at the time had retweeted a link to a job opening for OptinMonster.</p>\n<p>I worked with creating &#8220;optins&#8221; with OptinMonster on a few of my clients&#8217; sites so was already somewhat familiar with the product and and really enjoyed using it.</p>\n<p>Of course there was some immediate self-doubt about whether I was really qualified for the position because customer support wasn&#8217;t a field I had been pursuing for a long time or had a long history of experience in.</p>\n<p>&#8220;Ah, the worst that can happen is they actually respond with a &#8216;no&#8217;.&#8221;</p>\n<a href=\"http://heropress.com/wp-content/uploads/2016/06/resume.jpg\"><img class=\"size-medium wp-image-1093\" src=\"http://heropress.com/wp-content/uploads/2016/06/resume-213x300.jpg\" alt=\"Erica Franz\' resume, mostly blurred out\" width=\"213\" height=\"300\" /></a>Not a resume to be easily forgotten.\n<p>So I got to work putting together a resume to submit that I felt would convey both my personality and highlight my motivation.</p>\n<p>I actually listed the following as a skill-set in my resume:</p>\n<p>&#8220;Owner of unicorns,<br />\nslayer of dragons,<br />\nrider of lightning&#8221;</p>\n<p>Long story short, <strong>I got the job!</strong></p>\n<h3>Time flies when you love what you do</h3>\n<p>It&#8217;s been a year and a half now that I&#8217;ve been working not only with OptinMonster, but also with Soliloquy and Envira Gallery plugins which are part of the same company (AwesomeMotive).</p>\n<p>I work with the really great, diverse team of people, who feel more like family.</p>\n<p>In the short time I&#8217;ve worked at AwesomeMotive, I&#8217;ve learned so much and grown a lot with respect to my knowledge and skills in development even. I gained confidence to begin writing my own plugins and have some published now in the WordPress Plugin Repository.</p>\n<p>This last fall I was promoted to Head of Customer Happiness and have the honor to oversee support for thousands of customers.</p>\n<h3>Reflection</h3>\n<p>Sometimes it&#8217;s difficult to look ahead and see clearly where your destination will be.</p>\n<p>If you had asked me 10 years ago what I would be doing today, customer support or a career largely built on WordPress would not have been part of my answer.</p>\n<p>But in all the little paths I&#8217;ve travelled that eventually got me here, what I&#8217;ve always been looking for was a place where I fit.</p>\n<p>Since I first began writing a little daily blog in WordPress, to today working every day with this amazing team of incredibly skilled individuals, has been this comforting feeling that the world is right and my place in it correct.</p>\n<p>The incredible thing about WordPress is the diversity of what you can pursue. WordPress is more than a blog, more than a website or online store.</p>\n<p>WordPress is people coming together, sharing their own unique sets of skills and personalities to make something greater than could be achieved by any one person alone.</p>\n<p>WordPress allows me to learn and grow as a person every day. It challenges me to think about problems from completely different perspectives as I work with individuals from around the world who share with me their experience and thoughts.</p>\n<p>I doubt I would have a similar opportunity without WordPress; and really without each and every person who is using, extending and contributing to it. My gratitude for WordPress is really my gratitude for <strong>you</strong>, the person reading this story about my journey, because we are all helping support each others journey <strong>through</strong> WordPress.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/what-i-didnt-know-i-was-missing/\">WordPress, Where I Found What I Didn&#8217;t Know I Was Missing</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:11:\"Erica Franz\";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:31:\"HeroPress: My Road to 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:55:\"http://heropress.com/?post_type=heropress-essays&p=1038\";s: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:49:\"http://heropress.com/essays/my-road-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17070:\"<img width=\"960\" height=\"480\" src=\"http://heropress.com/wp-content/uploads/2016/06/roadtowordpress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Banner: WordPress showed me that everything is possible is you invest enough time and effort.\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: My Road to WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=My%20Road%20to%20WordPress&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fmy-road-to-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: My Road to WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fmy-road-to-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fmy-road-to-wordpress%2F&title=My+Road+to+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: My Road to WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/my-road-to-wordpress/&media=http://heropress.com/wp-content/uploads/2016/06/roadtowordpress-150x150.jpg&description=My Road to WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: My Road to WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/my-road-to-wordpress/\" title=\"My Road to WordPress\"></a></div><p>What do you want to do for living? Depending on where you stand in life, this question can either be the most easiest or an incredibly tough one to answer. When you are ten or fifteen this question is exciting and it has the power to open a whole box of wishes and dreams that seem to just be waiting to be realized.</p>\n<p>Well, with 25 and a university degree in civil engineering in my pocket, that was probably the most unpleasant question you could have asked me. This was not like I imagined it to be. The feeling was wrong. Instead of being eager to finally put the acquired knowledge into practice, I somehow felt like I&#8217;ve just spent the last 6 years of my life for nothing. There was zero enthusiasm in picturing me working in civil engineering field&#8230;not now&#8230;not ever.</p>\n<h3>Life is perfect&#8230;well almost <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></h3>\n<p>The year was 2009 and some big events are underway in my life. First, on April 4th I turned 25. OK, that doesn&#8217;t sound like much now, but for me, then, it surely was:). In May I got married to Marko. By the way, he is helping me write this and he won&#8217;t let me write epics about him, but otherwise I certainly would:). In June I finished my studies and in September I officially moved to Germany to live with my husband. Somehow, it still sounds strange when I say &#8220;my husband&#8221;, soo serious <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> .</p>\n<p>When I recall these events now I can see what a great year that was. Still, there was this big question mark hanging above my head; what am I going to do for living? Beside having a major in a field I had no intention of pursuing a career, I now had another barrier&#8230; german language. If you&#8217;ve ever heard German talking you probably know it doesn&#8217;t sound like a piece of cake thing to learn:).</p>\n<p>The first year in Germany I spent learning the language and working some part time jobs in restaurants, hotels and even giving dancing lessons. It was fun, new country, new language, new people. I even applied for a couple of jobs related to civil engineering, but luckily didn&#8217;t get them due to insufficient German knowledge.</p>\n<h3>Why study something you don&#8217;t want to do?</h3>\n<p>I guess this question might have crossed your mind at least once by now. To better describe the whole thing I need to give a bit more insight into my background and life prior to meeting Marko.</p>\n<p>I was born in Kotor, Montenegro that was then a part of Yugoslavia. Kotor is a relaxed small town on the coast and in my memory it imprinted itself as a great place to be a child. Most people that heard of Kotor, probably visited it on board of one of one of the large cruising ships that stop there daily.</p>\n<p>Unfortunately, in the beginning of 90&#8217;s terrible things started to happen all over Yugoslavia, the country started to fall apart and my family decided to move to Croatia that have just announced independence from Yugoslavia. We ended up on the small island Losinj, another tourist destination, where I lived with my parents until I was 18 and was time to go to college.</p>\n<p>Although spending childhood in such beautiful small towns like Kotor and Losinj may seem like living in paradise for many people, there is always another side of the coin. For me that other side were missing options. It was like, there is a way how things work here and you have to get used to it. The sooner you forget about some unconventional ideas about your future the better <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> . And I&#8217;ve had a lot of those. I was interested in playing piano, dancing, design and so on. It was all acceptable as a hobby, but no one really considered those to be a serious occupation option.</p>\n<p>Well, with time, I forgot about many of them as I tried to fit in and as a result I ended up studying civil engineering for the sole reason that it is, among maybe 3-4 other studies, traditionally considered &#8220;a good choice&#8221; in this country.</p>\n<h3>Nothing without a support</h3>\n<p>As people say, &#8220;better ever than never&#8221;. I don&#8217;t know and don&#8217;t want to know what my life would be like if I&#8217;ve forced myself to follow the path I had in front of me at that time, but I guess forcing yourself to do anything long term is receipt for failure.</p>\n<blockquote><p>I figured out that &#8220;a good choice&#8221; doesn&#8217;t mean much if you&#8217;re not satisfied with it.</p></blockquote>\n<p>It is a common saying that there are always alternatives, but sometimes it is really hard to see them. Especially if you live in an environment that doesn&#8217;t want or is afraid to see them. Moving to Germany to live with Marko changed my views and I started to open myself to new opportunities.</p>\n<p>Although Marko originally comes from the same small island my family moved to in the 90&#8217;s, we first met in 2006 when he was already living in Germany. His way of thinking is quite unconventional by Croatian standards and although he also tried to ignore his own urges for some time, he dropped out of &#8220;a good choice&#8221; college just before the finish line and went to Germany to work as a musician.</p>\n<p>He inspired me to rethink my options and supported me from the day one no matter what choice I make. All at once my choice was clear.</p>\n<h3>Let&#8217;s Design</h3>\n<p>I always wanted to do something creative and design was my wish for a long time although I&#8217;ve never done anything even remotely like it. Marko and I sat down, I told him what I&#8217;d want and he was like; great, take your time, start learning and sooner or later it will pay off.</p>\n<p>So, I started browsing all over the net trying to find good sources that I can learn from. First I actually started creating logos, but very soon I was hooked on web design. I started learning HTML/CSS and even enrolled myself in the online based web design course that turned out to be a waste of time as the concepts that they taught were 10 years behind the times. However, persistence does pay off and within a year I was ready to try selling my first template.</p>\n<p>Themeforest was an obvious choice, but the quality was not there yet. When I look at those first templates, they make me laugh, but you have to start somewhere:). Anyway, the templates got better, got accepted and I started to feel comfortable in what I was doing.</p>\n<h3>WordPress all the way</h3>\n<p>The year was 2012, I&#8217;ve had a couple of templates and a couple of small clients behind me, but with all these CMS solutions growing, HTML templates seemed like a dead end. In the meantime Marko and I decided to try to build a business selling only finished templates instead of developing custom websites for clients.</p>\n<blockquote><p>Our goal was to build a business that is independent of the place of living.</p></blockquote>\n<p>The way I got introduced to WordPress wasn&#8217;t very romantic and there is nothing really inspiring in that story. We were looking for a bigger market that could make our plan work and growing sales themes on Themeforest led us to one conclusion&#8230; WordPress.</p>\n<p>I didn&#8217;t know anything about it and was quite reluctant to start learning it, but Marko can be quite stubborn:). He was like, &#8220;common it can&#8217;t be that hard&#8221;, although at that time he didn&#8217;t have any knowledge of it what so ever:) However, that kept me going and the more I learned about WordPress the more I liked the whole idea behind it.</p>\n<h3>Community of like minded people</h3>\n<p>From my very first steps with WordPress I was pleasantly surprised how helpful people in the WordPress community can be. Complete strangers were ready to take their precious time and help a beginner learn some basic concepts. This is something I&#8217;ve never experienced before and that is one of the greatest values of being a part of such a community.</p>\n<p>In 2013 we launched our own site <a href=\"http://www.anarieldesign.com\">Anariel Design</a> where we offered our HTML template as well as the first theme or two. Here again complete strangers, that run a very popular site <a href=\"http://tympanus.net/codrops/\" target=\"_blank\">Codrops</a>, help us promote the site at the very beginning. In the meantime we got to know them in person so they are not strangers anymore :). Thank you Manoela and Pedro!</p>\n<p>2014 was a turning point when, out of the blue, we got an email from <a href=\"https://twitter.com/philip_arthur\" target=\"_blank\"> Philip Arthur Moore</a> ( work for Automattic at the time ) asking if we&#8217;d like to sell our themes on WordPress.com. It was such honor for me to be invited. It was like an ultimate confirmation that I&#8217;m doing something right an that was finally something I actually enjoyed doing. Thank you Philip!</p>\n<h3>When You Least Expect It</h3>\n<p>2013 had its dark side as I was going through a series of panic attacks that seemed to start out of nothing. It was completely confusing as everything was going great in my life and then all of a sudden such a horror. I even ended up in a hospital for 2 days cause I felt as if I was having a heart attack so they kept me to do some tests.</p>\n<p>Marko helped me analyze the situation and I discovered how much baggage I&#8217;ve been carrying around for a long long time. Things I&#8217;ve never talked about. Things I was ashamed or afraid of. Things I should have straighten out a long time ago, but didn&#8217;t. Opening up helped me a lot and it got better with time.</p>\n<p>At the time the panic attacks started happening I got a gift, cute small teddy bear. It may sound funny or strange, but this teddy bear we named Bubi helped me calm down in my worst hours. Especially when Marko wasn&#8217;t at home. In the meantime Bubi became our lucky charm and he&#8217;s now with us where ever we go.</p>\n<p><img class=\"aligncenter size-full wp-image-1042\" src=\"http://heropress.com/wp-content/uploads/2016/06/bubi.png\" alt=\"Small plush teddy bear on a stump wearing a Santa hat\" width=\"895\" height=\"360\" /></p>\n<h3>A Glance at the Future</h3>\n<p>The last two years were really a joyride. We achieved our goal of running a business that doesn&#8217;t tide us to a certain location. In 2014 Marko took a long needed break from music to learn WordPress and beside doing the business side of things he became an awesome support agent:).</p>\n<p>We are now working from a home office or from where ever we find ourselves at the moment. We like to attend WordCamps whenever we can and meet new people. There are so many interesting stories as most of these people lead unconventional lives.</p>\n<blockquote><p>No one knows what the future brings and how my life will be in a year or in five years.</p></blockquote>\n<p>However, WordPress showed me that everything is possible if you invest enough time and effort. It helped me grow confidence in myself and in other people. That is something that no one can take away and that is what I&#8217;m most thankful for.</p>\n<hr />\n<h3>Thank you note</h3>\n<p>With every project you, me or anyone else ever started there is always someone who knows something you don`t. Someone who can help you out when you get stuck, someone from whom you can always learn something new.<br />\nSo, in this last part i&#8217;d like to thank all the people that helped me on my way:</p>\n<ul>\n<li>First thanks Topher DeRosia for inviting me to write the essay and go out of my comfort zone <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></li>\n<li>special thanks to Marko for all the help &amp; support, without you I wouldn&#8217;t manage all this</li>\n<li>Big thanks to <a href=\"https://twitter.com/photomatt\" target=\"_blank\">Matt Mullenweg</a> &amp; <a href=\"https://twitter.com/mikelittlezed1\" target=\"_blank\">Mike Little</a> and to all that are contributing to WordPress</li>\n<li><a href=\"https://twitter.com/philip_arthur\" target=\"_blank\"> Philip Arthur Moore</a> ( you are my &#8220;hero&#8221; <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /> ), <a href=\"https://twitter.com/sixhours\" target=\"_blank\">Caroline Moore</a>, <a href=\"https://twitter.com/DavidAKennedy\" target=\"_blank\">David A. Kennedy</a>, Ola Laczek, <a href=\"https://twitter.com/mendezcode\" target=\"_blank\">Ernesto Méndez</a>, <a href=\"https://twitter.com/jacklenox\" target=\"_blank\">Jack Lenox</a>, <a href=\"https://twitter.com/karmatosed\" target=\"_blank\">Tammie Lister</a>, <a href=\"https://twitter.com/fklux\" target=\"_blank\">Fränk Klein</a> &amp; all Automatticians &#8211; I learned so much from you, thanks a bunch <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></li>\n<li>Thanks to all volunteers and organizers of the WordCamps, you are doing a great job :). Special thanks to <a href=\"https://twitter.com/eblagonic\" target=\"_blank\">Emanuel Blagonic</a> &amp; all other Croatian organizers and volunteers for organizing amazing WordCamp Croatia ( next one is in September in Split: <a href=\"https://2016.split.wordcamp.org/\" target=\"_blank\">https://2016.split.wordcamp.org/</a> )</li>\n<li>Big thanks to theme reviewers on WordPress.org, specially to <a href=\"https://twitter.com/joedolson\" target=\"_blank\">Joe Dolson</a> for the theme accessibility reviews, I learned a lot from you <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></li>\n<li>Thanks to Manoela &amp; Pedro from <a href=\"http://tympanus.net/codrops/\" target=\"_blank\">Codrops</a></li>\n<li>Big thanks to <a href=\"https://twitter.com/twsjonathan\" target=\"_blank\">Jonathan Atkinson</a> &amp; <a href=\"https://twitter.com/Smartik89\" target=\"_blank\">Andrei Surdu</a>, you advices helped a lot at the beginning <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></li>\n<li>and thanks to all great people &amp; friends I met during my work &amp; WordCamps, so many beautiful &amp; inspiring people out there <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/my-road-to-wordpress/\">My Road to WordPress</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:10:\"Ana Segota\";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:47:\"HeroPress: The Making of a WordPress Journalist\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1020\";s: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:\"http://heropress.com/essays/making-wordpress-journalist/\";s: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:17958:\"<img width=\"960\" height=\"522\" src=\"http://heropress.com/wp-content/uploads/2016/06/Maedah_Batool_Essay_HeroPress_2-1024x557.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Banner: So far I\'ve trained more than 700 women from almost every walk of life and about 80% of them are now earning a living with Wordpress\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: The Making of a WordPress Journalist\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Making%20of%20a%20WordPress%20Journalist&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-wordpress-journalist%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Making of a WordPress Journalist\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-wordpress-journalist%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fmaking-wordpress-journalist%2F&title=The+Making+of+a+WordPress+Journalist\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Making of a WordPress Journalist\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/making-wordpress-journalist/&media=http://heropress.com/wp-content/uploads/2016/06/Maedah_Batool_Essay_HeroPress_2-150x150.jpg&description=The Making of a WordPress Journalist\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Making of a WordPress Journalist\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/making-wordpress-journalist/\" title=\"The Making of a WordPress Journalist\"></a></div><p><em>I went from being an Electrical Engineer to a WordPress Journalist cum Researcher. I review products, provide WordPress support and handle technical documentations. Here’s my story.</em></p>\n<p>October 27th, 2010 — The day my passion became my paycheck, and I was hopeful and excited about trying out something I always wanted to do i.e. to blog!</p>\n<h2>The Backstory</h2>\n<p>I was always a shy kid. But had a great inclination towards all the creative writing opportunities which were offered in the school. Be it contributing to the <i>school&#8217;s annual magazine</i> or joining the editorial team of the <i>Buzz</i> (the monthly newsletter), I always considered myself an amateur writer. I also remember how anxiously; I used to wait for the weekly edition of the US Magazine and used to pile up all its copies neatly in a big plastic folder bag. (I still have that big bundle stacked in my cupboard. <img src=\"https://s.w.org/images/core/emoji/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> )</p>\n<p>Throughout my school, the laser focus on my career was to become a doctor and take up writing as a side profession. Even if I wanted to take writing as a full-time career at that time, my parents would not have allowed it (every parent wants their kids to be an engineer or a doctor — professions with less uncertainty).</p>\n<p>So, I knew that just aiming to become a professional writer would only do more harm than good. Anywho, long story short, I ended up joining the Engineering field mostly because the profession ran in my blood. (Duh&#8230; my dad is an Engineer).</p>\n<p>The general perception is that if you&#8217;re passionate about something, you&#8217;re more willing to take risks. But this wasn&#8217;t true for me. Honestly, I’m not a life-hacking kind of girl. Nor can I pretend to be one who has fully recovered from giving up on her passion. But somewhere in there I still wanted to write (as in professionally).</p>\n<h3>The Hard Truth</h3>\n<p>I was now on track to become an Electrical Engineer, which was not anywhere close to writing, except for that only <i>Communications Skills</i> course which included a few PPT presentations, technical writing and a 20-page report as a semester project. There was nothing creative about it since we were supposed to write like they write a research paper. There was more fuss about syntax than the content itself. It&#8217;s safe to assume that I didn&#8217;t enjoy <i>that</i> kind of writing.</p>\n<h2>Stepping Forward Professionally</h2>\n<p>Five years ago during my 4th semester at the university, I met an amazing team of entrepreneurs led by <a href=\"https://ahmadawais.com/\">Ahmad Awais</a>; it was a small team of passionate developers and bloggers. Better yet, they were looking to add one more resource to their team. I knew this was my chance to be a writer again.</p>\n<p>For me, writing meant putting my voice out there and wanting it to matter even a tiny bit. After a few articles that I contributed, I was offered a part-time job, and I quickly jumped on it. I was like &#8220;Holly Smokes! It&#8217;s getting real&#8221;. I got started by writing on different niches like technology, design, food, fashion, hospitality, the web, etc.</p>\n<blockquote><p>Re-living my passion once again induced new hope and rejuvenated me a lot.</p></blockquote>\n<p>Whatever I wrote, came profoundly from my heart and this instinct made me believe I might have a chance to take a stab on writing once again. But writing for technology blogs wasn&#8217;t that simple as I had hoped.</p>\n<h3>Defining Parts of a Copywriter</h3>\n<p>Becoming a professional and sound copywriter is an intimidating struggle because there’s a lot of jargon. Unfortunately, you&#8217;re going to find some new mantra each time you browse this topic. So, I&#8217;m just writing what I found is necessary for one to become one such copywriter.</p>\n<ul>\n<li>Writing (of course!)</li>\n<li>Code</li>\n<li>Design</li>\n</ul>\n<p>One needs to know at least the basics of these three bullet points listed above. So, that was my goal. Mostly, because I worked with a team of developers and being an engineer, development was not a remote concept either. I knew that having basic design and development skills will only allow me to push beyond the limits of a normal copywriter.</p>\n<h2>A Turning Point!</h2>\n<p>Ahmad had always been a big fan of WordPress, and all three of our blogs were built with WordPress. The CMS was entirely new to me but when I gave it a spin found it surprisingly easy to learn. We had internal workshops about WordPress almost every other week. I made a point to sit through these workshops and even went through project RFP&#8217;s and init meetings. During the next semesters, I had fallen for two things, writing and yes, you guessed it, WordPress.</p>\n<p>Now the biggest challenge for me was to pace things up as quickly as possible so that by the time I graduate, I don&#8217;t end up working in a Grid Station in a remote area. (I mean no offense to the Electrical Engineers out there. But it wasn&#8217;t the thing for me.)</p>\n<p>I started getting a firm grip over WordPress. I kicked off with video tutorials from Lynda and then started reading authentic web resources like <a href=\"http://www.wpbeginner.com/\">WPBeginner</a>, <a href=\"http://wptavern.com/\">WP Tavern</a>, etc. After toying around with the basic setup and configurations, the next step was to face my biggest fear i.e. coding.</p>\n<p>Did I mention that initially I knew very little of code?</p>\n<h3>Encountering the Gap</h3>\n<p>My first real interaction with the code was via C Programming in the first semester and believe me it was a deeply rooted bizarre.</p>\n<blockquote><p>I found the fact <strong><i>development jobs “are for men”</i></strong> ridiculous and therefore, continued to focus on progressing my career.</p></blockquote>\n<p>This was only possible if I would learn how to code.</p>\n<p>I learned HTML5 followed by CSS3 and then jumped to high-level programming languages like PHP and JavaScript. And guess what&#8230; just after six months of coding, things started to make sense. I began with teeny tiny modifications of simple HTML templates and worked through the complex frameworks like Redux and Titan. I think this was because I was more focused on speed than I was on building a solid understanding of what I was doing.</p>\n<h3>It Isn&#8217;t Enough</h3>\n<p>With time, I started noticing an encouraging shift in my life. I knew I was up to something. My next step was to evolve with the local community and hence, I started attending design conferences and workshops. Why design? Because this would fulfill my third component to become a professional copywriter and it let me interact with people around me. Images play a vital role in making your content appealing, and a basic knowledge of Photoshop would be sufficient to achieve my goal.</p>\n<p>My next step eventually hit the brick wall, and I started speaking at workshops too. I assisted the leading speakers at most of the workshops which made me gain experience that proved its worth just some time later.</p>\n<h2>Be The Change</h2>\n<p>By the time I graduated, I was leading the team of bloggers and had expanded my team to about 15 people. Believe me; it feels great to be working on what I want and when I want! Delegating to a team of emerging writers was an achievement itself. Obviously, it’s not an easy thing, but I enjoyed every single bit of it.</p>\n<p>At that time, we thought of starting a new company focused on teaching people all things web. That also meant selling our blogging network. So, we have begun prepping for that and by the end of the year, we had have sold almost 80% of our blogs.</p>\n<h2>The Startup — FinkTanks</h2>\n<p>By now, I&#8217;ve realized that the only person who can get in the way of your career progress is <i>YOU</i>. One has to keep moving forward regardless of what you’re up against. The work you do may not bring drastic and immediate results, but your efforts will not go to waste. And I knew that the career path which I&#8217;ve opted for can directly impact the future of our next generation of women.</p>\n<p>So, it just hit me that I should teach others how I did it, not much of a success story, but at least I could spread the word. Then I came up with the idea of a startup with my team. FinkTanks — as we called it was launched in 2013 and then again in 2014. I searched for my target audience and the perfect fit for this venture were the young girls just like me — fresh graduate looking to learn a few extra skill.</p>\n<h3>When Women Engineer&#8230;</h3>\n<p>I surveyed a little and realized that a number of females were interested in working from home (mostly coz it is easier, flexible and no transportation mess). There could not be a better choice for them other than blogging &amp; copywriting. I mean you don’t have to go for a job you just need to work hard wherever you are. All you need is a laptop and an uninterrupted internet connection which fortunately is available to almost all of us. So this was my biggest inspiration and hence I got started.</p>\n\n<a href=\"http://heropress.com/essays/making-wordpress-journalist/13436098_10207765500470328_2048167471_n/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/06/13436098_10207765500470328_2048167471_n-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Small theatre-style classroom filled with women\" /></a>\n<a href=\"http://heropress.com/essays/making-wordpress-journalist/13444387_10207765496750235_2139752860_n/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/06/13444387_10207765496750235_2139752860_n-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Small theatre-style classroom filled with women\" /></a>\n<a href=\"http://heropress.com/essays/making-wordpress-journalist/13459626_10207765480509829_61196780_n/\"><img width=\"150\" height=\"150\" src=\"http://heropress.com/wp-content/uploads/2016/06/13459626_10207765480509829_61196780_n-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"4 men and three women holding up award certificates.\" /></a>\n\n<p>I conducted training sessions on a monthly basis where I taught how to be a blogger and how to be self-employed. I taught all the essential components which a blogger needs to know starting from WordPress to design, code, and of course copywriting.</p>\n<blockquote><p>So far, I&#8217;ve trained more than 700 women from almost every walk of life, and about 80% of them are now earning a living with WordPress.</p></blockquote>\n<h2>WordPress is my new gluten</h2>\n<p>All this was only possible because of WordPress. Had I not started early on with this open source script I had never been able to positively affect so many lives. WordPress had started to change my life.</p>\n<p>When I started publishing content with WordPress, I knew little about its technical insights but gradually became aware of it. I started as a 360 writer who could pen down her thoughts on any niche, but soon I realized that<strong><i> instead of doing something of everything, I should learn everything of something</i></strong>. And that everything was WordPress.</p>\n<p>Yes! WordPress is my new gluten and since 2013, this open source script has become a life-changing experience for me. I think that my passion for writing is the best fit to convey my thoughts and opinions on WordPress. Currently, I’m a part of <a href=\"http://wptie.com/\">WPTie</a> and working as the Creative Director.</p>\n<h3>A Competitive Advantage</h3>\n<p>My day to day routine involves reading about WordPress (and boy I read a lot of it), slacking through WP Slack, improving documentation of our products, providing WordPress support and blogging about WordPress. I also try listening to the popular podcasts. I follow folks like <a href=\"https://twitter.com/chrislema\">Chris Lema</a>, <a href=\"https://twitter.com/tommcfarlin\">Tom McFarlin</a>, and <a href=\"https://twitter.com/learnwithmattc\">Matt Cromwell</a>. Recently, I&#8217;ve also started a new venture with Ahmad Awais, i.e. a blog about stuff that couples well with WordPress <a href=\"http://wpcouple.com/\">WPCouple.com</a>.</p>\n<p>Working at WPTie has been amazing. It has provided me with an excellent opportunity to work with a talented lot of the community ranging from beginners all the way up to professional developers, bloggers, designers, and WordPress core contributors, etc. So, interacting with like-minded people who are heading towards the same career goals as me is fascinating.</p>\n<h2>All Set To Grow as a WordPress Journalist</h2>\n<p>I have turned my life around from being an Electrical Eng. to becoming a WordPress Journalist. By now, I have reviewed several plugins, themes, and frameworks, and now I&#8217;m heading towards a big goal. My team and I are working on a brand new online content agency through which we can offer copywriting services to the WordPress community.</p>\n<p>One of my goals has to never be just a copywriter, and that&#8217;s what I am up to. I write on complex WordPress topics which help me experiment and learn how to develop with WordPress while following the coding standards set by the community.</p>\n<blockquote><p>If you think my story has a lot of WordPress in it, then you cannot be more right.</p></blockquote>\n<p>I believe that sharing more than 26% of the web; WordPress has empowered many ordinary people.  I also find myself gearing for the same queue. My prime focus will be towards reviewing WordPress products as they are here to stay for sure. Likewise, I&#8217;m also brainstorming about my content agency.</p>\n<p>With that said, I am planning to enter the services market, and one of my huge inspirations and motivations have been <a href=\"https://twitter.com/jenniferbourn\">Jennifer Bourn</a>. I truly admire the way she is maintaining a perfect blend of both personal and professional life. Because there always exists a big <strong><i>either</i></strong> for most of the women when it comes to choosing a professional career versus being a traditional housewife. Likewise, I&#8217;m planning to attend WordCamps next year and looking forward to meeting her.</p>\n<p>I’ll conclude by stating the obvious ~ It&#8217;s hard to write about yourself. I don&#8217;t call myself a hero, hell I am no hero. On the contrary I am embarking on a journey to be better at what I do, and I cannot wait to see what is in store for me. Right now I&#8217;m happy and satisfied with what I do, I am surrounded by great people trying to accomplish great things and not many people can say that about their career. That&#8217;s because of WordPress and the community around it. So, Thank You, WordPress!</p>\n<p>Thanks for reading! I&#8217;d love to hear back from you. You can reach out to me on <a href=\"https://twitter.com/MaedahBatool\">Twitter</a> or at my personal <a href=\"https://maedahbatool.com/\">blog</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/making-wordpress-journalist/\">The Making of a WordPress Journalist</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:\"Maedah Batool\";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:36:\"HeroPress: You Really Have No Excuse\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1011\";s: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:\"http://heropress.com/essays/really-no-excuse/\";s: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:11696:\"<img width=\"600\" height=\"600\" src=\"http://heropress.com/wp-content/uploads/2016/06/vlad_olaru_pixelgrade.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Vlad Olaru\" /><div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: You Really Have No Excuse\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=You%20Really%20Have%20No%20Excuse&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Freally-no-excuse%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: You Really Have No Excuse\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Freally-no-excuse%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Freally-no-excuse%2F&title=You+Really+Have+No+Excuse\" rel=\"nofollow\" target=\"_blank\" title=\"Share: You Really Have No Excuse\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/really-no-excuse/&media=http://heropress.com/wp-content/uploads/2016/06/vlad_olaru_pixelgrade-150x150.jpg&description=You Really Have No Excuse\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: You Really Have No Excuse\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/really-no-excuse/\" title=\"You Really Have No Excuse\"></a></div><p>Topher really dropped it on me with this article. There I was happily mumbling away about philosophy and life lessons (with regards to our experience at PixelGrade) when he said: “<em>I’d love a message from you to other Romanians about what a business around WordPress can do for them</em>”. I kept on mumbling anyway (it’s a thing I am really good at <img src=\"https://s.w.org/images/core/emoji/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> ). “<em>Sure, I can do that!</em>”</p>\n<p>But when it came to writing my “message”, damn. Talk about brain freeze. Should I write about this or that? Does this really relate to Romanians or it’s just something general? Are Romanians different in this respect? We have good coders here… but boy how lame we are when it comes to… There is talent here but… And on and on it went — procrastination 101.</p>\n<p>I just couldn’t put my finger on it. I needed a solid reason. Something worthwhile. Something that I could get behind as being useful to others (Romanians included) from a new point of view (at least for me).</p>\n<p>But you know what? I am going to mumble away about what I think kept us alive and kicking all these years and what is keeping others from joining the fun. WordPress, with it’s <em>capital_P_dangit()</em>, is an important part of it. Consider it an open letter to the Romanian community (and others in a similar situation), worthy of HeroPress, but most importantly helpful to some of you.</p>\n<h3>Where do I start?</h3>\n<p>You start from yourself. The rest will come later, with time. Right now all you have is you: you the wannabe coder, designer, marketer, what have you.</p>\n<p>Just like me and my brother George. When we’ve started, we were just two kids (he was really a kid in highschool; I was in university — but age doesn’t show on me <img src=\"https://s.w.org/images/core/emoji/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> ) wanting to do something NOW. Not tomorrow, not when we finished our formal education, not when the opportunity presented itself to us. NOW! This sense of urgency is important to seed early on and hang on to it.</p>\n<p>We knew some HTML, CSS, coding on my part (but not PHP), and that was pretty much it. No business experience, no mentors, no friends that were already doing this, no internet acquaintances that would give us some work to start from. Just us, a computer and the internet (that is, Romania’s internet speed — lucky us).</p>\n<p>So where to start? From the obvious place, of course. Freelancing marketplaces. After some looking around, we’ve settled for vWorker.com (mainly because it seemed more upper class than the likes of freelancer.com — it got bought by the latter in the meantime). We started with very small gigs and worked our way (in a couple of years) to larger projects.</p>\n<p>This is the point where we were forcibly introduced to WordPress. At first small customizations for themes, then the classic by now PSD-to-WP. We were getting the hang of it and loving it. We were honing our skills, making more money than most around us (it pays to have low living standards), and making a good name for ourselves.</p>\n<p>So stop making excuses and start doing something. Keep at it and good things will happen, with time.</p>\n<h3>But I want to be the Michelangelo of coders…</h3>\n<p>Oh please! I know you want to be the best you can be, that you think learning that extra technique will make you even greater, that exploring that extra framework will widen your possibilities. No it won’t. It will only postpone the day when you actually do something and put it to the test of actual people. I know, it scares the shit out of you. It surely did scare us.</p>\n<p>But that is the only way you will truly learn. You will hone your skills, but more importantly, you will learn what you actually need to know to get something done. That extra framework that you know will only drag you down. When faced with a problem you will have a hard time attacking it because you know so many “wonderful” ways it could be done. You will try to code for the sake of code.</p>\n<p>Trust me. You don’t really want to be Michelangelo (I think neither did he). You want to be happy and satisfied with your end results. This is where WordPress comes into play once again.</p>\n<p>It’s code base is not beautiful by any current standard. It’s not cutting edge, it’s not very “automagical”, part of it is truly out-dated, the templating is cumbersome bordering ancient in today’s landscape. You know it, I know it, and everybody else with some coding experience knows it. So what? Is it stopping you from crafting a sweet design and letting your customers enjoy it? Far from it.</p>\n<blockquote><p>Stop agonizing about what it can’t do for your coder ego, and focus on what it can do for your life and your customers.</p></blockquote>\n<p>Praise the internet gods for having such a low barrier of entry, for the gargantuan community, for the endless snippets of code laying around just ripe for copy-pasting. But above all else, thank each contributor that it hasn’t given up on “the user comes first”. It means your customers will also come first. What a great partner to have when starting out.</p>\n<p>And don’t worry, you will get plenty of opportunities to focus on crafting clever code in your themes and/or plugins. Just not at the scale of Google. But then again, you are not Google. It’s healthy to keep a firm footing in reality.</p>\n<h3>It sounds complicated, and I don’t have the resources</h3>\n<p>Are you committed to this or not? Good! Then stop for a moment and think. Do you have to build everything yourself? Do you have to learn everything? How could you cut some corners without anyone noticing?</p>\n<p>Welcome to the WordPress way (it could very well be the open-source way). The ones before you have literally put millions and millions worth of work on the table (that is dollars, not lei) for anyone to grab and use. You know CSS but not much PHP? Great, grab a starter theme. Or better yet, grab any free theme and hack it to your heart’s desire. And then sell it. Weird right?</p>\n<p>You envision your design with some fancy (aka complicated) functionality? I am sure there is a WordPress plugin out there that does pretty much that. Recommended it, offer styling for it and you are good to go — bootstrapping 101.</p>\n<p>One day, when you will afford it (and if really really makes sense), you can build your own bespoke solutions. But they better be damn good, ‘cuz otherwise few will notice the change.</p>\n<p>When we build a new theme, we purposely try to match the design specs with what is available on WP.org or as a paid add-on to a certain “master” plugin (like WooCommerce). This way we make sure we leave enough time/resources on the table for the things we are really good at: fine tuning the front-end, ensuring a smooth customization experience on the back-end, crafting the copy to help make the complex less so, and so on. Even with 11 strong as we are today, we wouldn’t be able to get at those without leveraging open-source.</p>\n<p>As you can see, the entire WordPress ecosystem is built on a can-do attitude. It’s fun being part of it. Don’t forget to give something back from time to time.</p>\n<h3>The WordPress “stain” will never wash</h3>\n<p>Sadly I still hear about this among developers. And I am sure it can be quite the deterrent for newcomers. I mean you don’t want to hang out with the wrong kind of people right from the start. You’ve got big, long term plans for you life. You could almost envision yourself interviewing for your dream job and being laughed upon for stating WordPress as your experience. It must suck, big time.</p>\n<p>Unless… you realize early on that you simply want to be happy, and that no convoluted line of code will make you happy. Come to think of it, you could create your own dream job.</p>\n<blockquote><p>Choose your own team mates. Forge your own values.</p></blockquote>\n<p>Maybe even a huge WordPress logo outside the office (just to spite the non-believers — or that’s what WordCamps are for?).</p>\n<p>The PixelGrade crew is filled with sinners from all walks of life. We bathe daily in less-than-perfect code, we shamelessly copy-paste code from StackOverflow (with proper attribution of course), we kick browser-compatibility’s butt with !importants… I should really stop. We are actually serious people — sort of.</p>\n<p>Anyway, if you’ve peeked inside the WordPress world and you truly feel it would hold you back, despite all the advantages, leave right ahead. But don’t avoid it just because of misconceptions. You may be missing out.</p>\n<hr class=\"ttfmake-hr\" />\n<p>I could go on mumbling for a long time (it’s a thing I am really good at :) — remember?). Better leave the rest for another time.</p>\n<p>Now, you Romanian (or less so) WordPress enthusiasts (or less so), do let me know your thoughts about the above.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/really-no-excuse/\">You Really Have No Excuse</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:10:\"Vlad Olaru\";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:59:\"HeroPress: How WordPress Taught Me To Be a Better Developer\";s: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:55:\"http://heropress.com/?post_type=heropress-essays&p=1001\";s: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:62:\"http://heropress.com/essays/wordpress-taught-better-developer/\";s: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:9239:\"<div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How WordPress Taught Me To Be a Better Developer\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20WordPress%20Taught%20Me%20To%20Be%20a%20Better%20Developer&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-taught-better-developer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How WordPress Taught Me To Be a Better Developer\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-taught-better-developer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-taught-better-developer%2F&title=How+WordPress+Taught+Me+To+Be+a+Better+Developer\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How WordPress Taught Me To Be a Better Developer\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/wordpress-taught-better-developer/&media=http://heropress.com/wp-content/uploads/2016/06/ed_heropress_article_banner-150x150.jpg&description=How WordPress Taught Me To Be a Better Developer\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How WordPress Taught Me To Be a Better Developer\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/wordpress-taught-better-developer/\" title=\"How WordPress Taught Me To Be a Better Developer\"></a><input type=\"hidden\" name=\"rts_id\" class=\"rts_id\" value=\"1001\" /><input type=\"hidden\" id=\"rts_media_nonce\" name=\"rts_media_nonce\" value=\"0de9308744\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/feed/\" /></div><p>I might seem like a curious choice to write a post at HeroPress. I haven&#8217;t done any WP dev since around 2.0. I&#8217;ve done some work here and there setting up a couple WP installs since, but it&#8217;s been years since I was on a first-name basis with the code of WP.</p>\n<p>After having written some fairly complex plugins, I was pretty cynical about it. Generally I felt that it was a pretty solid front-end, but the codebase was a mess. It may still be a mess, I dunno. I do remember being super disappointed that WP didn&#8217;t go all-in with PHP5 when it stabilized, like some other CMSes. I also spent a fair bit of time criticizing what I felt were technical shortcomings or the codebase. A quick glance at the current codebase tells me it hasn&#8217;t changed much in it&#8217;s approach, and were I to judge the project just based on it&#8217;s codebase, I&#8217;d say it was… problematic.</p>\n<p>I was at <a href=\"https://gist.github.com/funkatron/php%7Ctek%202013\">php|tek 2013</a>, and <a href=\"http://tek13.phparch.com/speakers/#nacin\">one of the keynotes</a> was by <a href=\"https://nacin.com/\">Andrew Nacin</a>. Andrew knew he was speaking to a room filled with a lot of folks who felt like I did &#8212; that WordPress was somehow an <em>embarassment</em> to PHP because it wasn&#8217;t following current best practices. Some people took this quite personally, and spent a lot of time on Twitter during his keynote expressing disagreement with his assertions.</p>\n<p>I, however, found myself in wholesale agreement with Andrew. From the talk description:</p>\n<blockquote><p>Why is [WordPress] so ubiquitous? The answer lies … in a core philosophy that holds the user above all else.</p></blockquote>\n<p>The WordPress lead developers weren&#8217;t stupid, contrary to what so many people thought in that room. They just put the concerns of users over developers.</p>\n<p>The purpose of the project is to <strong>empower users</strong></p>\n<p>The purpose is <em>not</em> to make developers&#8217; lives easier.</p>\n<p>That meant making hard choices about living with legacy code, and being very, very careful about breaking backwards compatibility. Several of Andrew&#8217;s slides showed how utilizing newer PHP libraries or extensions would make it impossible for hundreds of thousands &#8212; sometimes <em>millions</em> &#8212; of WP users to run it on their current hosting provider. API changes due to major code refactors would break popular plugins that users rely on, and likely splinter the WP add-on developer community beyond recognition.</p>\n<p>&#8220;Fixing&#8221; WordPress would in fact make it useless to many, if not most, of the users.</p>\n<p>Ultimately I believe that this is the correct approach. The purpose of creating software, web or otherwise is to <strong>empower people to do things that they&#8217;d otherwise find more difficult or impossible</strong>.</p>\n<p>Web technologies are building blocks. We use them to build solutions to people&#8217;s problems. The point is not the thing we make, nor is the point how we make it. <strong>The point is to help the user</strong>.</p>\n<p>Have we given them more time to do other things by making a task take less time?</p>\n<p>Have we given them access to information they didn&#8217;t have before?</p>\n<p>Have we empowered them to create something they could not?</p>\n<p>Have we given them a voice they didn&#8217;t possess until now?</p>\n<p>Those are the kinds of questions we have to ask. Anything that we choose to do must be in the service of those questions.</p>\n<p><a href=\"https://gist.github.com/funkatron/harperreed.com\">Harper Reed</a> described technology as <strong>a <em>force multiplier</em></strong>, and I think it&#8217;s important to consider it in that respect. The intent is the matter of the user; <strong>the things we create take the user&#8217;s intent and amplify it</strong>.</p>\n<blockquote><p>This is key to really being great at what we do &#8212; we empathize with the user, understand their intent, and create something to amplify their intent.</p></blockquote>\n<p>Sometimes they need a bit of help applying their intent in the most effective ways, but <strong>our technology and technique choices can only serve that intent</strong>. The work I&#8217;ve done in the past few years hasn&#8217;t led me to use WordPress, but that doesn&#8217;t mean it&#8217;s not a very powerful, very useful tool for many people.</p>\n<p>The philosophy of the project continues to guide my thinking as a developer, a speaker at tech conferences, a school board member, and an advocate for mental wellness. In all of these, I have to find the intent, such as allowing a business owner to communicate more easily to customers, or to help others have satisfying careers, or to educate kids in the most effective way possible, or to help others who struggle with mental illness get the help they need.</p>\n<p>Then I have to find what I am able to do that serves that intent. Sometimes it means making a web-based tool. Sometimes it means practicing my technique to be a better speaker. Sometimes it means writing a letter to a frustrated parent. Sometimes it means pushing myself to do things I&#8217;m afraid to do, because it will make a big difference for people who are hurting, and are to afraid to ask for help.</p>\n<p><img class=\"alignnone size-full wp-image-1002\" src=\"http://heropress.com/wp-content/uploads/2016/05/osmi.png\" alt=\"Banner for OSMI, Open Sourcing Mental Illness\" width=\"1024\" height=\"583\" /></p>\n<p>Ultimately what I find most satisfying in life is not the particular actions I&#8217;ve chosen, but <strong>the impact they have upon the people around me</strong>.</p>\n<p><a href=\"http://j.mp/osmikalxvideo\">When I spoke</a> at the <a href=\"http://kalamazoox.org/\">Kalamazoo X conference</a> this spring, I was tasked by the organizers to come up with a <a href=\"https://www.amazon.com/All-Changed-Instant-Six-Word-Memoirs-ebook/dp/B003100UQ0\">six-word memoir</a>. It was an exercise that made me reflect on where I&#8217;ve been, where I hope I&#8217;m going, and how I want to be remembered. This is what I came up with:</p>\n<p>&#8220;By helping others, I save myself.&#8221;</p>\n<p>That&#8217;s what WordPress taught me.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/wordpress-taught-better-developer/\">How WordPress Taught Me To Be a Better Developer</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:10:\"Ed Finkler\";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:36:\"HeroPress: Growing Through 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:54:\"http://heropress.com/?post_type=heropress-essays&p=996\";s: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:\"http://heropress.com/essays/growing-through-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6853:\"<div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Growing Through WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Growing%20Through%20WordPress&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-through-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Growing Through WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-through-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fgrowing-through-wordpress%2F&title=Growing+Through+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Growing Through WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/growing-through-wordpress/&media=http://heropress.com/wp-content/uploads/2016/05/sam_najian-150x150.jpg&description=Growing Through WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Growing Through WordPress\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/growing-through-wordpress/\" title=\"Growing Through WordPress\"></a><input type=\"hidden\" name=\"rts_id\" class=\"rts_id\" value=\"996\" /><input type=\"hidden\" id=\"rts_media_nonce\" name=\"rts_media_nonce\" value=\"3ee123df18\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/feed/\" /></div><p>Having coded on visual studio for quite a while an older fellow of mine got me more interested in web and developing for web by saying &#8220;developing for a desktop is not as fun and as challenging as developing for web, things can get very boring soon on desktop, on web you have more problems to solve and more things to learn&#8221; This was all enough to get me interested in programming for web. With a bit of Yahooing ( googling was not really common or even known back then) I learned about the simplest ui factors of web, CSS and HTML, so thought CSS is the first thing I would like to learn. You know I love colors, colors are attractive after all, specially compared to all the skeleton looking HTML which was never fun enough for me to learn about its font and color attributes.</p>\n<p>CSS and the appetite to learn more got me to this lovely blog of Chris Coyier, namely<a href=\"http://css-tricks.com\"> css-tricks.com</a>. Man you could find a lot in there and most interesting was the videos he did to teach new stuff every week or so. There was this <a href=\"https://css-tricks.com/video-screencasts/1-converting-a-photoshop-mockup-part-1-of-3/\">converting photoshop mockup</a> videos and <a href=\"https://css-tricks.com/video-screencasts/25-designing-for-wordpress-part-one/\">designing for WordPress</a> videos by him that brought me in touch with WordPress. Promise you won’t laugh and I will reveal a secret; before watching these WordPress templating video I was always mistaking WordPress logo for of that of <a href=\"http://www.volkswagen.de/de.html\">Volkswagen</a>, and was always really confused about the sentences on<a href=\"http://wordpress.org\"> wordpress.org</a> homepage and how they could relate to Volkswagen. Add to this my bad English, yea my English was even worse than what you see now in those days.</p>\n<p>I was already making some little money developing in vb, but the exposure to WordPress brought an even more fun and well in demand skill-to-be to my plate. I was learning more and more about WordPress here and there, getting a few clients to create some kind of online catalogues for them while trying to bring a CMS out of this blogging platform. Back then without all the fancy custom post types and custom taxonomies and all the rest that came with them was not an easy thing to treat WordPress as a CMS.</p>\n<h3>Expanding to the web</h3>\n<p>WordPress was great company for the situation of those days. I was a freshman university student with very little computer science education, almost no money to buy extracurricular courses but very eager to be independent and learn things on my own with the help of not-so-fast internet of those days. jQuery was just around as well and I was making JavaScript more fun and easy. Remember, JavaScript demand of those days was hardly anything other than manipulating the DOM, so the ease and fun of WordPress and the life-saver jQuery was empowering me to get clients and make them happy. Honestly I learned WordPress before even learning PHP, HTML, CSS, a bit of jQuery and some knowledge about WordPress was just enough for me to create websites, mostly in the online-catalogue realm.</p>\n<p>In those days Joomla and Drupal were much more advanced than WordPress since WordPress hadn’t added the more advanced features we have today.</p>\n<blockquote><p>So as I was learning more about WordPress, Web, and PHP, WordPress was getting bigger and more advanced.</p></blockquote>\n<p>Perfect timing right? It was small when I had little knowledge but was getting bigger and more advanced while I was educating myself more about WordPress.</p>\n<p>How WordPress makes things easy keeps me using it and developing for it even after  good experience with a couple of other PHP and JavaScript frameworks.  This is why after developing with some other PHP frameworks I was thrilled to receive an email from <a href=\"https://premium.wpmudev.org/\">WPMUDEV</a> telling me about their job vacancy for WordPress plugin developer, so I applied for this position with them and was lucky enough to get back to work with this lovely and fun tool after a while being away from it.</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/growing-through-wordpress/\">Growing Through WordPress</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:10:\"Sam Najian\";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:69:\"HeroPress: Groomed for Real Estate, Destined for Something Else . . .\";s: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:54:\"http://heropress.com/?post_type=heropress-essays&p=987\";s: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:72:\"http://heropress.com/essays/groomed-real-estate-destined-something-else/\";s: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:7787:\"<div class=\"rtsocial-container rtsocial-container-align-left rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Groomed for Real Estate, Destined for Something Else . . .\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Groomed%20for%20Real%20Estate%2C%20Destined%20for%20Something%20Else%20.%20.%20.&via=heropress&url=http%3A%2F%2Fheropress.com%2Fessays%2Fgroomed-real-estate-destined-something-else%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-twitter-count\"></span></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Groomed for Real Estate, Destined for Something Else . . .\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=http%3A%2F%2Fheropress.com%2Fessays%2Fgroomed-real-estate-destined-something-else%2F\" rel=\"nofollow\" target=\"_blank\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-fb-count\"></span></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=http%3A%2F%2Fheropress.com%2Fessays%2Fgroomed-real-estate-destined-something-else%2F&title=Groomed+for+Real+Estate%2C+Destined+for+Something+Else+.+.+.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Groomed for Real Estate, Destined for Something Else . . .\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-linkedin-count\"></span></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=http://heropress.com/essays/groomed-real-estate-destined-something-else/&media=http://heropress.com/wp-content/uploads/2016/05/nicole_osburn-150x150.jpg&description=Groomed for Real Estate, Destined for Something Else . . .\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Groomed for Real Estate, Destined for Something Else . . .\"></a></div><div class=\"rtsocial-horizontal-count\"><div class=\"rtsocial-horizontal-notch\"></div><span class=\"rtsocial-pinterest-count\"></span></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"http://heropress.com/essays/groomed-real-estate-destined-something-else/\" title=\"Groomed for Real Estate, Destined for Something Else . . .\"></a><input type=\"hidden\" name=\"rts_id\" class=\"rts_id\" value=\"987\" /><input type=\"hidden\" id=\"rts_media_nonce\" name=\"rts_media_nonce\" value=\"ba53090d47\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/feed/\" /></div><p>While other kids played with beanie babies I was hawking mine on eBay. I was always enamored with business and marketing. My family had a successful real estate business and at a young age I knew I wanted to go into business. I realized the importance of online marketing early on with my beanie baby business. Heck, I made two thousand dollars selling beanie babies when I was 13. I was not making that kind of money when I set up booths at collector shows. It’s all about the E-Commerce, baby!</p>\n<h3>Bubble burst</h3>\n<p>When I was 19, I obtained my real estate license. College was never really in my “life” plan. My plan was to work for the family business, in real estate.</p>\n<p>Unfortunately for me, I became a real estate agent in 2007. As you recall, the real estate market crashed in 2008 and it crashed hard. This is when I realized I had to change my career path because of the economy. I was heartbroken that I had to start over. Little did I know this was a blessing in disguise.</p>\n<h3>Diversification</h3>\n<p>Fast forward to my college years. -Oh boy!</p>\n<p><img class=\"alignright size-full wp-image-988\" src=\"http://heropress.com/wp-content/uploads/2016/05/Selection_431.png\" alt=\"Logo for 33.3\" width=\"201\" height=\"100\" />With an entrepreneurship spirit, a few of my friends and I joined forces to make the best t-shirt company ever. Our business model was flawless, well at least that’s what we had thought. The name of our company was 33.3 (I know, how cliché). We had a developer, graphic designer and a marketing/sales person.</p>\n<p>While our developer used Dreamweaver, this was the first time I understood the importance of web development. Watching Diggnation and conjuring up our next business scheme, I began to understand more about development, different kinds of files, and the difference between serif and sans serif (everything I now take for granted). The t-shirt business failed <img src=\"https://s.w.org/images/core/emoji/72x72/1f641.png\" alt=\"?\" class=\"wp-smiley\" /> but the lessons it taught me were priceless. This was the first time I knew I had to be a part of the web development process.</p>\n<h3>Back at it again</h3>\n<p>My family stumbled upon some land that was a great investment. It was a “no-brainer” to purchase because the price was too good to pass up. My sister and I decided it was time to learn how the building industry works. Trinity Home Builders emerged where I spent the next four years developing our marketing strategy and web presence.</p>\n<p>After working with three different web developers, I was still not happy with the end result of our website. So, I became obsessed with web development. After the website was in a good place, I was no longer content at Trinity. The CRM and PPC campaigns were on autopilot. Purchasing lumber and dealing with draw sheets was not my forte. I separated myself from Trinity and went back to school to finish the remaining two classes I needed to graduate in Marketing.</p>\n<h3>HTML &amp; CSS 101</h3>\n<p>Last summer I spend two nights a week learning the fundamentals of web development. I obtained a social media certificate after completing that course.</p>\n<p>During the course, we were assigned the task of developing a WordPress website. I finally had my “ah-ha” moment &#8211; now everything I was trying to do for so long made sense.</p>\n<p>Now, just because I can create a site on WordPress, this does not mean I’m a developer. It’s the organic SEO, GA, GSC, social media, and all other inbound marketing that drives me.</p>\n<p>After a combination of my HTML class and WordCamp sessions, WordPress became my CMS of choice and I never looked back.</p>\n<h3>WordCamp</h3>\n<p>I was fortunate to be able to volunteer the first year I attended WordCamp Milwaukee. It was the beginning of my initiation into the WordCamp community. I met many talented individuals during the sessions, volunteering, snagging swag and at the social events. These individuals were not just acquaintances I met in passing, but they became friends and invaluable resources. It was and continues to be a wonderful experience.</p>\n<p>During last year’s WordCamp at the speaker/sponsor after party, I had the privilege of meeting Topher. I shared my story with him and told him how WordPress had impacted my life for the better. He told me about HeroPress. He asked me if I would be interested in writing an essay about my WordPress journey thus far. And, here I am.</p>\n<p>Currently, I work for Tuna Traffic as a Digital Marketing Technologist, and every day I am learning something new. I’m excited to see where my WordPress journey takes me next!</p>\n<p>The post <a rel=\"nofollow\" href=\"http://heropress.com/essays/groomed-real-estate-destined-something-else/\">Groomed for Real Estate, Destined for Something Else . . .</a> appeared first on <a rel=\"nofollow\" href=\"http://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:\"Sun, 24 Jul 2016 20:45: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:\"Nicole Osburn\";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:89:\"WPTavern: WordPress to Bump Recommended PHP Version From 5.6 to 7.0 By The Middle of 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:29:\"https://wptavern.com/?p=58030\";s: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:100:\"https://wptavern.com/wordpress-to-bump-recommended-php-version-from-5-6-to-7-0-by-the-middle-of-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:5703:\"<p>Over the years, WordPress has been developed so that users and site owners don&#8217;t need to have a lot of technical knowledge to install and maintain it. Andrey Savchenko believes that WordPress is <a href=\"https://www.rarst.net/wordpress/technical-responsibility/\">causing technical irresponsibility</a> due to site owners not having to know technical details like which PHP version their site is running.</p>\n<blockquote><p>Is not knowing good for you as a site owner?</p>\n<p>Few good things ever happened by accident and ignorance.</p>\n<p>Running your own site takes learning and effort. It is admirable of WordPress to make that easier. It is self–serving and insincere of it to pretend you don’t have to know anything.</p>\n<p>You <strong>have to know</strong>. You <strong>are responsible</strong>.</p></blockquote>\n<p>The post generated a healthy <a href=\"https://twitter.com/Rarst/status/755084068207861760\">discussion on Twitter</a> that included Matt Mullenweg.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/perezbox\">@perezbox</a> <a href=\"https://twitter.com/Rarst\">@Rarst</a> shallow article: straw man assumptions and arguments, poor understanding of hosting ecosystem, faux controversial ending.</p>\n<p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/755204070789394432\">July 19, 2016</a></p></blockquote>\n<p></p>\n<p>Although it&#8217;s not happening at break neck speeds, there is an effort underway to increase WordPress&#8217; recommended PHP version from 5.6 to 7.</p>\n<p>In September of 2015, Aaron Jorbin <a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/\">published a post</a> on the Make WordPress Core blog that explains what was accomplished in order for WordPress to officially support PHP 7. In the comments of the post, <a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/#comment-27688\">Rahul286 suggests</a> that a warning be displayed that informs users they&#8217;re using an outdated version of PHP.</p>\n<p>Samuel &#8216;Otto&#8217; Wood <a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/#comment-27699\">succinctly explains</a> why a notice wouldn&#8217;t do any good.</p>\n<blockquote><p>A notice by itself is massively pointless to show the end user, who likely neither knows nor cares how their hosting service runs.</p>\n<p>However, it might be worth considering trying to detect the host in question, and providing valuable information for that specific host, such as links and other methods the end user can do to update themselves. Many hosts have a choice, somewhere, and if we know that, we can provide guidance.</p></blockquote>\n<p>Unlike WordPress&#8217; <a href=\"https://premium.wpmudev.org/blog/wordpress-3-2-browse-happy-or-browse-crappy/\">Browse Happy notifications added in WordPress 3.2</a> that notifies users to update their browser, it appears WordPress is unlikely to perform a similar role with PHP versions.</p>\n<p>Jorbin <a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/#comment-27670\">also commented</a> on the article suggesting that developers reach out to their local user groups and inform users why they need to care about which version of PHP their site is using.</p>\n<blockquote><p>One thing everyone can do to help move these numbers is to talk to your local user group about why they need to care about the PHP version they run. Show them how they can upgrade, show them benchmarks of PHP 7 vs. earlier versions (especially vs 5.2).</p></blockquote>\n<p>Three months ago, Jorbin created a <a href=\"https://core.trac.wordpress.org/ticket/36484\">trac ticket</a> with the suggestion that the PHP requirement for WordPress be increased from 5.6 to 7. Although many of the commenters agree with the move, Gary Pendergast <a href=\"https://core.trac.wordpress.org/ticket/36484#comment:8\">says</a> it&#8217;s best to wait. Dominik Schilling, WordPress 4.6 release lead, <a href=\"https://core.trac.wordpress.org/ticket/36484#comment:11\">agrees</a>.</p>\n<blockquote><p>Given that we have until the end of the year before we <em>have</em> to bump it, there&#8217;s no harm in holding off until major plugins are confirmed to work without notices or warnings. Until we can confirm that, I&#8217;m -1 on bumping the version for now.</p>\n<p>This is remembering that we&#8217;re talking about the <em>recommended</em> PHP version. The recommended version should be providing an ideal experience for folks, we shouldn&#8217;t be bumping to a bigger number just because it&#8217;s there.</p>\n<p>Given the PHP 5.6 support timeline, we&#8217;ll be bumping it by WordPress 4.8 at the latest, so it&#8217;d be nice to use those intervening months to ensure the UX for the wider WordPress ecosystem under PHP 7 is solid.</p></blockquote>\n<p>Major plugins like the <a href=\"https://core.trac.wordpress.org/ticket/36281\">WordPress Importer</a> are not yet compatible with PHP 7. Developers are highly encouraged to use the time before PHP 5.6 reaches <a href=\"http://php.net/supported-versions.php\">end of life</a> to thoroughly test their plugins and themes for PHP 7 compatibility.</p>\n<p>Mullenweg has <a href=\"https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/#comment-27668\">made it clear</a> that he will not use WordPress&#8217; marketshare to force webhosting companies to upgrade to PHP 7 but rely on established relationships instead. In order to move the needle and get site owners to know and care about PHP versions, it&#8217;s going to take a continuous effort on the part of the WordPress community to educate them.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 00:42:55 +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: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:65:\"WPTavern: BuddyPress 2.8 Will Bump Minimum PHP Requirement to 5.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:29:\"https://wptavern.com/?p=57943\";s: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/buddypress-2-8-will-bump-minimum-php-requirement-to-5-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:3951:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398&ssl=1\" alt=\"buddypress-logo-blue\" class=\"aligncenter size-full wp-image-30655\" /></a></p>\n<p>BuddyPress lead developers have decided to bump the minimum PHP requirement for version 2.8 of the plugin to 5.3+. The <a href=\"https://codex.buddypress.org/getting-started/php-version-support/\" target=\"_blank\">new guidelines for BuddyPress&#8217; PHP version support</a>, authored by Boone Gorges on behalf of the team, states that the plugin will offer full support for <a href=\"http://php.net/supported-versions.php\" target=\"_blank\">all stable versions of PHP officially supported by the PHP project</a> (currently, 5.6.x and 7.0.x). Gorges outlined what &#8220;full support&#8221; means:</p>\n<ul>\n<li>BuddyPress should run error-free (ie, without fatal errors or PHP notices) on the PHP version.</li>\n<li>If a new version of BP includes a feature that requires a more recent version of PHP, the feature should be gracefully disabled on earlier PHP versions.</li>\n<li>The PHP version will be included in the plugin&#8217;s <a href=\"https://travis-ci.org/buddypress/BuddyPress/\" target=\"_blank\">automated testing build matrix</a>.</li>\n</ul>\n<p>The BP leadership team agreed that the project will provide basic support for legacy versions of PHP &#8220;until the cost-benefit ratio for supporting a given version suggests that it should be dropped.&#8221; That is the case with 5.2, which is currently in use on 7.6% of WordPress sites. Gorges acquired additional statistics from WordPress.org that indicate only 3.23% of BuddyPress sites are running on PHP 5.2:</p>\n<p><code>Unknown - 1.08%<br />\n5.2     - 3.23%<br />\n5.3     - 12.92%<br />\n5.4     - 34.44%<br />\n5.5     - 22.38%<br />\n5.6     - 23.02%<br />\n7.0     - 2.92%</code></p>\n<p>Another factor in the team&#8217;s decision is the project&#8217;s recent <a href=\"https://wptavern.com/buddypress-2-7-development-kicks-off-project-shifts-focus-to-developers-and-site-builders\" target=\"_blank\">shift in focus towards developers and site builders</a>, prioritizing building out the BuddyPress REST API.</p>\n<p>&#8220;Coupled with these numbers is the recognition that PHP 5.3 introduced features that have a meaningful effect on our ability to write a modern PHP application: namespaces, closures, guaranteed access to SPL, late static binding, and so on,&#8221; Gorges said. &#8220;As BuddyPress aims to build a major new feature – a REST API – it frees us up significantly to be able to take advantage of these and other features unavailable in PHP 5.2.&#8221;</p>\n<p>Gorges also explained why BuddyPress isn&#8217;t bumping the minimum version all the way up to 5.6, which is the oldest version for which the PHP project is still issuing security updates. With roughly three quarters of BuddyPress sites running on PHP versions 5.5 or older, a major jump to 5.6 would break the majority of sites using the plugin.</p>\n<p>&#8220;For many (most?) people running BuddyPress, updating PHP is emphatically not a simple task,&#8221; Gorges said. &#8220;As such, we would simply lose these users, or cause them to stay on old and unsupported versions of BuddyPress. We support WordPress’ ongoing, progressive efforts to work with webhosts to move sites off of old versions of PHP.&#8221;</p>\n<p>These changes will go into effect as of BuddyPress 2.8. In the meantime, contributors are working on <a href=\"https://buddypress.trac.wordpress.org/ticket/7195\" target=\"_blank\">adding a notice</a> when activating BuddyPress on a site that doesn&#8217;t meet system requirements as well as <a href=\"https://buddypress.trac.wordpress.org/ticket/7196\" target=\"_blank\">preventing the plugin from being updated</a> when minimum requirements are not met.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 18:56: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: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:53:\"WPTavern: Stack Overflow Documentation is Now in Beta\";s: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=57906\";s: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/stack-overflow-documentation-is-now-in-beta\";s: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:4516:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/stack-overflow.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/stack-overflow.png?resize=1025%2C401&ssl=1\" alt=\"stack-overflow\" class=\"aligncenter size-full wp-image-57913\" /></a></p>\n<p>Building on the success of its Q&amp;A communities, Stack Overflow <a href=\"http://blog.stackoverflow.com/2016/07/introducing-stack-overflow-documentation-beta/\" target=\"_blank\">announced</a> that its new <a href=\"http://stackoverflow.com/tour/documentation\" target=\"_blank\">Documentation</a> product is now in beta. For the past eight years, the site has rewarded expert advice by floating high quality answers to the top and allowing users to earn reputation points. This formula has turned out to be more successful than traditional forums where it&#8217;s often difficult, if not impossible, to discern the quality of answers provided to questions.</p>\n<p>Stack Overflow Documentation is curated by the community and focuses on providing code examples for developers. It offers versioning, collaborative authoring, and voting, which helps surface the best contributions. The documentation segment of the site has a new set of reputation badges and is open to contribution and feedback from anyone.</p>\n<p>&#8220;Documentation gives a home to a lot of this good content that has been turned away, or very hard to &#8216;get right&#8217; in the Q&amp;A format. Namely, the canonical, general reference, instructional content,&#8221; Stack Overflow developer Kevin Montrose said in the announcement.</p>\n<p>&#8220;It&#8217;s need-driven and self-healing,&#8221; Montrose said. &#8220;The best, most diligent technical writer out there still can&#8217;t beat thousands of actual users trying to learn a function or concept while writing real code. They&#8217;ll determine what topics or examples are needed most. And whenever something fails to explain something clearly, they can ask for it to be improved.&#8221;</p>\n<p>The <a href=\"http://wordpress.stackexchange.com/\" target=\"_blank\">WordPress Stack Exchange</a> is a thriving community and a <a href=\"http://stackoverflow.com/documentation/wordpress\" target=\"_blank\">WordPress documentation tag</a> is already active on Stack Overflow with 10 topics, 12 topic requests, and 13 proposed. A sampling of topics so far include the Loop, registering custom post types, making network requests with HTTP API, and enqueuing scripts.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/wordpress-documentation-stack-overflow.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/07/wordpress-documentation-stack-overflow.png?resize=1025%2C696&ssl=1\" alt=\"wordpress-documentation-stack-overflow\" class=\"aligncenter size-full wp-image-57915\" /></a></p>\n<p>It would take many months, if not years, for the Stack Overflow WordPress Documentation to even come close to the quantity of official documentation on WordPress.org, but the site has the potential to become a valuable alternative resource. The fact that anyone can jump in and contribute using an existing Stack Overflow account makes the barrier to entry very low.</p>\n<p>&#8220;From my experience with WP docs over years there is a significant issue with people using code snippets over and over again, while they become long outdated,&#8221; said Andrey Savchenko, a longtime WordPress Stack Exchange contributor and moderator.</p>\n<p>&#8220;However, my first impression is that Documentation is considerably harder to use than the Q&amp;A sites,&#8221; he said. &#8220;It will take some time to see if it will be easier to contribute to than say Codex and Devhub, as well as if it manages to gather a community of WP experts to consistently participate.&#8221;</p>\n<p>For whatever reason, many developers are not fond of writing documentation, especially when it comes to documenting products that are not their own. Stack Overflow&#8217;s Documentation beta will show whether recognition in the form of badges and reputation can attract people who otherwise wouldn&#8217;t be inclined to contribute to documentation.</p>\n<p>If Stack Overflow can motivate developers to write documentation with the same success as the Q&amp;A sites, the company may potentially <a href=\"http://disq.us/p/1a8c0kf\" target=\"_blank\">explore adding this feature to its Enterprise version</a>, which is built to support private instances of 500 or more users.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 16:57: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: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:113:\"WPTavern: WPCampus Survey Results Indicate Misconceptions of WordPress Are Slowing its Growth in Higher Education\";s: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:45:\"https://wptavern.com?p=57793&preview_id=57793\";s: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://wptavern.com/wpcampus-survey-results-indicate-misconceptions-of-wordpress-are-slowing-its-growth-in-higher-education\";s: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:3611:\"<p>Before the first inaugural <a href=\"https://wpcampus.org/\">WPCampus</a> took place last weekend, the organizing team <a href=\"https://wptavern.com/help-wpcampus-gather-data-on-how-schools-and-campuses-use-wordpress\">conducted a survey</a> to learn how WordPress is used in higher education. A total of 486 people responded to the survey. Modern Tribe has not only made the <a href=\"http://bit.ly/WPCampusStudy\">survey results available to the public</a>, they have also published <a href=\"http://tri.be/blog/wpcampus-survey-wordpress-trends-in-education/\">an in-depth</a> review of the data.</p>\n<p>There are a couple of items that stand out to me. Misconceptions that have plagued WordPress for years are affecting people&#8217;s decision to use it.</p>\n<p>For instance, 18% of respondents said scalability is a barrier to being accepted at their school. Meanwhile, 37% of respondents said that WordPress&#8217; reputation of being <em>just a blogging platform</em> hindered its ability to be the platform of choice.</p>\n<p>The <a href=\"https://wordpress.org/showcase/\">WordPress showcase</a> is filled with sites both large and small that prove WordPress&#8217; scalability. It&#8217;s also filled with sites that show WordPress is used for far more than blogging.</p>\n<p>As WordPress continues to evolve from being a blogging platform to something capable of doing much more, it&#8217;s disappointing that this misconception still exists. Is there any hope that people can discover and realize that blogging is something WordPress is great at, but at its core, provides people the ability to go above and beyond?</p>\n<p>Another fascinating part of the survey is the security aspect where 42% of respondents reported that they do not have a list of vetted plugins for their network. In addition, 13% of respondents said their networks are not running the latest version of WordPress.</p>\n<p>How survey questions are asked can be the difference between receiving actionable or unusable data. ModernTribe acknowledges that the questions in future versions of the survey can be worded better to increase the accuracy of data.</p>\n<blockquote><p>If you take a look at the multi-part question we used to help qualify the institutions represented in the survey, you’ll that it could have been written much better. Since the main part of the question was mandatory, the survey also made the subsection where you could input your URL mandatory as well.</p>\n<p>Other areas we can improve include better categorization for multiple-choice questions, including an option for &#8216;n/a&#8217; or &#8216;I don’t know&#8217; in more questions, and fewer write-in responses.</p></blockquote>\n<p>If you&#8217;re interested in reviewing the survey results, you can access them via <a href=\"http://bit.ly/WPCampusStudy\">this spreadsheet</a> on Google Docs.</p>\n<p>For those that didn&#8217;t get a chance to attend WPCampus in person or watch it live, I highly encourage you to read <a href=\"http://davidbisset.com/wpcampus-review/\">this review</a> from David Bisset, who has organized a number of large WordPress conferences. There&#8217;s also <a href=\"https://calderawp.com/2016/07/wpcampus-2016-recap/\">this review</a> by Josh Pollock of CalderaWP. Last but not least, Adam Warner <a href=\"https://wpdistrict.sitelock.com/blog/wp-campus-a-wordpress-event-focused-on-higher-education/\">shares his experience</a> on the SiteLock blog.</p>\n<p>What do you think of the WPCampus survey results? Is there any data that surprises you? Let us know in the comments.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 23:56: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: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:60:\"WPTavern: WPWeekly Episode 242 – Interview with Eric Meyer\";s: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:45:\"https://wptavern.com?p=57789&preview_id=57789\";s: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:67:\"https://wptavern.com/wpweekly-episode-242-interview-with-eric-meyer\";s: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:2812:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"http://meyerweb.com/\">Eric Meyer</a>. Meyer is an American web design consultant and author. He is best known for his advocacy work on behalf of<a href=\"https://en.wikipedia.org/wiki/Web_standards\"> web standards</a>, most notably<a href=\"https://en.wikipedia.org/wiki/Cascading_Style_Sheets\"> Cascading Style Sheets</a> (CSS), which is a technique for managing how<a href=\"https://en.wikipedia.org/wiki/HTML\"> HTML</a> is displayed.</p>\n<p>We start off the show by discussing the technology of the 70s and 80s and how Meyer got involved with the CSS language. We then go in-depth on a number of topics covered in his WordCamp Northeast Ohio keynote presentation on <a href=\"http://wordpress.tv/2016/06/24/eric-a-meyer-design-for-real-life/\">Designing for Real Life</a>. Near the end of the interview, we find out what the state of CSS is and some of the key developments to keep an eye on.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\">WordPress 4.6 Beta 4</a><br />\n<a href=\"http://wordpress.tv/2016/06/24/eric-a-meyer-design-for-real-life/\">Eric Meyer &#8211; Designing for Real Life</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/byconsole-woo-order-delivery-time/\">WooCommerce Order Delivery or Pickup with Date and Time </a>is a plugin that allows customers to choose a desired delivery/pickup date and time for WooCommerce&#8217;s orders through a frontend widget. You can control number of days required to place an order, delivery hours to choose from, and the pickup hours available.</p>\n<p><a href=\"https://wordpress.org/plugins/haremo-social-screenshots/\">HAREMO Social Screenshots </a>creates screenshots of Posts and Pages and uses the screen grabs as thumbnail images when the URL is shared on Facebook or Twitter.</p>\n<p><a href=\"https://wordpress.org/plugins/cf7-messenger/\">Cf7 Messenger </a>works with Contact Form 7 and immediately sends submissions to Facebook Messenger.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 3rd 9:30 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\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">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\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #242:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 20:42: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: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:141:\"WPTavern: Ford Foundation Publishes Non-Technical White Paper on Open Source Software and the Challenges of Sustaining Digital Infrastructure\";s: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=57765\";s: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:152:\"https://wptavern.com/ford-foundation-publishes-non-technical-white-paper-on-open-source-software-and-the-challenges-of-sustaining-digital-infrastructure\";s: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:6254:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/roads.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/roads.jpg?resize=960%2C564&ssl=1\" alt=\"photo credit: Khara Woods\" class=\"size-full wp-image-57770\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/476JX1HAUX\">Khara Woods</a>\n<p>Last week the Ford Foundation <a href=\"http://www.fordfoundation.org/library/reports-and-studies/roads-and-bridges-the-unseen-labor-behind-our-digital-infrastructure/\" target=\"_blank\">published a white paper</a> titled &#8220;Roads and Bridges: The Unseen Labor Behind Our Digital Infrastructure.&#8221; The foundation, established in 1936 by Edsel Ford, president of the Ford Motor Company, is currently working to challenge inequality and advance human welfare. This new document in the foundation&#8217;s library, written by Nadia Eghbal, addresses the challenges of sustaining our digital infrastructure:</p>\n<blockquote><p>Everybody relies on shared code to write software, including Fortune 500 companies, government, major software companies and startups. In a world driven by technology, we are putting increased demand on those who maintain our digital infrastructure. Yet because these communities are not highly visible, the rest of the world has been slow to notice.</p>\n<p>Just like physical infrastructure, digital infrastructure needs regular upkeep and maintenance. But financial support for digital infrastructure is much harder to come by.</p></blockquote>\n<p>Eghbal, an amateur software developer who previously worked in venture capital, drew from her experience using open source code when preparing the 143-page report. She also interviewed many leaders and contributors in various open source software communities.</p>\n<p>&#8220;After I left my job in venture capital last year, I set off to explore the paradox I couldn’t stop thinking about: that there were valuable software tools that couldn’t be supported by commercial models, and that they lacked any form of institutional support,&#8221; she said.</p>\n<p>The unique thing about this extraordinary contribution from the Ford Foundation is that Eghbal wrote the document to help consumers and companies understand the toll open source software takes on its contributors and offers strategies for how they can be supportive of the world&#8217;s shared digital infrastructure. It bridges a critical gap in understanding between the open source software development community and the people who use the software every day.</p>\n<p>&#8220;Most of us take opening a software application for granted, the way we take turning on the lights for granted,&#8221; Eghbal said. &#8220;We don’t think about the human capital necessary to make that happen.&#8221;</p>\n<p>Eghbal compares the physical infrastructure of the transportation industry to that of the digital world. She contends that the decentralized nature of digital infrastructure makes it more difficult to maintain as a public good. Since the progress is driven by citizens working together, and not by any official governing body, it requires consumers and companies to be supportive of how software communities work if we hope to achieve long-term sustainability of the open source projects we depend on.</p>\n<p>Eghbal introduces consumers to common ways that open source projects find financial support but also highlights how many widely used projects can fall through the cracks. The document opens with the example of OpenSSL and the Heartbleed vulnerability which was exposed in 2014.</p>\n<p>&#8220;A 2015 study by the Federal University of Minas Gerais in Brazil looked at 133 of the most actively used projects hosted on GitHub, across programming languages, and found that 64%, or nearly two-thirds, relied upon just one or two developers to survive,&#8221; Eghbal said. &#8220;Although there may be a long tail of casual or infrequent contributors, for many projects, the major responsibilities of project management fall on just a few people.&#8221;</p>\n<p>In offering a brief history of open source software, Eghbal cites WordPress as a prime example (on page 34) of software that is flexible to customize thanks to the freedom its creators gave the project when licensing it under the GPL. Nevertheless, our community shares many of the struggles identified in the document, as maintainers of some of our most important development tools often cannot find financial support that will enable them to keep working on these projects.</p>\n<p>The white paper covers many important topics that help non-technical consumers understand the critical need to support the creators of our digital infrastructure. A few example chapters include:</p>\n<ul>\n<li>How not charging for software transformed society</li>\n<li>Why digital infrastructure support problems are accelerating</li>\n<li>Open source’s complicated relationship with money</li>\n<li>Business models for digital infrastructure</li>\n<li>Institutional efforts to support digital infrastructure</li>\n</ul>\n<p>Eghbal advocates treating digital infrastructure as a necessary public good and working with existing software communities. She calls for a more holistic approach to project support, beyond just code and money.</p>\n<p>Many of the topics in this white paper are completely new ideas for software consumers but Eghbal&#8217;s explanations make them easy for anyone to understand. She includes basic explanations for software terms like frameworks, libraries, and languages, and explains why certain types of open source projects have a more difficult time finding a means of financial support.</p>\n<p>I highly recommend reading this document, whether you are an open source project maintainer, a company decision maker who contracts software development, or a consumer. The white paper doesn&#8217;t just explore the challenges but also offers constructive ways that people of all walks of life can work together to support our digital infrastructure. You can <a href=\"http://www.fordfoundation.org/library/reports-and-studies/roads-and-bridges-the-unseen-labor-behind-our-digital-infrastructure/\" target=\"_blank\">download the PDF</a> for free from the Ford Foundation.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 20:11:07 +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:108:\"WPTavern: Downtime Expected for Some WP Engine Customers as Linode Patches A Critical Security Vulnerability\";s: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:45:\"https://wptavern.com?p=57724&preview_id=57724\";s: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:119:\"https://wptavern.com/downtime-expected-for-some-wp-engine-customers-as-linode-patches-a-critical-security-vulnerability\";s: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:2128:\"<p>WP Engine customers on legacy Xen Linode host servers are being notified via email and the <a href=\"https://wpenginestatus.com/cloud-security-maintenance-may-cause-downtime/\">company&#8217;s status blog</a> about impending downtime between July 21st and July 25th. According to an email forwarded to the Tavern from a WP Engine customer, Linode&#8217;s <a href=\"https://status.linode.com/incidents/dgzvdyqttr9f\">legacy Xen host servers</a> contain a critical security vulnerability.</p>\n<blockquote><p>We are contacting you today regarding an upcoming emergency security maintenance being performed at one of our cloud infrastructure providers. The majority of cloud infrastructure providers across the world will be conducting maintenance due to this situation.</p></blockquote>\n<p>The details of the vulnerability <a href=\"http://xenbits.xen.org/xsa/\">are embargoed</a> until July 26th giving Linode a limited amount of time to patch its systems. According to Linode, the company has no control over the disclosure date.</p>\n<p>WP Engine expects the maintenance procedure to be conducted at some point on July 23rd. Downtime could last anywhere from 20-40 minutes during the migration.</p>\n<p>This isn&#8217;t the first time both companies have been in the news due to security issues. Earlier this year, <a href=\"https://wptavern.com/linode-confirms-data-security-breach-that-matches-recent-wp-engine-attack\">Linode confirmed</a> that it experienced a data breach which resulted in resetting all of its customer&#8217;s passwords. The data breach was similar to one experienced by WP Engine where an attacker bypassed multiple layers of security to gain access to an administrative panel.</p>\n<p>Linode is encouraging customers using its legacy Xen servers outside of hosting providers to <a href=\"https://www.linode.com/docs/uptime/reboot-survival-guide\">review the following document</a> to prepare for the reboot. WP Engine customers affected by this issue are encouraged to check the <a href=\"http://wpenginestatus.com\">company&#8217;s status blog</a> for further updates.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 22:48: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:\"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: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:117:\"WPTavern: 18 WordPress Plugins Updated Due to Summer of Pwnage Findings, 40+ Vulnerabilities Still in Reporting Stage\";s: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=57668\";s: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:126:\"https://wptavern.com/18-wordpress-plugins-updated-due-to-summer-of-pwnage-findings-40-vulnerabilities-still-in-reporting-stage\";s: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:3211:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/summer-of-pwnage.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/summer-of-pwnage.png?resize=1025%2C390&ssl=1\" alt=\"summer-of-pwnage\" class=\"aligncenter size-full wp-image-57671\" /></a></p>\n<p><a href=\"https://sumofpwn.nl/\" target=\"_blank\">Summer of Pwnage</a>, a Dutch community program for anyone interested in software security, is focusing on WordPress for its current open source security bug hunting event. The community program hosts meetups and workshops on the weekend where anyone from &#8220;enthusiastic beginners to the 1337est hackers&#8221; is welcome to share findings and demonstrate skills and exploits.</p>\n<p>The goal of the community event is to contribute to the security of widely used open source software projects and participants are strongly encouraged to responsibly disclose vulnerabilities to the authors of the original code. WordPress and its thousands of plugins are the target for this month, which organizers call &#8220;a bug hunter&#8217;s paradise.&#8221;</p>\n<p>Summer of Pwnage <a href=\"https://sumofpwn.nl/advisories.html\" target=\"_blank\">July 2016 findings</a> includes dozens of vulnerabilities discovered in popular WordPress plugins. So far, 18 vulnerabilities have been fixed by the plugin authors and more than 40 others are currently in the reporting stage.</p>\n<p>This week Ninja Forms, which has more than 600,000 active installs, issued <a href=\"https://wordpress.org/plugins/ninja-forms/changelog/\" target=\"_blank\">a security release</a> that fixed multiple Cross-Site Scripting (XSS) vulnerabilities discovered by Summer of Pwnage participants. The bug hunters also discovered a XSS vulnerability in WooCommerce (active on over a million installs), which was subsequently <a href=\"https://woocommerce.wordpress.com/2016/07/19/woocommerce-2-6-3-fixsecurity-release-notes/\" target=\"_blank\">patched</a>.</p>\n<p>Security updates are also available for other popular plugins as the result of the program&#8217;s efforts, including Paid Memberships Pro, WP Fastest Cache, Easy Forms for MailChimp, and others. The list of reported vulnerabilities includes links to describe each and is being updated frequently, as WordPress plugin authors release patches to their plugins.</p>\n<p>Summer of Pwnage is hosted at <a href=\"https://www.securify.nl/\" target=\"_blank\">Securify</a>, a software security company. Organizers provide users with VMs and set them loose hunting bugs. The focus of the event is sharing knowledge and teaching others and has been highly beneficial to the WordPress community so far.</p>\n<p>With WordPress plugin vulnerabilities so plentiful, even within the top professionally supported plugins, it would be great to see a niche conference or virtual event focused on security with a contributor day. WordPress needs more guardians spread across the community that can specialize in contributing back in this way. Educational events like Summer of Pwnage demonstrate how successful this kind of event can be for hunting down serious vulnerabilities in the software that millions of people use every day.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 21:38: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: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:86:\"WPTavern: Human Made is Giving Away Two Full Scholarships to A Week of REST Conference\";s: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=57650\";s: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/human-made-is-giving-away-two-full-scholarships-to-a-week-of-rest-conference\";s: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:1349:\"<p><a href=\"https://aweekofrest.hm/\">A Week of REST</a>, a four-day conference devoted to the WordPress REST API that takes place September 4-9 in Darwin Lake, Matlock in the United Kingdom, <a href=\"https://hmn.md/2016/07/20/announcing-two-full-scholarships-a-week-of-rest-for-students-and-under-represented-groups-in-the-tech-industry/\">has announced</a> it is offering two full scholarships for students and under-represented groups in the tech industry.</p>\n<p>“The WordPress REST API is transforming how people use WordPress, opening it up to new technologies and communities. We want to enable people from under-represented groups in technology to develop the skills they need to use the REST API and further their career,” said Siobhan McKeown, Events Director at Human Made.</p>\n<p>The scholarships are worth £1500, and include all of the workshops, training, accommodation, meals, and transfer to Derby or Matlock station. To qualify for the scholarships, you must be employed or looking for work in the field of web development or design.</p>\n<p>Those interested in applying have until July 29th, Midnight CET, to <a href=\"https://aweekofrest.hm/page/scholarship-tickets\">submit an application</a>. Applicants will receive an email by August 5th with details on who received a scholarship.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 20:40: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: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:69:\"WPTavern: WP-CLI GUI: An Interface to Speed Up WordPress Installation\";s: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=57554\";s: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:79:\"https://wptavern.com/wp-cli-gui-an-interface-to-speed-up-wordpress-installation\";s: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:2563:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/wp-cli-gui.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/wp-cli-gui.png?resize=1025%2C400&ssl=1\" alt=\"wp-cli-gui\" class=\"aligncenter size-full wp-image-57658\" /></a></p>\n<p><a href=\"https://wpcligui.com/\" target=\"_blank\">WP-CLI GUI</a> is a new tool from WordPress developer <a href=\"http://timbrugman.com/\" target=\"_blank\">Tim Brugman</a>, created to speed up the creation of new WordPress sites when using <a href=\"http://wp-cli.org/\" target=\"_blank\">WP-CLI</a>. The tool captures the details required to configure the database, site info, admin user, and password. It outputs one long command that WP-CLI users can copy and paste.</p>\n<p>At first it might seem counterintuitive &#8211; if you use the command line to manage WordPress, why would you want to add an extra interface to your workflow? Brugman explained the problem that led him to create WP-CLI GUI:</p>\n<p>&#8220;I heard about WP-CLI and gave it a shot,&#8221; he said. &#8220;I thought it was very neat for managing your sites but a bit of a hassle for new installs. Because installing WP with the CLI is a sequence of commands, if you don&#8217;t concatenate them, you have wait for each to end. It&#8217;s especially annoying because the first, downloading WP, takes the longest.&#8221;</p>\n<p>If you concatenate all of the commands into one giant command with all of the installation variables, the risk of typos increases to where you need to copy and paste.</p>\n<p>&#8220;Once I started copy pasting, I figured I might as well automate that with JavaScript,&#8221; Brugman said. &#8220;That became the ridiculous GUI for the CLI.&#8221;</p>\n<p>Brugman plans to expand with options for removing Akismet and Hello Dolly and is considering adding a list of optional plugins to install.</p>\n<p>&#8220;Depending on the number of plugins you &#8216;always&#8217; use, could save some more time,&#8221; he said. &#8220;Tasks beyond the installation I haven&#8217;t yet looked at. Requests are welcome.&#8221;</p>\n<p><a href=\"https://wpcligui.com/\" target=\"_blank\">WP-CLI GUI</a> is supported by <a href=\"https://toscani.nl/\" target=\"_blank\">Toscani</a>, a web development company. Brugman and his colleagues there use the tool to speed up installation of new WordPress sites. He said the tool is ideally suited for developers who often create new WordPress sites and are comfortable with the command line but don&#8217;t use WP-CLI at every opportunity.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 16:55:38 +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:106:\"WPTavern: John James Jacoby Publishes 35 Part Tweetstorm on WordPress Leadership, Community, and Economics\";s: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=57643\";s: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:115:\"https://wptavern.com/john-james-jacoby-publishes-35-part-tweetstorm-on-wordpress-leadership-community-and-economics\";s: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:6722:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/jjj.jpg?ssl=1\"><img class=\"alignright wp-image-33407 size-medium\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/jjj.jpg?resize=300%2C145&ssl=1\" alt=\"jjj\" /></a><a href=\"http://jjj.me/\">John James Jacoby</a>, lead developer of bbPress and BuddyPress, published a <a href=\"https://twitter.com/JJJ/status/755490645976940544\">35 part tweetstorm</a> sharing his thoughts on leadership in the WordPress project, the community, and the WordPress economy. A tweetstorm is a series of tweets linked together in chronological order around a particular topic.</p>\n<p>There are a number of useful nuggets of wisdom in his tweets that I think can benefit from more exposure to a wider segment of the WordPress community outside of Twitter. It&#8217;s a snapshot of one individual&#8217;s eight year plus journey in trying to create a sustainable business using WordPress. With Jacoby&#8217;s permission, I&#8217;ve republished his tweetstorm into a blog post to make it easier to read and digest.</p>\n<hr />\n<p>No exacting leadership hierarchy provides the perception of opportunity for anyone to step-up. This is actually really important. Having<a href=\"https://twitter.com/photomatt\"> @photomatt</a> (Matt Mullenweg) be the BDFL (Benevolent Dictator For Life) means we always have a safety net, to help the community be true-north during times of unrest.</p>\n<p>Don&#8217;t forget that<a href=\"https://twitter.com/photomatt\"> @photomatt</a> purposely has made monumental gestures to remove himself and<a href=\"https://twitter.com/automattic\"> @automattic</a> as a WordPress dependency. It&#8217;s up to the 99% of us that aren&#8217;t<a href=\"https://twitter.com/photomatt\"> @photomatt</a> to learn from what he&#8217;s accomplished, and find the ways to invest that he hasn&#8217;t yet.</p>\n<p>Core, Plugins, Themes, etc… none of this in WordPress is easy or directly profitable. It&#8217;s all a very long gamble to sustainability. Some WordPress companies/agencies have long-term investment strategies outside of employee retention/satisfaction. Again, it&#8217;s a long game.</p>\n<p>Ultimately, WordPress needs more than<a href=\"https://twitter.com/automattic\"> @Automattic</a>&#8216;s bank-roll to help empower the next generation of awesome plugins/themes as products. Some people in the WordPress community that have labeled me: Hot-Lava: Do Not Touch – that makes me sad, because I don&#8217;t feel that way.</p>\n<p>People will choose to stonewall professional progress because of misperception. Biases exist all around the WordPress community. Some of the most prolific contributors to WordPress (<a href=\"https://twitter.com/alexkingorg\">@alexkingorg</a>,<a href=\"https://twitter.com/koop\"> @koop</a>, etc…) ultimately were shunned and exiled. It can be toxic.</p>\n<p>When<a href=\"https://twitter.com/johnbillion\"> @johnbillion</a> (John Blackbourn) says there&#8217;s a lack of leadership – there is plenty of leadership, it&#8217;s all just currently in a holding pattern. Holding patterns are not bad things, they are necessary to assess what happens next. And there is more happening than ever before.</p>\n<p>WordPress is about to get real. Reporting will shape your perception of progress, because there is too much progress to report on. <a href=\"https://twitter.com/post_status\">@post_status</a> &amp;<a href=\"https://twitter.com/wptavern\"> @wptavern</a> are our CNN and BBC. They are plugged in so the rest of us do not have to be, and can worry about other things.</p>\n<p>I&#8217;ve made a lot of friends and allies through WordPress, and accidentally made foes somehow too. That&#8217;s not fair. We all need each other. So many individuals are pouring their lives into passion projects surrounding WordPress, hoping to eventually pay their kids tuition.</p>\n<p>Talented individuals wanting a better life for their families than they had, busting their butts 24/7 on great ideas, need our support. When someone says <em>this plugin sucks because whatever</em> – it&#8217;s an OPPORTUNITY to help someone. Take it, be helpful, that&#8217;s the spirit.</p>\n<p>When someone says <em>this WordCamp talk was bad</em> – provide that person with feedback yourself, in private, and help elevate them. The problems of the relatively small WordPress community are systemic across all communities. Be ready to be wrong, learn, and recover.</p>\n<p>I&#8217;d be lying if I said I wanted to take a vow of poverty, relinquish my earthly possessions, and accept WordPress as my CMS and savior. I do want to be profitable enough (thanks to my WordPress experience) to provide others with stable and comfortable living conditions.</p>\n<p>I&#8217;m eight solid years in, with a thorough understanding of the entire WordPress landscape, and know there are good people struggling. There&#8217;s no reason for qualified professionals to struggle in the WordPress space anymore. There is LIMITLESS opportunity and ability.</p>\n<p>I deeply want WordPress to continue down the trajectory of success, and I want everyone following me to succeed along with it. Angel rounds dramatically increase the odds of success. Companies like<a href=\"https://twitter.com/10up\"> @10up</a> (the bootstrapped anomalies) need a<a href=\"https://twitter.com/jakemgold\"> @jakemgold</a> (Jake Goldman) to work.</p>\n<p>People are VERY quick to categorize. Yes; I&#8217;m an engineer. I also love philosophy, business, yo-yo&#8217;s, and clearly tweet-storms. The next time someone says something negative about someone/thing WordPress related, please remind them super-villains are not real.</p>\n<p>To make money in WordPress, you need to be likable, and build products where your likability shines through. Like<a href=\"https://twitter.com/pippinsplugins\"> @pippinsplugins</a> (Pippin Williamson). Being likable and profitable in open-source means having integrity, focusing on people more than product, and hoping it pays off in the end.</p>\n<p>I think I&#8217;m likable, and I&#8217;d always like to be more likable, but I also know tweet-storms like this make people think you&#8217;re crazy. If you think there is ANYTHING I can do personally or professionally to help you, please know that I desperately want to.</p>\n<p>I used to know<a href=\"https://twitter.com/photomatt\"> @photomatt</a> very well. He&#8217;s not a bad guy; he&#8217;s a great guy. Also an easy target. Concentrate on you. Shout-out to my starving indie plugin and theme artists out there. You rule. Don&#8217;t give up. We&#8217;ll figure it out together. Thanks for listening; sorry to muck-up your day. WordPress rules because of all of you.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s: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 Jul 2016 21:49:33 +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:81:\"WPTavern: Easily Add, Remove, and Rearrange Columns With The Admin Columns Plugin\";s: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:45:\"https://wptavern.com?p=57565&preview_id=57565\";s: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/easily-add-remove-and-rearrange-columns-with-the-admin-columns-plugin\";s: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:2834:\"<p>If you find yourself wanting more control over the columns on the posts, post types, pages, media, comments, links, and users administration screens, take a look at the <a href=\"https://wordpress.org/plugins/codepress-admin-columns/\">Admin Columns</a> plugin. Admin Columns, developed by <a href=\"https://profiles.wordpress.org/codepress/\">Codepress</a>, is a free plugin that is actively installed on more than 60K sites that enables administrators to add, remove, and rearrange columns.</p>\n<p>Each column type has its own options panel where you can control settings such as width, label, and in the case of the featured image, preview size.</p>\n<p><img class=\"alignnone size-full wp-image-57576\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/07/AddingAFeaturedImageColumn.png?resize=1020%2C679&ssl=1\" alt=\"AddingAFeaturedImageColumn\" /></p>\n<p>There are a number of <a href=\"https://www.admincolumns.com/documentation/columns/column-types/\">column types</a> available but if you need additional flexibility, there&#8217;s a <a href=\"https://www.admincolumns.com/documentation/columns/custom-field-column/\">Custom Field</a> column type. Admin Columns also has built-in support for the <a href=\"https://www.admincolumns.com/documentation/compatible-plugins/advanced-custom-fields/\">Advanced Custom Fields</a>, <a href=\"https://www.admincolumns.com/documentation/compatible-plugins/pods/\">Pods</a>, and <a href=\"https://www.admincolumns.com/documentation/compatible-plugins/types/\">Types</a> plugins.</p>\n<p>One of the things I found particularly useful as a new user is the Help tab. This tab in the upper right corner of the screen is often overlooked or not utilized by plugins. Admin Columns uses the tab to provide basic information about the plugin and how to navigate its user interface.</p>\n<p><img class=\"alignnone size-full wp-image-57598\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/AdminColumnsHelpTab.png?resize=860%2C295&ssl=1\" alt=\"AdminColumnsHelpTab\" /></p>\n<p>Although the free version likely takes care of most use cases, there is a <a href=\"https://www.admincolumns.com/upgrade-to-admin-columns-pro/?utm_source=plugin-installation&utm_medium=banner&utm_campaign=plugin-installation&utm_content=usp-editing\">commercial version</a> available that adds sorting, filtering, import/export, inline editing, and multiple column sets. If you maintain a number of sites that uses Admin Columns, the ability to import and export column configurations can be a huge time saver.</p>\n<p>I thoroughly tested <a href=\"https://profiles.wordpress.org/codepress/\">Admin Columns</a> on WordPress 4.6 beta 3 and didn&#8217;t encounter any issues. To see a demo of the plugin in action, check out the following video.</p>\n<div class=\"embed-wrap\"></div>\n<div id=\"epoch-width-sniffer\"></div>\";s: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, 18 Jul 2016 23:33: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: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: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:46:\"WP Mobile Apps: WordPress for iOS: Version 6.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:33:\"http://apps.wordpress.com/?p=3471\";s: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://apps.wordpress.com/2016/07/16/wordpress-for-ios-version-6-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:2227:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.3 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What&#8217;s New:</h1>\n<p><strong>Access your site’s media library</strong> — even if WordPress isn’t given permission to access your personal photo library.</p>\n\n<a href=\"https://apps.wordpress.com/img_2282/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/06/img_2282.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"IMG_2282\" /></a>\n\n<p><strong>An improved design</strong> makes updating your WordPress.com profile and account settings easier and faster than ever.</p>\n<p><strong>Several UI fixes.</strong> A bevy of fixes for WordPress for iPad, including search field, date picker, and layout improvements.</p>\n<p><strong>And much more! </strong>You can see the full list of changes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed%20milestone%3A6.3\">here</a>.</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/claudiosmweb\">@claudiosmweb</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.4+\" target=\"_blank\">our 6.4 milestone on GitHub</a>. Until next time!</p><img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=apps.wordpress.com&blog=108068616&post=3471&subd=apps&ref=&feed=1\" width=\"1\" height=\"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:\"Sat, 16 Jul 2016 21:12: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:14:\"diegoreymendez\";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:73:\"WordPress.tv Blog: Staff Pick: Theming in WordPress – Where do I start?\";s: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:31:\"http://blog.wordpress.tv/?p=524\";s: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:85:\"http://blog.wordpress.tv/2016/07/16/staff-pick-theming-in-wordpress-where-do-i-start/\";s: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:1125:\"<p>From the stage of <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a> here is Edmund Turbin&#8217;s great presentation on how to get started in creating WordPress themes.</p>\n<p></p>\n<p>Base theme, child theme, framework – These are a few of the options you can use for creating a WordPress Theme. Wether you are developing a theme for your personal blog, a clients website, or a theme to be used by other sites and the WordPress community, it is important to know the different approaches for getting started with theme development.</p>\n<p><a href=\"http://www.slideshare.net/eturbin/theming-wordpress-where-do-i-start\">Presentation Slides</a></p>\n<p><a href=\"http://wordpress.tv/\">Watch more great videos on WordPress.tv!</a></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/524/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/524/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=524&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"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:\"Sat, 16 Jul 2016 02:49: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:51:\"Post Status: Medium and WordPress — Draft Podcast\";s: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:31:\"https://poststatus.com/?p=25489\";s: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://poststatus.com/medium-wordpress-draft-podcast/\";s: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:2496:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p>In this episode, Joe and Brian talk about Medium &amp; WordPress and whether Medium and similar platforms are a significant threat to WordPress. They also discuss the benefits and challenges of open source platforms versus proprietary ones, and WordPress’s potential as a lower level item in the site stack.</p>\n<p><a href=\"https://audio.simplecast.com/41890.mp3\">https://audio.simplecast.com/41890.mp3</a><br />\n<a href=\"http://audio.simplecast.com/41890.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://wordpress.tv/2016/06/25/matt-mullenweg-interview-and-qa/\">Interview with Matt</a></li>\n<li><a href=\"http://wordpress.tv/2016/06/30/joe-hoyle-the-ultimate-rest-api-talk-part-1/\">Joe&#8217;s REST API talk</a></li>\n<li><a href=\"https://github.com/joehoyle/vienna\">Vienna WordPress app concept</a></li>\n<li><a href=\"https://ma.tt/2015/03/typewriter/\">Billionaire&#8217;s Typewriter</a></li>\n<li><a href=\"https://markarms.com/2016/06/23/what-to-consider-when-the-platforms-show-up-with-money/\">What to Consider When the Platforms Show up With Money</a></li>\n<li><a href=\"https://medium.com/\">Medium.com</a></li>\n<li><a href=\"https://developer.wordpress.com/calypso/\">WordPress.com Calypso</a></li>\n<li><a href=\"https://www.alleyinteractive.com/blog/how-medium-became-livejournal-for-publishers/\">Medium compared to LiveJournal</a></li>\n</ul>\n<h3>Sponsor</h3>\n<p>This episode is sponsored by <a href=\"https://pippinsplugins.com/\">Pippin&#8217;s Plugins.</a> If you want to sell downloads, setup content restriction, or start an affiliate program, Pippin’s Plugins have you covered. If you need all three, even better. Pippin’s Plugins is well known for making some of the best coded and most reliable plugins in the market. Check out <a href=\"https://pippinsplugins.com/\">PippinsPlugins.com </a>for more information.</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, 08 Jul 2016 23:28: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:14:\"Katie Richards\";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:91:\"WordPress.tv Blog: WordCamp Videos – Copywriting for SEO and improving your site 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:31:\"http://blog.wordpress.tv/?p=507\";s: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:\"http://blog.wordpress.tv/2016/07/08/wordcamp-videos-copywriting-for-seo-and-improving-your-site-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1545:\"<h2 class=\"video-title\">Aaron Campbell: Website Security – The Big Picture w/ Simple Steps to Take</h2>\n<p>Security can be complex, intimidating, and even frightening. Don’t let the enormity of it scare you into inaction. Learn what some of the security researchers and security professionals deal with, and then find out some simple steps you can take to secure your sites.</p>\n<p></p>\n<p>More videos from <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a></p>\n<h2 class=\"video-title\">Beyond SEO – Copywriting for professionals &#8211; Marieke van de Rakt &amp; Joost de Valk</h2>\n<p>SEO has gone from a technical trade to being more marketing focussed. Joost &amp; Marieke will talk about how to gain great rankings &amp; satisfied visitors by writing good content. Focussing on SEO copywriting has a major pitfall. We give examples and tips on how to write a post that is both readable as well as SEO-friendly.</p>\n<p></p>\n<p><a href=\"http://www.slideshare.net/yoast/beyond-seo-copywriting-for-professionals\">Presentation slides</a></p>\n<p>More videos from <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">WordCamp Europe 2016</a></p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/507/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/507/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=507&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"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:\"Fri, 08 Jul 2016 16:29:24 +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:11:\"Jerry Bates\";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:72:\"Post Status: WordCamp Europe 2016, held in Vienna, was a massive success\";s: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:31:\"https://poststatus.com/?p=25313\";s: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://poststatus.com/wordcamp-europe-2016-massive-success/\";s: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:34867:\"<p>WordCamp Europe 2016 &#8212; held in Vienna&#8217;s beautiful MuseumsQuartier &#8212; was wonderfully executed, and a highlight of the year in WordPress conferences. Organized by a huge team of dedicated volunteers, many of whom worked near full time in the weeks leading up to the events, pulled off the largest WordCamp ever.</p>\n<p>Nearly 2,000 attendees streamed into Vienna for WordCamp Europe, and over the course of two conference days and a contributor day, showed just how diverse and special the WordPress community is.</p>\n<p>There were many great talks, and I unfortunately didn&#8217;t get to see near enough of them, but fortunately the team got videos onto WordPress.tv incredibly fast, and you can now watch <a href=\"http://wordpress.tv/event/wordcamp-europe-2016/\">all WordCamp Europe sessions</a> for yourself.</p>\n<p>I had the privilege to take part in the conference in two sessions, first as a moderator of a panel of business owners, on the topic of <a href=\"http://wordpress.tv/2016/06/29/panel-discussion-cultivating-happy-teams-for-better-business/\">cultivating happy teams</a>. I also greatly enjoyed <a href=\"http://wordpress.tv/2016/06/25/matt-mullenweg-interview-and-qa/\">interviewing Matt Mullenweg</a> for the event keynote.</p>\n<p>I really recommend you check out all of the talks and choose those which you may learn from. I have pictures from some of those I attended, as well as from the event in general and contributor day.</p>\n\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-1/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Emcee\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-2/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-2-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Welcome to WCEU\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-3/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU dotmap\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-4/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU stage\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-5/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mike Little, WordPress co-founder\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-6/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"The stars of this conference\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-7/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-7-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"John Blackbourn\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-8/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-9/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-9-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-10/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-10-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Remkus de Vries\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-11/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Simon Dickson\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-13/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-13-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Helen\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-14/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-14-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Siobhan and Benji\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-15/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-15-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Adam Warner\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-16/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Wapuu coloring book\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-17/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joe Hoyle\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-18/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-18-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joe Hoyle\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-19/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"MuseumsQuartier\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-20/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-21/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU audience\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-22/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Nacin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-23/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-23-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tom Willmot, \" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-24/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"K.Adam White\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-25/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More K.Adam\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-26/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-26-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Sara Rosso, Emcee\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-27/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Barry\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-28/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-28-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ivelina\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-29/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mike Little\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-30/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-30-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Family friendly\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-31/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Kari Leigh\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-32/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"audience\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-33/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-33-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Dancing Jenny\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-34/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Jenny and Petya handoff\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-35/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-35-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU organizer transition\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-36/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-36-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Kari Leigh doing her thing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-37/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-37-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WCEU organizers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-38/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-38-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Petya and friends\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-39/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-39-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hall E+G\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-40/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-40-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Courtyard\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-41/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-41-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Picture of Picture Takers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-42/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-42-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Goodbye\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-43/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-43-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Robert O\'Rourke\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-44/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-44-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Robert, Sonja, John\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-45/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-45-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tom & Simon\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-46/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-46-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Probably REST API talk\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-47/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-47-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Winky Japh\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-48/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-48-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Suave Tarei\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-49/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-49-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Bronson\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-50/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-50-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Oh, Ant\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-51/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-51-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Serious Ant\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-52/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-52-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Sneaky K.Adam\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-53/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-53-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made\'s latest\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-54/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-54-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Can\'t get enough Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-55/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-55-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Shinichi\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-56/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-56-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Matt Mullenweg\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-57/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-57-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ben May\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-58/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-58-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"masked Petya\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-59/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-59-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ladies of the ball\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-60/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-60-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s tie\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-61/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-61-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s profile\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-62/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-62-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin\'s satisfaction\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-63/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-63-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Blue steel\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-64/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-64-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nacin & Matt\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-65/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-65-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made ballers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-66/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-66-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Human Made ballers 2\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-67/\"><img width=\"150\" height=\"137\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-67-150x137.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Even more Human Made ballers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-68/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-68-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ball dancers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-69/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-69-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Ball dancers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-70/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-70-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"WordPress Co-founders\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-71/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-71-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joost\'s kicks\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-72/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-72-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Joost slick\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-73/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-73-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mark Jaquith\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-74/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-74-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Power Convo\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-75/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-75-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Aaron\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-76/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-76-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Mika\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-77/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-77-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Jean\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-78/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-78-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hat game\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-79/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-79-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Alain\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-80/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-80-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-81/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-81-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nice stickers\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-82/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-82-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Cassidy\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-83/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-83-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Pascal\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-84/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-84-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Tammie\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-85/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-85-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Hugo and his awesome laptop\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-86/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-86-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-87/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-87-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Phone break\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-88/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-88-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More Hugo\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-89/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-89-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Seriously, that laptop\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-90/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-90-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Matthew Haines-Young\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-91/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-91-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Impressed face?\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-92/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-92-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-93/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-93-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"More collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-94/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-94-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributor day\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-95/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-95-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Break\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-96/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-96-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Konstantin\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-97/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-97-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Recording\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-98/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-98-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Chris\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-99/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-99-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Can\'t get enough Rarst\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-100/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-100-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-101/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-101-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Laughing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-102/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-102-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Dominik\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-103/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-103-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Nikolay\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-104/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-104-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Working hard\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-105/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-105-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Helen judging Ryan\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-106/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-106-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"New Contributor Room\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-107/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-107-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Adam teaching\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-108/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-108-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"New contributors\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-109/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-109-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Accessibility testing\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-110/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-110-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"a11y collaboration\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-111/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-111-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Morten\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-112/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-112-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Listening\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-113/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-113-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Contributor\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-114/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-114-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Plugins\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-115/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-115-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Discussion\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-116/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-116-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Lior\" /></a>\n<a href=\"https://poststatus.com/wordcamp-europe-2016-massive-success/wceu-2016-vienna-117/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2016/07/wceu-2016-vienna-117-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Brad\" /></a>\n\n<p>&nbsp;</p>\n<p>I&#8217;ll have more takeaways from WordCamp Europe <a href=\"https://poststatus.com/club\">in the member newsletter</a>, but for now, I hope you enjoy a few pictures! Thank you to the WordCamp Europe organizing team and volunteers for your efforts, and the entire European community for welcoming those of us who traveled from abroad. It was a blast, and I hope to see you again <a href=\"https://2017.europe.wordcamp.org/\">next year in Paris</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, 07 Jul 2016 20:28:23 +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:\"Brian Krogsgard\";s: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:\"Mon, 29 Aug 2016 19:59:01 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 29 Aug 2016 19:45:19 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:\"20130911080210\";}','no'),(73414,'boldgrid_staging_theme_mods_800pxmock_v2','a:1:{s:18:\"nav_menu_locations\";a:0:{}}','yes'),(76888,'ls-plugin-version','5.6.6','yes'),(76889,'ls-db-version','5.0.0','yes'),(76890,'ls-installed','1','yes'),(76891,'ls-google-fonts','a:4:{i:0;a:2:{s:5:\"param\";s:28:\"Lato:100,300,regular,700,900\";s:5:\"admin\";b:0;}i:1;a:2:{s:5:\"param\";s:13:\"Open+Sans:300\";s:5:\"admin\";b:0;}i:2;a:2:{s:5:\"param\";s:20:\"Indie+Flower:regular\";s:5:\"admin\";b:0;}i:3;a:2:{s:5:\"param\";s:22:\"Oswald:300,regular,700\";s:5:\"admin\";b:0;}}','yes'),(76892,'ls-date-installed','1472501354','yes'),(76894,'widget_layerslider_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(76895,'layerslider_update_info','O:8:\"stdClass\":2:{s:15:\"_latest_version\";s:6:\"5.6.10\";s:7:\"checked\";i:1472506333;}','yes'),(76898,'revslider-update-check-short','1472501412','yes'),(76899,'revslider-templates-check','1472501412','yes'),(76900,'rs-templates-new','','yes'),(73422,'do_activate','0','yes'),(76881,'_transient_timeout_feed_mod_636a1eae994b1deb9d704cdb777d2ebb','1472544160','no'),(76882,'_transient_feed_mod_636a1eae994b1deb9d704cdb777d2ebb','1472500960','no'),(76902,'revslider_checktables','1','yes'),(76903,'revslider_table_version','1.0.6','yes'),(76904,'revslider-global-settings','a:0:{}','yes'),(76905,'ls-latest-version','5.6.10','yes'),(76907,'revslider_update_version','5.1.1','yes'),(76908,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(76909,'revslider-valid-notice','false','yes'),(76910,'avada_revslider_version','5.2.5','yes'),(76912,'woocommerce_default_country','GB','yes'),(76913,'woocommerce_allowed_countries','all','yes'),(76914,'woocommerce_all_except_countries','','yes'),(76915,'woocommerce_specific_allowed_countries','','yes'),(76916,'woocommerce_ship_to_countries','','yes'),(76917,'woocommerce_specific_ship_to_countries','','yes'),(76918,'woocommerce_default_customer_address','geolocation','yes'),(76919,'woocommerce_calc_taxes','no','yes'),(76920,'woocommerce_demo_store','no','yes'),(76921,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','no'),(76922,'woocommerce_currency','GBP','yes'),(76923,'woocommerce_currency_pos','left','yes'),(76924,'woocommerce_price_thousand_sep',',','yes'),(76925,'woocommerce_price_decimal_sep','.','yes'),(76926,'woocommerce_price_num_decimals','2','yes'),(76927,'woocommerce_weight_unit','kg','yes'),(76928,'woocommerce_dimension_unit','cm','yes'),(76929,'woocommerce_enable_review_rating','yes','yes'),(76930,'woocommerce_review_rating_required','yes','no'),(76931,'woocommerce_review_rating_verification_label','yes','no'),(76932,'woocommerce_review_rating_verification_required','no','no'),(76933,'woocommerce_shop_page_id','4097','yes'),(76934,'woocommerce_shop_page_display','','yes'),(76935,'woocommerce_category_archive_display','','yes'),(76936,'woocommerce_default_catalog_orderby','menu_order','yes'),(76937,'woocommerce_cart_redirect_after_add','no','yes'),(76938,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(76939,'shop_catalog_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(76940,'shop_single_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(76941,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(76942,'woocommerce_enable_lightbox','yes','yes'),(76943,'woocommerce_manage_stock','yes','yes'),(76944,'woocommerce_hold_stock_minutes','60','no'),(76945,'woocommerce_notify_low_stock','yes','no'),(76946,'woocommerce_notify_no_stock','yes','no'),(76947,'woocommerce_stock_email_recipient','freerein1325@gmail.com','no'),(76948,'woocommerce_notify_low_stock_amount','2','no'),(76949,'woocommerce_notify_no_stock_amount','0','yes'),(76950,'woocommerce_hide_out_of_stock_items','no','yes'),(76951,'woocommerce_stock_format','','yes'),(76952,'woocommerce_file_download_method','force','no'),(76953,'woocommerce_downloads_require_login','no','no'),(76954,'woocommerce_downloads_grant_access_after_payment','yes','no'),(76955,'woocommerce_prices_include_tax','no','yes'),(76956,'woocommerce_tax_based_on','shipping','yes'),(76957,'woocommerce_shipping_tax_class','','yes'),(76958,'woocommerce_tax_round_at_subtotal','no','yes'),(76959,'woocommerce_tax_classes','Reduced Rate\nZero Rate','yes'),(76960,'woocommerce_tax_display_shop','excl','yes'),(76961,'woocommerce_tax_display_cart','excl','no'),(76962,'woocommerce_price_display_suffix','','yes'),(76963,'woocommerce_tax_total_display','itemized','no'),(76964,'woocommerce_enable_shipping_calc','yes','no'),(76965,'woocommerce_shipping_cost_requires_address','no','no'),(76966,'woocommerce_ship_to_destination','billing','no'),(76967,'woocommerce_enable_coupons','yes','yes'),(76968,'woocommerce_calc_discounts_sequentially','no','no'),(76969,'woocommerce_enable_guest_checkout','yes','no'),(76970,'woocommerce_force_ssl_checkout','no','yes'),(76971,'woocommerce_unforce_ssl_checkout','no','yes'),(76972,'woocommerce_cart_page_id','4098','yes'),(76973,'woocommerce_checkout_page_id','4099','yes'),(76974,'woocommerce_terms_page_id','','no'),(76975,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(76976,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(76977,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(76978,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(76979,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(76980,'woocommerce_myaccount_page_id','4100','yes'),(76981,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(76982,'woocommerce_enable_myaccount_registration','no','no'),(76983,'woocommerce_enable_checkout_login_reminder','yes','no'),(76984,'woocommerce_registration_generate_username','yes','no'),(76985,'woocommerce_registration_generate_password','no','no'),(76986,'woocommerce_myaccount_orders_endpoint','orders','yes'),(76987,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(76988,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(76989,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(76990,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(76991,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(76992,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(76993,'woocommerce_logout_endpoint','customer-logout','yes'),(76994,'woocommerce_email_from_name','Free Rein Center','no'),(76995,'woocommerce_email_from_address','freerein1325@gmail.com','no'),(76996,'woocommerce_email_header_image','','no'),(76997,'woocommerce_email_footer_text','Free Rein Center - Powered by WooCommerce','no'),(76998,'woocommerce_email_base_color','#557da1','no'),(76999,'woocommerce_email_background_color','#f5f5f5','no'),(77000,'woocommerce_email_body_background_color','#fdfdfd','no'),(77001,'woocommerce_email_text_color','#505050','no'),(77002,'woocommerce_api_enabled','yes','yes'),(77012,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77030,'woocommerce_meta_box_errors','a:0:{}','yes'),(77006,'woocommerce_db_version','2.6.4','yes'),(77007,'woocommerce_version','2.6.4','yes'),(77013,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77014,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77015,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77016,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77017,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77018,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77019,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77020,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77021,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77022,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77023,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77024,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(77028,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(77052,'_bbp_private_forums','a:0:{}','yes'),(77053,'_bbp_hidden_forums','a:0:{}','yes'),(77044,'widget_bbp_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77045,'widget_bbp_views_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77046,'widget_bbp_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77047,'widget_bbp_forums_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77048,'widget_bbp_topics_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77049,'widget_bbp_replies_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77050,'widget_bbp_stats_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77031,'_transient_timeout_wc_report_sales_by_date','1472590352','no'),(77032,'_transient_wc_report_sales_by_date','a:7:{s:32:\"6b07eefdd8a72b0fb62e0dae3dee3175\";a:0:{}s:32:\"86ba6b44159886db4bb649e4a2859ca1\";a:0:{}s:32:\"541e9e56f31e28a7655d8fcaacfcb0c2\";a:0:{}s:32:\"c63bc7da84c786d24e66ed08ffd2b4ea\";N;s:32:\"85404dedcb05ad85a964d0b37a253a49\";a:0:{}s:32:\"69c413feb29a328583ccab1be927c391\";a:0:{}s:32:\"c7afe2b46069eb91f222c8fdb88ebb59\";a:0:{}}','no'),(77033,'_transient_timeout_wc_low_stock_count','1475093537','no'),(77034,'_transient_wc_low_stock_count','0','no'),(77035,'_transient_timeout_wc_outofstock_count','1475093537','no'),(77036,'_transient_wc_outofstock_count','0','no'),(77037,'_transient_timeout_wc_admin_report','1472587937','no'),(77038,'_transient_wc_admin_report','a:1:{s:32:\"34d2df6e01103f0efcb400076ae7ddf4\";a:0:{}}','no'),(77039,'_transient_timeout_external_ip_address_68.235.241.165','1473106345','no'),(77040,'_transient_external_ip_address_68.235.241.165','198.46.81.24','no'),(77054,'_bbp_db_version','250','yes'),(77058,'rewrite_rules','','yes'),(77059,'tribe_events_calendar_options','a:4:{s:14:\"schema-version\";s:5:\"4.2.5\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:5:\"4.2.5\";}','yes'),(77060,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77061,'tribe_last_save_post','1472506337','yes'),(77064,'wpcf7','a:2:{s:7:\"version\";s:3:\"4.5\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1472501733;s:7:\"version\";s:3:\"4.5\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(77065,'wpseo_sitemap_wpcf7_contact_form_cache_validator','6hkwL','no'),(77127,'_transient_external_ip_address_216.54.31.82','198.46.81.24','no'),(77134,'wpseo_sitemap_author_cache_validator','6r2Vx','no'),(77135,'_site_transient_timeout_browser_551db59e6025301116bdd9bdea784024','1473108751','no'),(77136,'_site_transient_browser_551db59e6025301116bdd9bdea784024','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"47.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(77139,'_transient_timeout_external_ip_address_24.17.129.132','1473108790','no'),(77140,'_transient_external_ip_address_24.17.129.132','198.46.81.24','no'),(77141,'boldgrid_staging_stylesheet','Avada','yes'),(77142,'boldgrid_staging_template','Avada','yes'),(77148,'_transient_timeout_external_ip_address_68.180.230.35','1473109693','no'),(77149,'_transient_external_ip_address_68.180.230.35','198.46.81.24','no'),(77150,'_transient_timeout_external_ip_address_46.118.122.167','1473111131','no'),(77151,'_transient_external_ip_address_46.118.122.167','198.46.81.24','no'),(77100,'_transient_external_ip_address_70.39.246.37','198.46.81.24','no'),(77070,'_transient_product_query-transient-version','1472501987','yes'),(77109,'_transient_feed_0d102f2a1f4d6bc90eb8c6ffe18e56ed','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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"The Events Calendar\";s: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:29:\"https://theeventscalendar.com\";s: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 event plugins for people who kick ass\";s: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:\"Mon, 29 Aug 2016 19:32: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: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:4:\"item\";a:10:{i:0;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Tips for Working With WordPress Actions and Filters\";s: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://theeventscalendar.com/tips-working-wordpress-actions-filters/\";s: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, 26 Aug 2016 15:50: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Articles\";s: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:40:\"https://theeventscalendar.com/?p=1094225\";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:650:\"<p>WordPress plugins and themes are often customizable with functions called &#8220;hooks&#8221;. There are two types of hooks: actions and filters. If you&#8217;re not familiar with actions and filters, then definitely spend some time learning the basics. The WordPress Codex has an in-depth introduction to them here, and Treehouse has a great overview here, for example.&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/tips-working-wordpress-actions-filters/\">Tips for Working With WordPress Actions and Filters</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:18724:\"<p>WordPress plugins and themes are often customizable with functions called &#8220;hooks&#8221;. There are two types of hooks: <em>actions</em> and <em>filters</em>.</p>\n<p>If you&#8217;re not familiar with actions and filters, then definitely spend some time learning the basics. The WordPress Codex has an in-depth introduction to them <a href=\"https://codex.wordpress.org/Plugin_API\" target=\"_blank\">here</a>, and Treehouse has a great overview <a href=\"http://blog.teamtreehouse.com/hooks-wordpress-actions-filters-examples\" target=\"_blank\">here</a>, for example.</p>\n<p>Once you&#8217;ve learned the basics of how to use actions and filters, it&#8217;s time to learn some tricks to help you get the most out of them.</p>\n<p><strong>In this Post</strong></p>\n<ul>\n<li><strong><a href=\"#finding-actions-filters\">Finding Actions and Filters</a></strong> — How to reliably find hooks in plugins and themes even if they&#8217;re not documented online.</li>\n<li><strong><a href=\"#using-arguments-callbacks\">Using Arguments in Callback Functions</a></strong> — How to use more than one argument in your action and filter callbacks.</li>\n<li><strong><a href=\"#finding-all-callbacks\">Finding All Callbacks Attached to a Hook</a></strong> — How to see all functions firing on a given hook—useful when debugging code, for example.</li>\n</ul>\n<hr id=\"finding-actions-filters\">\n<h3>Finding Actions and Filters</h3>\n<p>So you&#8217;re convinced of the value of actions and filters, and are ready to start using them in your custom code—excellent!</p>\n<p>But where <em>are</em> all of these actions and filters in the first place? Many plugins and themes have dozens and dozens of these hooks, especially large plugins like The Events Calendar, Event Tickets, Easy Digital Downloads, WooCommerce, etc.</p>\n<p>Some plugins, like WooCommerce, have <a href=\"https://docs.woocommerce.com/wc-apidocs/hook-docs.html\" target=\"_blank\">complete &#8220;Hook References&#8221;</a> that list all of the plugin&#8217;s hooks. If the plugin you&#8217;re customizing has this sort of documentation, use it—look for filters and actions in the official online documentation and use any example code that might be provided.</p>\n<p>Far more plugins and themes out there <em>don&#8217;t</em> have the sort of comprehensive documentation that WooCommerce has, though. If you&#8217;re working with one of these pieces of software, then you&#8217;ll have to be a bit clever with how you find actions and filters. </p>\n<ul>\n<li>First, you&#8217;ll need a code editor that has a &#8220;Find in Folder&#8221; feature. The vast majority of editors have this feature or something similar to it. Learn the specific mode of searching within folders with your editor of choice. (You can grep within directories from the command line, too.)\n<p>I personally use Sublime Text, which has a very convenient &#8220;Find in Folder&#8221; option whenever you right-click on a directory, as shown in the following screenshot.</p>\n<p><div id=\"attachment_1155971\" style=\"width: 365px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.20.16-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.20.16-PM.png\" alt=\"The &quot;Find in Folder&quot; Feature in Sublime Text\" width=\"355\" height=\"342\" class=\"size-full wp-image-1155971\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.20.16-PM.png 355w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.20.16-PM-88x85.png 88w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.20.16-PM-300x289.png 300w\" sizes=\"(max-width: 355px) 100vw, 355px\" /></a><p class=\"wp-caption-text\">An example of the conveniently-placed &#8220;Find in Folder&#8221; feature in Sublime Text.</p></div></li>\n<li>Next, navigate to the directory for the plugin or theme whose hooks you are trying to explore. In this example, as seen in the screenshot above, I&#8217;ll be searching for actions and filters within The Events Calendar.</li>\n<li>After navigating to the directory in which you&#8217;ll be searching, use the &#8220;Find in Folder&#8221; feature and search for <kbd>do_action</kbd> to find actions, or <kbd>apply_filters</kbd> to find filters. In Sublime Text, for example, here&#8217;s what that looks like:\n<p><div id=\"attachment_1155977\" style=\"width: 654px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM.png\" alt=\"Searching for Actions in Sublime Text\" width=\"644\" height=\"103\" class=\"size-full wp-image-1155977\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM.png 644w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM-140x22.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM-300x48.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.32.34-PM-430x69.png 430w\" sizes=\"(max-width: 644px) 100vw, 644px\" /></a><p class=\"wp-caption-text\">Searching for all instances of do_action within The Events Calendar with Sublime Text.</p></div>\n</li>\n</ul>\n<p>Doing all of the above steps will reveal a &#8220;results&#8221; page within your code editor of all instances of <kbd>do_action</kbd> or <kbd>apply_filters</kbd>, depending on which one you searched for. </p>\n<p>This results page is essentially the most comprehensive &#8220;hook reference&#8221; you could ever get—it will reveal each hook exactly where it is used. Here is an example results page for actions within The Events Calendar after searching in Sublime Text:</p>\n<div id=\"attachment_1155990\" style=\"width: 893px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM.png\" alt=\"A Search Results Page in Sublime Text\" width=\"883\" height=\"824\" class=\"size-full wp-image-1155990\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM.png 883w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-91x85.png 91w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-300x280.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-768x717.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-665x621.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-430x401.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-2.33.00-PM-645x602.png 645w\" sizes=\"(max-width: 883px) 100vw, 883px\" /></a><p class=\"wp-caption-text\">A search results page in Sublime Text, revealing instances of the do_action call within The Events Calendar.</p></div>\n<p>I personally <strong>always</strong> use this method to find filters and actions, even for plugins or themes with great online documentation. With this method, you don&#8217;t find the hooks on a web page and hope that the documentation is up-to-date and accurate—you find the hooks <em>right within the actual code</em>, so you get the whole context in which the hooks are used, and can be certain that what you&#8217;re looking at is up-to-date and accurate.</p>\n<hr id=\"using-arguments-callbacks\">\n<h3>Using Arguments in Callback Functions</h3>\n<p>Most actions and filters are pretty simple in terms of their construction. They&#8217;ll often be written like this, for example:</p>\n<pre>\n$to = apply_filters( \'tribe_rsvp_email_recipient\', $to );\n</pre>\n<p>In this example, you have only two things to consider: the name of the filter, and the value that is being filtered. That&#8217;s all! So your callback function would be commensurately simple: you would attach your callback function to the name of the filter with <kbd>add_filter()</kbd>, and then modify the value in the callback function. </p>\n<p>The above filter is from <a href=\"https://theeventscalendar.com/product/wordpress-event-tickets/\" target=\"_blank\">Event Tickets</a>, and allows you to filter the &#8220;to&#8221; address for RSVP emails. So if you wanted to make all RSVP confirmation emails go to the email address <kbd>ticket-tracker@example.com</kbd>, you would write a custom snippet of code like this:</p>\n<pre>\nfunction tribe_blog_example_callback( $to ) {\n    $to = \'ticket-tracker@example.com\';\n    return $to;\n}\n\nadd_filter( \'tribe_rsvp_email_recipient\', \'tribe_blog_example_callback\' );\n</pre>\n<p>Some hooks are not as simple, though. You might come across more seemingly-complicated ones, like this other example from Event Tickets:</p>\n<pre>\ndo_action( \'event_tickets_rsvp_attendee_created\', $attendee_id, $event_id, $order_id );\n</pre>\n<p>While the <kbd>tribe_rsvp_email_recipient</kbd> filter shown above just allows you to modify an email address, this <kbd>event_tickets_rsvp_attendee_created</kbd> action allows for more complex modifications—it fires when a user makes an RSVP to an event, and allows you to hook into that event to do anything you&#8217;d like. </p>\n<p>Notice how many arguments are passed here compared to the previous hook. The previous hook had just one argument, <kbd>$to</kbd>, but this hook has three:</p>\n<ul>\n<li><kbd>$attendee_id</kbd></li>\n<li><kbd>$event_id</kbd></li>\n<li><kbd>$order_id</kbd></li>\n</ul>\n<p>Let&#8217;s say you wanted to update a post meta field for an event any time someone made an RSVP to it. To do this, you need the event&#8217;s ID. You might see that <kbd>$event_id</kbd> is an argument for the hook and think, &#8220;Great! I can just use that <kbd>$event_id</kbd> argument instead of having to manually find the event&#8217;s ID on my own.&#8221; With this in mind, you write out your callback function like this:</p>\n<pre>\nfunction tribe_blog_example_rsvp_callback( $attendee_id, $event_id ) {\n    update_post_meta( $event_id, \'_example_meta_field\', absint( $attendee_id ) );\n}\n\nadd_action( \'event_tickets_rsvp_attendee_created\', \'tribe_blog_example_rsvp_callback\' );\n</pre>\n<p>But wait! <strong>If you do this, you will get an error.</strong></p>\n<p>In the callback function, <kbd>tribe_blog_example_rsvp_callback</kbd>, you are using two arguments. But in the <kbd>add_action</kbd> call, that fact is not declared:</p>\n<pre>\nadd_action( \'event_tickets_rsvp_attendee_created\', \'tribe_blog_example_rsvp_callback\' );\n</pre>\n<p>To be able to use two arguments—<kbd>$attendee_id</kbd> and <kbd>$event_id</kbd> in this example—you would need to modify the <kbd>add_action</kbd> call to declare that you are using two arguments. It would look something like this:</p>\n<pre>add_action( \'event_tickets_rsvp_attendee_created\', \'tribe_blog_example_rsvp_callback\', 10, 2 );</pre>\n<p>If you wanted to use all <strong>three</strong> arguments, then your <kbd>add_action</kbd> call would look like this:</p>\n<pre>add_action( \'event_tickets_rsvp_attendee_created\', \'tribe_blog_example_rsvp_callback\', 10, 3 );</pre>\n<p>You might be wondering, &#8220;what&#8217;s that <kbd>10</kbd> in these <kbd>add_action</kbd> calls?&#8221; This is just the &#8220;priority&#8221; value, which defaults to 10 in WordPress. This value defines the order in which hooks will run, starting with lower numbers first and working up from there.</p>\n<p>You rarely need to modify this, but let&#8217;s say, for example, you wanted to ensure <em>your</em> callback function ran <strong>after</strong> all other callback functions on a specific hook. You can do this by setting the priority higher than the default <kbd>10</kbd>. The vast majority of callback functions for hooks run on priority 10 or higher, so you can usually run after everything by simply setting the priority to <kbd>11</kbd>. So your <kbd>add_action</kbd> call would look like this:</p>\n<pre>add_action( \'event_tickets_rsvp_attendee_created\', \'tribe_blog_example_rsvp_callback\', 11, 3 );</pre>\n<p>☝️ Let&#8217;s recap and review what this means. This <kbd>add_action</kbd> call is making the following declarations:</p>\n<ul>\n<li>When the action <kbd>event_tickets_rsvp_attendee_created</kbd> fires, run the function <kbd>tribe_blog_example_rsvp_callback</kbd>.</li>\n<li>The <kbd>tribe_blog_example_rsvp_callback</kbd> should run very late. Let all functions with priority 1 through 10 run <strong>before</strong> it, if they exist.</li>\n<li>Let the <kbd>tribe_blog_example_rsvp_callback</kbd> function use all three arguments that the <kbd>event_tickets_rsvp_attendee_created</kbd> hook provides. In this example, those arguments are <kbd>$attendee_id</kbd>, <kbd>$event_id</kbd>, and <kbd>$order_id</kbd>.</li>\n</ul>\n<hr id=\"finding-all-callbacks\">\n<h3>Finding All Callbacks Attached to a Hook</h3>\n<p>Sometimes you need or want to see all of the functions that are attached to a given hook. This can provide insight when debugging code, for example, or when trying to identify the culprit in an odd support issue.</p>\n<p>The simplest way to do this is to use code like the following, which is a snippet I picked up a couple of years ago from the user <a href=\"http://wordpress.stackexchange.com/users/2051/rilwis\" target=\"_blank\">Rilwis</a> on <a href=\"http://wordpress.stackexchange.com/questions/35076/how-can-i-see-all-the-actions-attached-to-an-add-action-hook\" target=\"_blank\">the WordPress StackExchange</a>:</p>\n<pre>\nglobal $wp_filter;\nprint \'&lt;pre&gt;\';\nprint_r( $wp_filter[\'admin_bar_menu\'] );\nprint \'&lt;/pre&gt;\';\n</pre>\n<p>I often attach this code to the <kbd>wp_footer</kbd> or <kbd>admin_footer</kbd> actions, like this:</p>\n<pre>\nadd_action( \'wp_footer\', function() {\n    global $wp_filter;\n    print \'&lt;pre&gt;\';\n    print_r( $wp_filter[\'admin_bar_menu\'] );\n    print \'&lt;/pre&gt;\';\n});\n</pre>\n<p>What this code will do is show a neatly formatted array of all of the functions attached to a particular hook. In the example code above, the hook being examined is the action <kbd>admin_bar_menu</kbd>. You can see an example of the output of this function in the following screenshot:</p>\n<div id=\"attachment_1156066\" style=\"width: 779px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM.png\" alt=\"An Array of Callback Functions\" width=\"769\" height=\"767\" class=\"size-full wp-image-1156066\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM.png 769w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-85x85.png 85w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-300x300.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-768x766.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-665x663.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-90x90.png 90w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-150x150.png 150w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-430x429.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-645x643.png 645w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-180x180.png 180w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-25-at-5.05.58-PM-270x270.png 270w\" sizes=\"(max-width: 769px) 100vw, 769px\" /></a><p class=\"wp-caption-text\">An array of callback functions attached to the admin_bar_menu hook.</p></div>\n<p>When is this useful? Well, if you&#8217;ve written a callback function that doesn&#8217;t seem to be working, you can use this method to manually double-check that the callback function is even properly attached to the action. Once you&#8217;ve confirmed it&#8217;s there, maybe you can identify functions that are running <em>after</em> your callback that might be undoing the thing your callback does—thus prompting you to change your callback&#8217;s priority and sigh with relief that things now work as expected.</p>\n<hr>\n<p>The &#8220;hooks&#8221; system within WordPress, more formally referred to as the Plugin API, is one of the CMS&#8217;s primary selling points: it lets you modify the appearance and behavior of things extensively without having to modify the actual core code of WordPress, or of a given plugin or theme.</p>\n<p>Whole ecosystems have been built on this Plugin API. When you see a plugin like WooCommerce that has a litany of feature-rich extensions, it&#8217;s the Plugin API that makes it possible for those extensions to exist.</p>\n<p>If your job or interests are related to WordPress in any way, familiarizing yourself with the Plugins API is a worthy investment of your time and attention. If this article has done its job and made you curious to learn more, here are some other great articles on the topic:</p>\n<ul>\n<li><a href=\"https://pippinsplugins.com/quick-introduction-to-action-hooks/\" target=\"_blank\">Quick Introduction to Action Hooks</a> — Pippin Williamson</li>\n<li><a href=\"https://pippinsplugins.com/a-quick-introduction-to-using-filters/\" target=\"_blank\">A Quick Introduction to Using Filters</a> — Pippin Williamson</li>\n<li><a href=\"https://pippinsplugins.com/check-for-existence-of-action-hook/\" target=\"_blank\">Check for the Existence of an Action Hook</a> — Pippin Williamson</li>\n<li><a href=\"https://wordpress.org/support/topic/fliters-vs-actions-from-a-newbe?replies=10\" target=\"_blank\">Actions vs. Filters</a> — A series of forum replies by <a href=\"https://profiles.wordpress.org/mfields/\" target=\"_blank\">Michael Fields</a></li>\n<li><a href=\"https://www.rarst.net/wordpress/debug-wordpress-hooks/\" target=\"_blank\">Debug WordPress Hooks</a> — Andrey “Rarst” Savchenko\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/tips-working-wordpress-actions-filters/\">Tips for Working With WordPress Actions and Filters</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Our Favorite Developer Plugins\";s: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://theeventscalendar.com/favorite-developer-plugins/\";s: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, 20 Aug 2016 05:05:07 +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:\"Articles\";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:10:\"Technology\";s: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:40:\"https://theeventscalendar.com/?p=1153631\";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:637:\"<p>&#8220;Developer&#8221; plugins are WordPress plugins that are not necessarily useful to the average WordPress website owner—they&#8217;re plugins made by developers for other developers. We use and love a number of developer plugins: in development, of course, but also in our QA and customer support teams. As you&#8217;ll see, even seemingly-simple plugins can provide immense utility.&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/favorite-developer-plugins/\">Our Favorite Developer Plugins</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:18057:\"<p>&#8220;Developer&#8221; plugins are WordPress plugins that are not necessarily useful to the average WordPress website owner—they&#8217;re plugins made <em>by</em> developers <em>for</em> other developers. We use and love a number of developer plugins: in development, of course, but also in our QA and customer support teams.</p>\n<p>As you&#8217;ll see, even seemingly-simple plugins can provide immense utility. If you&#8217;re anyone who works &#8220;under the hood&#8221; with WordPress in any capacity (freelancers, developers, QA technicians, customer support technicians, etc.), you could be saving yourself a ton of time and energy by finding and using the right developer plugins.</p>\n<p>In no particular order, here are four of our favorite developer plugins.</p>\n<hr>\n<h3>Transients Manager</h3>\n<p>One of the great things about developer plugins, in my opinion, is their simple and straight-to-the-point nomenclature. <a href=\"https://wordpress.org/plugins/transients-manager/\" target=\"_blank\">Transients Manager</a> is a great example: it helps you manage <a href=\"https://codex.wordpress.org/Transients_API\" target=\"_blank\">transients</a> on your site.</p>\n<p>The plugin is made by <a href=\"https://pippinsplugins.com/\" target=\"_blank\">Pippin Williamson</a> and is administered on a page that sits under the “Tools” wp-admin menu. The page provides a handy GUI for managing transients, as shown in the following screenshot.</p>\n<div id=\"attachment_1153650\" style=\"width: 1103px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM.png\" alt=\"The Transients Manager GUI\" width=\"1093\" height=\"765\" class=\"size-full wp-image-1153650\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM.png 1093w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-121x85.png 121w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-300x210.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-768x538.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-665x465.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-430x301.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-11.51.22-AM-645x451.png 645w\" sizes=\"(max-width: 1093px) 100vw, 1093px\" /></a><p class=\"wp-caption-text\">Transients Manager&#8217;s graphical wp-admin interface for managing transients.</p></div>\n<p>Just the ability to <em>see</em> all of the transients on your site is helpful enough, but with Transients Manager you have the power to delete and modify transients, too—you can even temporarily suspend all transients with a single click. </p>\n<p>It&#8217;s a time-saver to be able to see and edit transient values quickly without having to go spelunking in your database. For example, if you click the &#8220;edit&#8221; link on any transient in the admin GUI, you get a simple form like in the following screenshot where you can view and edit transient values.</p>\n<div id=\"attachment_1153657\" style=\"width: 1094px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM.png\" alt=\"Viewing the Details of a Single Transient\" width=\"1084\" height=\"525\" class=\"size-full wp-image-1153657\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM.png 1084w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-140x68.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-300x145.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-768x372.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-665x322.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-430x208.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.05.04-PM-645x312.png 645w\" sizes=\"(max-width: 1084px) 100vw, 1084px\" /></a><p class=\"wp-caption-text\">Viewing the details of a single transient in the Transient Manager admin screen.</p></div>\n<p>Transients Manager is proof that even a simple plugin can make a huge impact on productivity. By bringing transients into the admin for easy perusal and modification, you can save yourself a good deal of time and effort.</p>\n<hr>\n<h3>Query Monitor</h3>\n<p>It hurts to imagine life without <a href=\"https://johnblackbourn.com/\" target=\"_blank\">John Blackbourn</a>&#8216;s <a href=\"https://wordpress.org/plugins/query-monitor/\" target=\"_blank\">Query Monitor</a> plugin. Query Monitor is <em>extremely</em> helpful, because it is extremely comprehensive.</p>\n<p>The plugin adds an unobtrusive menu item to the admin toolbar that displays basic information about the current page&#8217;s queries, requests, and other details. Upon hovering over this menu item, some more items drop down as shown here:</p>\n<div id=\"attachment_1153710\" style=\"width: 1102px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947.png\" alt=\"Query Monitor&#039;s Simple Toolbar Item\" width=\"1092\" height=\"494\" class=\"size-full wp-image-1153710\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947.png 1092w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-140x63.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-300x136.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-768x347.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-665x301.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-430x195.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.30.05-PM-e1471625033947-645x292.png 645w\" sizes=\"(max-width: 1092px) 100vw, 1092px\" /></a><p class=\"wp-caption-text\">The admin toolbar item from Query Monitor that shows basic information about the page you&#8217;re on.</p></div>\n<p>When you click any of those menu items, a whole new section of content under the admin footer opens, revealing a plethora of insightful details about the current page. In an easy-to-read set of tables you get to see details like:</p>\n<ul>\n<li>All of the database queries performed on the current request</li>\n<li>All of the hooks fired on the current request</li>\n<li>Active theme templates and their respective filenames</li>\n<li>PHP errors and notices</li>\n<li>All of the rewrite rules and query vars for the current request</li>\n<li>All enqueued scripts and stylesheets</li>\n<li>What language files were loaded</li>\n<li>PHP environment information like memory limits and server details</li>\n</ul>\n<p>For a complete list of things the Query Monitor displays, check out the official plugin page <a href=\"https://wordpress.org/plugins/query-monitor/\" target=\"_blank\">here</a>. Having so much data at your fingertips saves time and affords more opportunities for having insights when trying to understand bugs. The plugin is free, incredibly helpful, and once you get used to having it on <em>one</em> site, you will want it on <em>every</em> site—I promise!</p>\n<hr>\n<h3>User Switching</h3>\n<p>Another indispensable tool created by <a href=\"https://johnblackbourn.com/\" target=\"_blank\">John Blackbourn</a>, <a href=\"https://wordpress.org/plugins/user-switching/\" target=\"_blank\">User Switching</a> lets you effortlessly switch to user accounts of any user level on your site.</p>\n<p>The utility of this is immense, as many features within WordPress generally (and within plugins and themes specifically) look and behave differently based on what <a href=\"https://codex.wordpress.org/Roles_and_Capabilities#User_Levels\" target=\"_blank\">user level</a> the current user is.</p>\n<p>Differences in appearance and behavior based on user level can only <em>really</em> be tested by manually logging into user accounts of different user levels. If you do this more than once or twice, the repetitious logging in, testing, logging out, logging back in, and so on starts to become tedious.</p>\n<p>User Switching reduces a multi-step process to just a few clicks. From your main Administrator account, you can switch to any user with the &#8220;Switch To&#8221; button seen here on the wp-admin Users page:</p>\n<div id=\"attachment_1153832\" style=\"width: 360px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.16-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.16-PM.png\" alt=\"The &quot;Switch To&quot; Button from User Switching\" width=\"350\" height=\"472\" class=\"size-full wp-image-1153832\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.16-PM.png 350w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.16-PM-63x85.png 63w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.16-PM-222x300.png 222w\" sizes=\"(max-width: 350px) 100vw, 350px\" /></a><p class=\"wp-caption-text\">The &#8220;Switch To&#8221; button provided by the User Switching plugin.</p></div>\n<p>In the example above, the account I&#8217;m switching to is of the Contributor user level. Once I switch to this user, I can test things and explore my site on both the front and back ends, and see everything as a Contributor user would. When you&#8217;re ready to return to the Administrator account, all that&#8217;s needed is one more click: you simply hover your admin toolbar&#8217;s user card and click &#8220;Switch Back to {username}&#8221;, as shown here:</p>\n<div id=\"attachment_1153833\" style=\"width: 563px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM.png\" alt=\"User Switching&#039;s &quot;Switch back to&quot; Functionality\" width=\"553\" height=\"285\" class=\"size-full wp-image-1153833\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM.png 553w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM-140x72.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM-300x155.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.31.31-PM-430x222.png 430w\" sizes=\"(max-width: 553px) 100vw, 553px\" /></a><p class=\"wp-caption-text\">The &#8220;Switch back to&#8221; link in the toolbar when User Switching is activated.</p></div>\n<p>If you&#8217;re building or debugging a project where the user levels of various users matters, do yourself a favor and ensure that User Switching is active at all times. </p>\n<hr>\n<h3>WP Crontrol</h3>\n<p>A <em>third</em> plugin by the superhero <a href=\"https://johnblackbourn.com/\" target=\"_blank\">John Blackbourn</a>, WP Crontrol does for WordPress cron events what Transients Manager does for transients. Like transients, cron events in WordPress are not easily manageable unless you dive into the database or tinker via code directly. But once WP Crontrol is installed, you can view and manage cron events from right within your wp-admin.</p>\n<p>After activating the plugin, a new &#8220;Cron Events&#8221; menu item will appear under your wp-admin&#8217;s &#8220;Tools&#8221; menu item. It leads to a single, well-made page that lists all of your site&#8217;s active cron events, as shown in the following screenshot.</p>\n<div id=\"attachment_1153838\" style=\"width: 1090px\" class=\"wp-caption aligncenter\"><a href=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM.png\"><img src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM.png\" alt=\"The WP Crontrol Management Screen\" width=\"1080\" height=\"728\" class=\"size-full wp-image-1153838\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM.png 1080w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-126x85.png 126w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-300x202.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-768x518.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-665x448.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-430x290.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.22-PM-645x435.png 645w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a><p class=\"wp-caption-text\">WP Crontrol&#8217;s simple but powerful cron management screen.</p></div>\n<p>As seen in the screenshot, you can manually force cron events to run on demand with the &#8220;Run Now&#8221; buttons—a <strong>huge</strong> help for debugging. You can also delete cron events, of course. But another great help is the ability to add new cron events or edit existing ones; both things are possible by way of a simple interface at the bottom of the page, as shown in the screenshots below.</p>\n\n<a href=\'https://theeventscalendar.com/favorite-developer-plugins/screen-shot-2016-08-19-at-4-42-33-pm/\'><img width=\"1077\" height=\"484\" src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM.png\" class=\"attachment-full size-full\" alt=\"Add Cron Event with WP Crontrol\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM.png 1077w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-140x63.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-300x135.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-768x345.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-665x299.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-430x193.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.33-PM-645x290.png 645w\" sizes=\"(max-width: 1077px) 100vw, 1077px\" /></a>\n<a href=\'https://theeventscalendar.com/favorite-developer-plugins/screen-shot-2016-08-19-at-4-42-44-pm/\'><img width=\"1074\" height=\"484\" src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM.png\" class=\"attachment-full size-full\" alt=\"Modfy an Existing Cron Event with WP Crontrol\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM.png 1074w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-140x63.png 140w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-300x135.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-768x346.png 768w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-665x300.png 665w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-430x194.png 430w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-19-at-4.42.44-PM-645x291.png 645w\" sizes=\"(max-width: 1074px) 100vw, 1074px\" /></a>\n\n<hr>\n<p>There are a ton of great plugins out there for consumers and developers alike. These four plugins are just some common favorites with wide usage among our QA, support, and development teams, and are so useful and flexible that it&#8217;s hard to imagine making things for WordPress without these tools.</p>\n<p>Each of these four plugins has many thousands of users all over the world, which makes it mind-boggling to think of how many hours these tools must collectively save the developers who use them. It&#8217;s a testament to the WordPress community and mindset that all four of the invaluable pieces of software above are <strong>completely free</strong>. Be sure to check out their authors, Pippin Williamson and Jack Blackbourn, and support their projects. I&#8217;m sure even a &#8220;thank you&#8221; over Twitter would surely be appreciated.</p>\n<ul>\n<li><a href=\"https://pippinsplugins.com/\" target=\"_blank\">Pippin Williamson</a> — <a href=\"https://twitter.com/pippinsplugins\" target=\"_blank\">@pippinsplugins</a> on Twitter</li>\n<li><a href=\"https://johnblackbourn.com/\" target=\"_blank\">John Blackbourn</a> — <a href=\"https://twitter.com/johnbillion\" target=\"_blank\">@johnbillion</a> on Twitter</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/favorite-developer-plugins/\">Our Favorite Developer Plugins</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Release: The Events Calendar 4.2.5, Event Tickets 4.2.5, and Premium Add-ons\";s: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:96:\"https://theeventscalendar.com/release-events-calendar-4-2-5-event-tickets-4-2-5-premium-add-ons/\";s: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, 17 Aug 2016 18:22:53 +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:13:\"Release Notes\";s: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:40:\"https://theeventscalendar.com/?p=1152713\";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:657:\"<p>We&#8217;re happy to announce a new release of The Events Calendar, Event Tickets, and associated premium add-ons. As you may already know, we like to ship a series of maintenance releases en route to a larger, feature-rich release. This marks the fifth such release in that series for 4.2. Many bugs and tweaks were covered.&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-events-calendar-4-2-5-event-tickets-4-2-5-premium-add-ons/\">Release: The Events Calendar 4.2.5, Event Tickets 4.2.5, and Premium Add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:4173:\"<p>We&#8217;re happy to announce a new release of The Events Calendar, Event Tickets, and associated premium add-ons.</p>\n<p>As you may already know, we like to ship a series of maintenance releases en route to a larger, feature-rich release. This marks the fifth such release in that series for 4.2. Many bugs and tweaks were covered. To learn about the specific ones, let&#8217;s dig into the change logs!</p>\n<hr />\n<p>The following plugins were updated to the following versions in this release:</p>\n<ul>\n<li><a href=\"#tec\">The Events Calendar <strong>4.2.5</strong></a></li>\n<li><a href=\"#ecp\">Events Calendar Pro <strong>4.2.4</strong></a></li>\n<li><a href=\"#ce\">Community Events <strong>4.2.4</strong></a></li>\n<li><a href=\"#ical\">iCal Importer <strong>4.2.4</strong></a></li>\n<li><a href=\"#et\">Event Tickets <strong>4.2.5</strong></a></li>\n<li><a href=\"#etp\">Event Tickets Plus <strong>4.2.5</strong></a></li>\n<li><a href=\"#eb\">Eventbrite Tickets <strong>4.2.1</strong></a></li>\n</ul>\n<p>The following plugins were <strong>not</strong> updated and remain at these versions:</p>\n<ul>\n<li>Community Tickets <strong>4.2.3</strong></li>\n<li>Filter Bar <strong>4.2.2</strong></li>\n<li>Facebook <strong>4.2</strong></li>\n<li>Advanced Post Manager <strong>4.2.2</strong></li>\n</ul>\n<p>You can view all archived release notes <a href=\"https://theeventscalendar.com/category/products/release-notes/\" target=\"_blank\">here</a>.</p>\n<p>As always, we encourage you to use caution when updating plugins to the latest versions, just as you would for any other WordPress update. <a href=\"https://codex.wordpress.org/WordPress_Backups\">Backup your site files and database</a>, and definitely test the updates in a development environment if possible.</p>\n<p>We expect smooth sailing if you&#8217;re already running version 4.2 of any plugin, but better to be safe than sorry. This is <em>especially</em> true for anyone updating from version 4.1 or earlier, in which case we suggest <a href=\"https://theeventscalendar.com/release-the-events-calendar-4-2-premium-add-ons/\">reading over the 4.2 release notes</a> in advance.</p>\n<hr />\n<h3 id=\"#tec\">The Events Calendar 4.2.5</h3>\n<ul>\n<li><strong>Fix</strong> — Fixed inconsistent template filtering logic for single event template.</li>\n<li><strong>Tweak</strong> — Restored preview for published events.</li>\n</ul>\n<hr />\n<h3 id=\"#ecp\">Events Calendar PRO 4.2.4</h3>\n<ul>\n<li><strong>Fix</strong> — PHP notice when importing events from iCal importer.</li>\n</ul>\n<hr />\n<h3 id=\"#ce\">Community Events 4.2.4</h3>\n<ul>\n<li><strong>Fix</strong> — Front-end event edit form not displaying an event assigned categories. (Thank you @indycourses for the report in the support forums.)</li>\n<li><strong>Fix</strong> — Improve organizer and venue validation and add in two filters to validate individual fields for their respective linked posts.</li>\n</ul>\n<hr />\n<h3 id=\"#ical\">iCal Importer 4.2.4</h3>\n<ul>\n<li><strong>Fix</strong> — PHP 5.2 recurring imports issues.</li>\n</ul>\n<hr />\n<h3 id=\"#et\">Event Tickets 4.2.5</h3>\n<ul>\n<li><strong>Fix</strong> — Garbled site title in RSVP confirmation email.</li>\n</ul>\n<hr />\n<h3 id=\"#etp\">Event Tickets Plus 4.2.5</h3>\n<ul>\n<li><strong>Fix</strong> — Resolved warnings during WPEC checkouts that prevented proper page redirection after ticket purchases. Props to @sewhouston in the support forums for reporting this!</li>\n<li><strong>Tweak</strong> — Allow for basic HTML tag support in attendee meta fields. Shout-out to @lpoindexter for reporting this on in the forums!</li>\n</ul>\n<hr />\n<h3 id=\"#eb\">Eventbrite Tickets 4.2.1</h3>\n<ul>\n<li><strong>Fix</strong> — Prevent erroneous error messages from trying to change event status when it was not being changed. Thank you to @Jessie and others in our support forum for reporting these issues.</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-events-calendar-4-2-5-event-tickets-4-2-5-premium-add-ons/\">Release: The Events Calendar 4.2.5, Event Tickets 4.2.5, and Premium Add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:3;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Under the Hood: Filtering Excerpts in The Events Calendar\";s: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:80:\"https://theeventscalendar.com/under-the-hood-filtering-excerpts-events-calendar/\";s: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, 13 Aug 2016 16:04:45 +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:\"Articles\";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:14:\"Under the Hood\";s: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:40:\"https://theeventscalendar.com/?p=1125755\";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:640:\"<p>The Events Calendar and its suite of add-ons use a single function to generate content excerpts: tribe_events_get_the_excerpt(). There&#8217;s long been no way to alter the content that this function generates, but in version 4.2 of The Events Calendar, we introduced a filter to make it easy to add things to, remove things from, or otherwise&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/under-the-hood-filtering-excerpts-events-calendar/\">Under the Hood: Filtering Excerpts in The Events Calendar</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:3662:\"<p>The Events Calendar and its suite of add-ons use a single function to generate content excerpts: <a href=\"https://theeventscalendar.com/function/tribe_events_get_the_excerpt/\" target=\"_blank\"><kbd>tribe_events_get_the_excerpt()</kbd></a>. There&#8217;s long been no way to alter the content that this function generates, but in version 4.2 of The Events Calendar, we introduced a filter to make it easy to add things to, remove things from, or otherwise modify event excerpts.</p>\n<p>The filter has the same name of the function itself, <kbd>tribe_events_get_the_excerpt</kbd>. For a quick example of how it might be used, let&#8217;s say you wanted every excerpt to be prefaced with a &#8220;View Event&#8221; link. You could make this a reality by adding a snippet like the following to your theme&#8217;s <kbd>functions.php</kbd> file:</p>\n<pre class=\"brush: plain; title: ; notranslate\">\nadd_filter( \'tribe_events_get_the_excerpt\', \'tribe_add_view_event_link_before_excerpt\' );\n\nfunction tribe_add_view_event_link_before_excerpt( $excerpt ) {\n    \n     $permalink = get_permalink( get_the_ID() );\n\n    return sprintf( \'&lt;a href=&quot;%s&quot;&gt;View Event&lt;/a&gt;&lt;br&gt; %s\', $permalink, $excerpt );\n}\n</pre>\n<p>Below are two screenshots that show how this example function works. The first screenshot (on the left) shows an excerpt in The Events Calendar&#8217;s month view before the function is added to the site; the second (on the right) shows the same excerpt with a &#8220;View Event&#8221; link before it:<br />\n\n<a href=\'https://theeventscalendar.com/under-the-hood-filtering-excerpts-events-calendar/screen-shot-2016-08-13-at-11-35-55-am/\'><img width=\"441\" height=\"383\" src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.35.55-AM.png\" class=\"attachment-large size-large\" alt=\"Screen Shot 2016-08-13 at 11.35.55 AM\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.35.55-AM.png 441w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.35.55-AM-98x85.png 98w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.35.55-AM-300x261.png 300w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.35.55-AM-430x373.png 430w\" sizes=\"(max-width: 441px) 100vw, 441px\" /></a>\n<a href=\'https://theeventscalendar.com/under-the-hood-filtering-excerpts-events-calendar/screen-shot-2016-08-13-at-11-36-50-am/\'><img width=\"408\" height=\"358\" src=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.36.50-AM.png\" class=\"attachment-large size-large\" alt=\"Screen Shot 2016-08-13 at 11.36.50 AM\" srcset=\"https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.36.50-AM.png 408w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.36.50-AM-97x85.png 97w, https://theeventscalendar.com/content/uploads/2016/08/Screen-Shot-2016-08-13-at-11.36.50-AM-300x263.png 300w\" sizes=\"(max-width: 408px) 100vw, 408px\" /></a>\n</p>\n<p>In our post <em><a href=\"http://theeventscalendar.com/the-trouble-with-excerpts\" target=\"_blank\">The Trouble with Excerpts</a></em>, we highlighted how difficult excerpts can be to work with, and how time-consuming they can be to manage. Hopefully this filter makes them a bit more flexible.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/under-the-hood-filtering-excerpts-events-calendar/\">Under the Hood: Filtering Excerpts in The Events Calendar</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Support Essentials: Communicating Effectively\";s: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://theeventscalendar.com/support-essentials-communicating-effectively/\";s: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, 05 Aug 2016 20:12:55 +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:\"Articles\";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:18:\"Support Essentials\";s: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:40:\"https://theeventscalendar.com/?p=1146880\";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:627:\"<p>It might sound trite, but when it comes to providing customer support, communication is key. This is especially true when dealing with angry or tense customers, where the annoyance of communication failures only magnifies their agitation. But figuring out and fixing common sources of friction in communication can be a great step in improving the&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/support-essentials-communicating-effectively/\">Support Essentials: Communicating Effectively</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:6849:\"<p>It might sound trite, but when it comes to providing customer support, communication is key. This is especially true when dealing with angry or tense customers, where the annoyance of communication failures only magnifies their agitation.</p>\n<p>But figuring out and fixing common sources of friction in communication can be a great step in improving the chances of success with any customer. In my experience, there are four main obstacles that seem to most regularly make communication fail, which then snowball into making the whole support exchange fail.</p>\n<hr style=\"width:40%;margin-left:30%;margin-right:30%;\">\n<h3>1. Language and Knowledge Barriers</h3>\n<p>If you and the customer speak different languages, then even with the help of online translators it can be hard to hit the bullseye in communicating simple instructions or posing simple questions. </p>\n<p>This problem can also exist even if both parties are using the same language: if the customer is especially new to the platform you are supporting, for example, then there is a knowledge barrier that can be just as high and as frustrating to work around as a “real” language barrier.</p>\n<p><strong>Solution:</strong> When it comes to knowledge and language barriers alike, one of the best ways to break through and establish clarity in communication is to rely on actual language as little as possible: communicate exact steps for them to go through with any sort of visual aid available that improves clarity, especially screenshots and video screencasts. Where written language is necessary, bulleted lists, step-by-step instructions, and very literal language can help. Abbreviations should be spelled out, and where possible, choose simple words instead of complex terminology.</p>\n<h3>2. Reading Into Tone: Don’t Take it Personally</h3>\n<p>As anyone who’s read a YouTube comment section can confirm, people are far more acerbic online than they are in the real world. Being rude is embarrassing to any decent person, and the fear of embarrassment in the real world keeps a person’s tone and demeanor (generally) in check.</p>\n<p>But many—if not all—of these social pressures are removed when engaging in an online support exchange. This make it hard to decipher how a customer truly feels—in your head, the language may read as especially harsh, when in reality the customer might have only been a little bit annoyed and in a bit of a rush when they wrote it. A person’s true tone and feelings can be difficult to gauge and easily misinterpreted by anyone trying to provide them support.</p>\n<p>Taking this harshness personally can sour the exchange early by changing your tone for the worse.</p>\n<p><strong>Solution:</strong> If a customer’s tone or comment gets your blood boiling, take a break from that support exchange and engage in something else. Come back to it later with a cooler head, remind yourself to not take it personally, and try giving the customer the benefit of the doubt.</p>\n<h3>3. Mismatched Expectations</h3>\n<p>If a customer expects a different support experience than what your team actually provides, then you can bet on an unsatisfying outcome. When the customer is angry, there’s often an impulse to go “above and beyond” as a support provider to try and turn the situation around. But before going down this path, it should be established up-front what you can and cannot do for them.</p>\n<p>The customer might not be satisfied if they expect a lot more than what is possible, but it’s worth trying to lay the groundwork and set a bar that you can then try to surpass in your efforts.</p>\n<p><strong>Solution:</strong> Have a page with a clear breakdown of what the support team is capable of—not just a page of legalese Terms and Conditions, but a human-readable breakdown of what sorts of things are covered and what things are not. We’ve made such a page <a href=\"https://theeventscalendar.com/knowledgebase/what-support-is-provided-for-license-holders/\" target=\"_blank\">here</a>, for example, and have found it extremely handy for new customers who might not know what “support” specifically includes and excludes.</p>\n<h3>4. Staying on Task</h3>\n<p>Have you ever seen a comment thread that tries to pack many questions in at once? From a user perspective, this is totally understandable—they want to share all of their concerns so you can address them in your reply. Unfortunately for support staff, it can quickly make the exchange disorganized and thus make it harder to provide succinct answers, hindering your ability to resolve the issue effectively.</p>\n<p><strong>Solution:</strong> Acknowledge the difficulty of replying to multiple questions in a single thread, and establish the fact that being disorganized in the thread will only hurt the speed and effectiveness of their support exchange. I personally get the focus back on track by saying, “We can certainly get to to those other issues, but to provide the most efficient support here we should tackle [insert main issue] first.”</p>\n<p>Using basic HTML formatting when possible is a also great help. You can use blockquotes to quote specific chunks of the customer’s reply and respond to each quote in turn—this makes it easier to write the reply by letting you tackle one question at a time, while also making it easier for the customer to absorb all of the information in your reply. Text formatting, including header tags and even horizontal rules, can be used to further “segment” your reply for easier digestion.</p>\n<hr style=\"width:40%;margin-left:30%;margin-right:30%;\">\n<p>Though each customer is different, and every issue has its own nuances and details that deserve attention, there’s a common thread in all of them: For any single customer support exchange to go well, there has to be good and clear communication.</p>\n<p>You might not always be able to improve the customer’s communication. But you can certainly improve yours and your team’s, and make your lives easier for doing so—while providing better service to your customers, too.</p>\n<hr style=\"width:40%;margin-left:30%;margin-right:30%;\">\n<p><em>This is the first post in a series from The Events Calendar team,</em> Support Essentials. <em>The next post is coming soon—<a href=\"https://theeventscalendar.com/feed/\" target=\"_blank\">subscribe via RSS</a>, follow us <a href=\"https://twitter.com/TheEventsCal\" target=\"_blank\">on Twitter</a> or <a href=\"https://www.facebook.com/theeventscalendar/\" target=\"_blank\">Facebook</a> to make sure you don’t miss it!</em></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/support-essentials-communicating-effectively/\">Support Essentials: Communicating Effectively</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Release: The Events Calendar and Event Tickets 4.2.4, plus premium add-ons\";s: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://theeventscalendar.com/release-the-events-calendar-and-event-tickets-4-2-4-plus-premium-add-ons/\";s: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, 03 Aug 2016 19:27:26 +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:13:\"Release Notes\";s: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:40:\"https://theeventscalendar.com/?p=1147124\";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:651:\"<p>Hey folks and welcome to the next edition of updates to our suite of WordPress plugins. We just released The Events Calendar and Event Tickets 4.2.4 and want to share the goodness that this release brings. In short, we corrected a handful of high-priority known issues that had been reported in our forums and that&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-the-events-calendar-and-event-tickets-4-2-4-plus-premium-add-ons/\">Release: The Events Calendar and Event Tickets 4.2.4, plus premium add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Geoff\";s: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:2967:\"<p>Hey folks and welcome to the next edition of updates to our suite of WordPress plugins. We just released <strong>The Events Calendar and Event Tickets 4.2.4</strong> and want to share the goodness that this release brings.</p>\n<p>In short, we corrected a handful of high-priority known issues that had been reported in our forums and that came up during testing. There were eight squashed bugs in all and we hope this makes things run much smoother for those who were affected by them.</p>\n<p>If you&#8217;re following along our release schedule, this is a maintenance release that was planned en route to our next major feature release. We have one more maintenance release planned ahead of the big 4.3 launch, so hold on to your hats and let&#8217;s dig into what&#8217; new in this release.</p>\n<p>As always, we suggest testing all updates in a safe testing environment before updating on a live site. There are no breaking changes in this release but, for those of you updating from a version earlier than 4.2 will definitely want to review our past release notes for what has changed and test thoroughly before making the jump.</p>\n<p>The following plugins were updated in this release:</p>\n<ul>\n<li>The Events Calendar 4.2.4</li>\n<li>iCal Importer 4.2.3</li>\n<li>Event Tickets 4.2.4</li>\n<li>Event Tickets Plus 4.2.4</li>\n</ul>\n<p>The following plugins were not updated in this release and stay at their existing versions:</p>\n<ul>\n<li>Events Calendar PRO 4.2.3</li>\n<li>Community Events 4.2.3</li>\n<li>Community Tickets 4.2.2</li>\n<li>Filter Bar 4.2.2</li>\n<li>Facebook Events 4.2</li>\n<li>Eventbrite Tickets 4.2</li>\n<li>Advanced Post Manager 4.2.1</li>\n</ul>\n<hr />\n<h3>The Events Calendar 4.2.4</h3>\n<ul>\n<li><strong>Tweak &#8211;</strong> Improved &#8220;Event Add-Ons&#8221; screen for faster loading</li>\n<li><strong>Fix &#8211;</strong> Fixed an issue where the default venue setting was not being respected</li>\n<li><strong>Fix &#8211;</strong> Fixed issues with the default venue state and province settings</li>\n</ul>\n<hr />\n<h3>iCal Importer 4.2.3</h3>\n<ul>\n<li><strong>Fix &#8211;</strong> Improve compatibility with older PHP runtimes</li>\n</ul>\n<hr />\n<h3>Event Tickets 4.2.4</h3>\n<ul>\n<li><strong>Tweak &#8211;</strong> Improved &#8220;Event Add-Ons&#8221; screen for faster loading</li>\n</ul>\n<hr />\n<h3>Event Tickets Plus 4.2.4</h3>\n<ul>\n<li><strong>Fix &#8211;</strong> Avoid Organizer and Venue being unset when updating a WooCommerce managed event ticket in WooCommerce</li>\n<li><strong>Fix &#8211;</strong> Limit the potential for race conditions leading to duplicate &#8220;human readable&#8221; IDs</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-the-events-calendar-and-event-tickets-4-2-4-plus-premium-add-ons/\">Release: The Events Calendar and Event Tickets 4.2.4, plus premium add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:6;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Celebrate 4 Million Downloads With 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://theeventscalendar.com/celebrate-4-million-downloads-with-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jul 2016 21:23:53 +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:9:\"Promotion\";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:10:\"milestones\";s: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:40:\"https://theeventscalendar.com/?p=1141929\";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:644:\"<p>Our next milestone is approaching fast &#8211; The Events Calendar is expected to cross the 4 million downloads threshold over the next few days. To celebrate, we&#8217;re running a special Random Refund Promotion July 26-29th. What&#8217;s a &#8220;Random Refund&#8221;?  For 4 days next week (July 26th-29th), any purchase OR renewal of Events Calendar PRO will be eligible&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/celebrate-4-million-downloads-with-us/\">Celebrate 4 Million Downloads With Us!</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jen Jamar\";s: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:4341:\"<p><img class=\"aligncenter size-full wp-image-1143208\" src=\"https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads.png\" alt=\"4milliondownloads\" width=\"1024\" height=\"576\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads.png 1024w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-140x79.png 140w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-300x169.png 300w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-768x432.png 768w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-665x374.png 665w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-430x242.png 430w, https://theeventscalendar.com/content/uploads/2016/07/4milliondownloads-645x363.png 645w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p>Our next milestone is approaching fast &#8211; <a href=\"https://wordpress.org/plugins/the-events-calendar/\">The Events Calendar </a>is expected to cross the 4 million downloads threshold over the next few days.</p>\n<p>To celebrate, we&#8217;re running a special <strong>Random Refund Promotion July 26-29th.</strong></p>\n<h3>What&#8217;s a &#8220;Random Refund&#8221;?<strong> </strong></h3>\n<p>For 4 days next week (July 26th-29th), any purchase OR renewal of <a href=\"https://theeventscalendar.com/product/wordpress-events-calendar-pro/?utm_source=website&amp;utm_medium=blog&amp;utm_campaign=randomrefundpromo\">Events Calendar PRO</a> will be eligible for a &#8220;random refund.&#8221; 4 times each day, we&#8217;ll review our transactions and select a user at random to receive a credit for the purchase price of their new or renewed Events Calendar PRO license.</p>\n<p>Bonus &#8211; Those that tweet about their purchase are eligible for an extra shot at a Random Refund.</p>\n<h3>Are All License Levels Included?</h3>\n<p>Yup! As long as the license or renewal is for <a href=\"https://theeventscalendar.com/product/wordpress-events-calendar-pro/?utm_source=website&amp;utm_medium=blog&amp;utm_campaign=randomrefundpromo\">Events Calendar PRO</a>, you&#8217;re eligible for the random refund drawings.</p>\n<h3>What About Bundles?</h3>\n<p><a href=\"https://theeventscalendar.com/bundles/?utm_source=website&amp;utm_medium=blog&amp;utm_campaign=randomrefundpromo\">Our bundles pack in massive value</a>, so we totally get it if you want to take advantage of the savings, but don&#8217;t want to miss out on this promo.</p>\n<p>Folks that purchase a bundle that includes Events Calendar PRO are eligible for our Random Refund drawing. If you&#8217;re selected for a Random Refund, you&#8217;ll receive a credit for the Events Calendar PRO portion of the bundle.</p>\n<h3>How Do I Participate?<strong> </strong></h3>\n<p>This is the easiest part &#8211; anyone who purchases or renews Events Calendar PRO is automatically entered. No special promo codes or shenanigans required.</p>\n<p><strong>Bonus entry: </strong>Get your name added to the transaction list an extra time by tweeting us a shoutout at <strong><a href=\"https://twitter.com/theeventscal\">@TheEventsCal</a> </strong>with hashtag <strong>#4milliondownloads</strong> after checkout.</p>\n<p>Those selected each day for our Random Refunds will receive an email notifying them of their credit.</p>\n<p>We&#8217;ll be giving thank yous &amp; shoutouts on social media, so be sure to follow us on <a href=\"https://twitter.com/theeventscal\">Twitter</a> and <a href=\"https://www.facebook.com/theeventscalendar/?fref=ts\">Facebook</a> to join in the celebration!</p>\n<h3>Let&#8217;s Do This!</h3>\n<p>Head on over to the <a href=\"https://theeventscalendar.com/product/wordpress-events-calendar-pro/?utm_source=website&amp;utm_medium=blog&amp;utm_campaign=randomrefundpromo\">Events Calendar PRO page</a> to shop for a new license now, or log into your account to view your license keys and <a href=\"https://theeventscalendar.com/license-/?utm_source=website&amp;utm_medium=blog&amp;utm_campaign=randomrefundpro keys mo\">access your personalized renewal link</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/celebrate-4-million-downloads-with-us/\">Celebrate 4 Million Downloads With Us!</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:7;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Automating Event Promotion With Zapier\";s: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://theeventscalendar.com/automating-event-promotion-zapier/\";s: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 Jul 2016 19:20:23 +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:8:\"Articles\";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:15:\"event promotion\";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:6:\"zapier\";s: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:40:\"https://theeventscalendar.com/?p=1139373\";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:581:\"<p>Are you taking advantage of Zapier to automate your event promotion? If not, this post is definitely worth the read. Zapi-what? Zapier is essentially an app-to-app automation system. It works by triggering an action in one app based on a trigger in a different app. For example, when a new custom post type is published&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/automating-event-promotion-zapier/\">Automating Event Promotion With Zapier</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jen Jamar\";s: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:13099:\"<p>Are you taking advantage of Zapier to automate your event promotion?</p>\n<p>If not, this post is definitely worth the read.</p>\n<h2>Zapi-what?</h2>\n<p>Zapier is essentially an app-to-app automation system. It works by triggering an action in one app based on a trigger in a different app. For example, when a new custom post type is published in WordPress (trigger), a new post is also created and published on Twitter (action).</p>\n<p>If you&#8217;re the person in charge of helping promote your event, I can already see your grin &#8211; Zapier opens up huge opportunities for automating event promotion. Best of all? It&#8217;s free to a certain extent. At the time of this publication date, Zapier offers a free plan that includes 100 tasks per month for up to 5 Zaps running every 15 minutes. Paid plans start at $20/month.</p>\n<p><em>Transparency FTW: We have zero affiliation with Zapier. We just like sharing things that may be helpful for our users.</em></p>\n<h2>Automating Event Promotion With Zapier</h2>\n<p>We&#8217;ll start with some basic event promotion by setting up Zapier to automatically send a tweet every time a new event is added to your calendar. First, you&#8217;ll need to create a <a href=\"https://zapier.com/\">free Zapier account</a>, then click the &#8220;Make a Zap!&#8221; button at the top of the screen.</p>\n<p><img class=\"aligncenter size-full wp-image-1142448\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap.jpg\" alt=\"Event Promotion: Make a Zap on Zapier\" width=\"1000\" height=\"427\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-140x60.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-300x128.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-768x328.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-665x284.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-430x184.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Make_A_Zap-645x275.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>Next, you&#8217;ll choose your &#8220;Trigger&#8221; &#8211; the app where you are pulling information from based on an action you define. If you don&#8217;t see the WordPress logo, use the Search box to pull it up, then click on the icon.</p>\n<p><em>Tip: You can name your </em>zap<em> by clicking the pencil icon in the upper left of the screen. This is super helpful when you&#8217;re running multiple zaps and want to make a change to one later on. </em></p>\n<p><img class=\"aligncenter size-full wp-image-1142451\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap.jpg\" alt=\"Zapier: Choose Your Trigger App\" width=\"1000\" height=\"450\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-140x63.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-300x135.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-768x346.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-665x299.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-430x194.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger_and_Name_Zap-645x290.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>By default, the most common triggers for the app you selected are shown. If you don&#8217;t see &#8220;New Post&#8221; right away after selecting WordPress as your appClick to expand the list to see more options, then select &#8220;New Post&#8221; for your trigger.</p>\n<p><img class=\"aligncenter size-full wp-image-1142461\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger.jpg\" alt=\"Zapier: Choose WordPress as your trigger\" width=\"1000\" height=\"402\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-140x56.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-300x121.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-768x309.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-665x267.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-430x173.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Choose_Trigger-645x259.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>After you select the trigger, you&#8217;ll be prompted to select which WordPress account you want to use for this Zap. If you already have a WordPress account connected to Zapier, you&#8217;ll see it displayed in your Zapier dashboard. If not, you can click the &#8220;Connect a New Account&#8221; button to</p>\n<p><em>Tip: To maintain the security of your site, we recommend creating a new user with the editor role and using those credentials to connect to Zapier. </em></p>\n<p><img class=\"aligncenter size-full wp-image-1142449\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account.jpg\" alt=\"Event Promotion With Zapier: Connect Your WordPress Account\" width=\"1000\" height=\"461\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-140x65.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-300x138.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-768x354.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-665x307.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-430x198.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Connect_WP_Account-645x297.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>Now that you&#8217;ve got your WordPress account connected, you can select which post status will be used for your trigger, as well as which post type. Since we&#8217;re building this zap to promote new events on Twitter, we&#8217;re going to use the &#8220;Published&#8221; post status and the &#8220;Events&#8221; post type.</p>\n<p><img class=\"aligncenter size-full wp-image-1142450\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type.jpg\" alt=\"Event Promotion With Zapier: Set Post Type Trigger\" width=\"1000\" height=\"508\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-140x71.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-300x152.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-768x390.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-665x338.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-430x218.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Set_Post_Type-645x328.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>Once you&#8217;ve got your Trigger set up, you can add your Action.</p>\n<p>Select Twitter as the Action app, then select &#8220;Create Tweet&#8221; as the action, and connect the Twitter account you want your tweets sent from.</p>\n<p><em>Tip: If you use <a href=\"https://theeventscalendar.com/knowledgebase/featured-images/\">featured images for your events</a>, you may prefer to use Create Image Tweet for this step.</em></p>\n<p><img class=\"aligncenter size-full wp-image-1142563\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action.jpg\" alt=\"Zapier: Select Twitter Action\" width=\"1000\" height=\"408\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-140x57.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-300x122.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-768x313.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-665x271.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-430x175.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Select_Twitter_Action-645x263.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>After you&#8217;ve connected your Twitter account, you can use the Edit Template to set up any text and links you want to include in your automated tweets.</p>\n<p><img class=\"aligncenter size-full wp-image-1142564\" src=\"https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup.jpg\" alt=\"Zapier: Tweet Template for Event Promotion\" width=\"1000\" height=\"465\" srcset=\"https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup.jpg 1000w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-140x65.jpg 140w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-300x140.jpg 300w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-768x357.jpg 768w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-665x309.jpg 665w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-430x200.jpg 430w, https://theeventscalendar.com/content/uploads/2016/07/Tweet_Template_Setup-645x300.jpg 645w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>Once you save and test to confirm your Zap is working correctly, you&#8217;ll all set to turn it on. Congrats &#8211; you just created your first Zap!</p>\n<p>Your Zap will run automatically, checking every 15 minutes for new events published on your calendar to tweet out to your followers.</p>\n<h2>More Event Promotion Automation With Zapier</h2>\n<p>Automatically tweeting new events added to your calendar is just the tip of the iceberg when it comes to what you can do with Zapier.</p>\n<p>More useful Zaps for events:</p>\n<ul>\n<li>Share new events to Facebook (WordPress to Facebook)</li>\n<li>Queue new event posts for promotion in Buffer (WordPress to Buffer)</li>\n<li>Catalog your past events in a Google spreadsheet (WordPress to Google Sheets)</li>\n<li> Notify your Slack team when new <a href=\"https://theeventscalendar.com/product/wordpress-community-events/\">Community Events</a> are submitted for approval (WordPress to Slack)</li>\n</ul>\n<p>With over 500 applications available to connect on Zapier, there are loads of integrations you can use to automate your event promotion. If you&#8217;re using WooCommerce to <a href=\"https://theeventscalendar.com/product/wordpress-event-tickets-plus/\">sell event tickets</a>, there are some more additional Zaps you can set up using the <a href=\"https://woocommerce.com/products/woocommerce-zapier/\">WooCommerce Zapier add-on</a>.</p>\n<ul>\n<li>Send a tweet thanking attendees for their ticket purchase (WooCommerce to Twitter)</li>\n<li>Add attendee emails to a MailChimp email list (WooCommerce to MailChimp)</li>\n<li>Send a waiver form to attendees after their ticket purchase (WooCommerce to Gmail)</li>\n</ul>\n<p>And did I mention we&#8217;re just scratching the surface?</p>\n<h2>Advanced Zapier Event Integrations</h2>\n<p>Zapier is not limited to a single action in each Zap. You can create a sequence of Zaps (called a Multi-Step Zap) that combine actions into a full-on automation sequence.</p>\n<p>Let&#8217;s say you regularly get comments from your community on your calendar with questions about your events. You want to respond to them in a timely fashion, so you set up Multi-Step Zap that does ALL of the following each time a new comment is posted (Trigger).</p>\n<ul>\n<li>Automatically update your to-do list with a reminder to review new comments (WordPress to Asana)</li>\n<li>Add a due date for the to-do list task by creating a Google Calendar event (Asana to Google Calendar)</li>\n<li>Add the comment to a Google spreadsheet with a link so you can easily find it when you&#8217;re ready to reply (WordPress to Google Sheets)</li>\n</ul>\n<p>Boom &#8211; you just created a pretty powerful automation sequence to make sure you&#8217;re responding to user comments and questions on a regular basis.</p>\n<p>Of course, Zapier isn&#8217;t only limited to events. You can use Zapier to create all sorts of integrations and workflows. You can explore <a href=\"https://zapier.com/zapbook/wordpress/\">more WordPress Zaps on their site</a>, or share your favorite Zaps in the comments with us below.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/automating-event-promotion-zapier/\">Automating Event Promotion With Zapier</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Release: The Events Calendar 4.2.3, Event Tickets 4.2.3, and Premium Add-ons\";s: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:96:\"https://theeventscalendar.com/release-events-calendar-4-2-3-event-tickets-4-2-3-premium-add-ons/\";s: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 Jul 2016 14:39: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Release Notes\";s: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:40:\"https://theeventscalendar.com/?p=1142084\";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:657:\"<p>We&#8217;re happy to announce a new release of The Events Calendar, Event Tickets, and associated premium add-ons. As you may already know, we like to ship a series of maintenance releases en route to a larger, feature-rich release. This marks the third such release in that series for 4.2. Many bugs and tweaks were covered.&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-events-calendar-4-2-3-event-tickets-4-2-3-premium-add-ons/\">Release: The Events Calendar 4.2.3, Event Tickets 4.2.3, and Premium Add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"George\";s: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:4762:\"<p>We&#8217;re happy to announce a new release of The Events Calendar, Event Tickets, and associated premium add-ons.</p>\n<p>As you may already know, we like to ship a series of maintenance releases en route to a larger, feature-rich release. This marks the third such release in that series for 4.2. Many bugs and tweaks were covered. To learn about the specific ones, let&#8217;s dig into the change logs!</p>\n<hr />\n<p>The following plugins were updated to the following versions in this release:</p>\n<ul>\n<li><a href=\"#tec\">The Events Calendar 4.2.3</a></li>\n<li><a href=\"#ecp\">Events Calendar PRO 4.2.3</a></li>\n<li><a href=\"#ce\">Community Events 4.2.3</a></li>\n<li><a href=\"#filter\">Filter Bar 4.2.2</a></li>\n<li><a href=\"#et\">Event Tickets 4.2.3</a></li>\n<li><a href=\"#etp\">Event Tickets Plus 4.2.3</a></li>\n</ul>\n<p>The following plugins were <strong>not</strong> updated and remain at these versions:</p>\n<ul>\n<li>iCal Importer 4.2.2</li>\n<li>Facebook 4.2</li>\n<li>Eventbrite Tickets 4.2</li>\n<li>Community Tickets 4.2.2</li>\n<li>Advanced Post Manager 4.2.2</li>\n</ul>\n<p>You can view all archived release notes <a href=\"https://theeventscalendar.com/category/products/release-notes/\" target=\"_blank\">here</a>.</p>\n<p>As always, we encourage you to use caution when updating plugins to the latest versions, just as you would for any other WordPress update. <a href=\"https://codex.wordpress.org/WordPress_Backups\">Backup your site files and database</a>, and definitely test the updates in a development environment if possible.</p>\n<p>We expect smooth sailing if you&#8217;re already running version 4.2 of any plugin, but better to be safe than sorry. This is <em>especially</em> true for anyone updating from version 4.1 or earlier, in which case we suggest <a href=\"https://theeventscalendar.com/release-the-events-calendar-4-2-premium-add-ons/\">reading over the 4.2 release notes</a> in advance.</p>\n<hr />\n<h3 id=\"tec\">The Events Calendar 4.2.3</h3>\n<ul>\n<li><strong>Fix</strong> — In month view, be sure to unhook JSON-LD output when calling unhook function</li>\n<li><strong>Fix</strong> — Incorrect JSON-LD event start and end times (thank you @jjbte for reporting on .org forums)</li>\n<li><strong>Fix</strong> — Show Google Map and Link checkbox so they show when editing an event (Reported originally by Michael of @NailedIT in the .org forum)</li>\n<li><strong>Fix</strong> — Use Community Events Venue Edit Link when on Community Events Forms instead of Admin (also as a result of the report above from @NailedIT. Thanks again.)</li>\n</ul>\n<hr />\n<h3 id=\"ecp\">Events Calendar PRO 4.2.3</h3>\n<ul>\n<li><strong>Fix</strong> — Change <em>myremove</em> to jQuery Grep to improve compatibility with Black Studio TinyMCE Widget (Thank you @digisavvy for reporting this in the support Forums)</li>\n<li><strong>Fix</strong> — Add check for past events in the mini calendar and event list widget date icon box so it shows the correct information (Initially reported by @yuryvasilchenko in the support forums. Thanks!)</li>\n</ul>\n<hr />\n<h3 id=\"ce\">Community Events 4.2.3</h3>\n<ul>\n<li><strong>Fix</strong> — Always Show Google Map and Link checkbox when editing an event [Thanks to @groeteke for reporting this on our forums.]</li>\n<li><strong>Fix</strong> — Enable logged in users same access to community events form when anonymous submissions disabled [Emily of @designagency took the time to report this one. Thanks Emily.]</li>\n</ul>\n<hr />\n<h3 id=\"filter\">Filter Bar 4.2.2</h3>\n<ul>\n<li><strong>Fix</strong> — Events imported via the CSV import function would not show up in start time based filtering (Thanks to @Stephan for the original post on our support forums here.)</li>\n<li><strong>Fix</strong> — Incorrect start time based filtering of events in some edge cases</li>\n</ul>\n<hr />\n<h3 id=\"et\">Event Tickets 4.2.3</h3>\n<ul>\n<li><strong>Tweak</strong> — Add prompt for ratings on admin Event screens</li>\n<li><strong>Fix</strong> — Provide fallback page if App Shop API fails to load</li>\n<li><strong>Fix</strong> — Events related links should appear under the Events menu (Thanks @Abby for the original report of this on our support forums)</li>\n</ul>\n<hr />\n<h3 id=\"etp\">Event Tickets Plus 4.2.3</h3>\n<ul>\n<li><strong>Fix</strong> — Hide attendee output meta field from the WooCommerce Individual Order Items (thanks @Douglas for getting this report into us via the support forums.)</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-events-calendar-4-2-3-event-tickets-4-2-3-premium-add-ons/\">Release: The Events Calendar 4.2.3, Event Tickets 4.2.3, and Premium Add-ons</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:9;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Kickin’ It Up A Notch\";s: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:51:\"https://theeventscalendar.com/kickin-it-up-a-notch/\";s: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, 12 Jul 2016 16:08: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:3:{i:0;a:5:{s:4:\"data\";s:8:\"Articles\";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:13:\"communication\";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:16:\"release schedule\";s: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:40:\"https://theeventscalendar.com/?p=1138152\";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:565:\"<p>Our plugins have millions of downloads and hundreds of thousands of active users all over the world. We&#8217;re proud to have such a large and global audience, but communicating the status of updates to and fixes for our plugins can be challenging at times given the size of it. We&#8217;ve taken great advantage of the usual&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/kickin-it-up-a-notch/\">Kickin&#8217; It Up A Notch</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jen Jamar\";s: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:3623:\"<p>Our plugins have millions of downloads and hundreds of thousands of active users all over the world. We&#8217;re proud to have such a large and global audience, but communicating the status of updates to and fixes for our plugins can be challenging at times given the size of it.</p>\n<p>We&#8217;ve taken great advantage of the usual communication channels—we publish frequently on our blog, in email newsletters, and on social media. But with today&#8217;s jam-packed inboxes and cluttered newsfeeds, we know our posts don&#8217;t always get in front of everyone that would like to see them. To help solve this problem, we&#8217;ve kicked our communications efforts up a notch by creating two new pages to help you get the info you need: <a href=\"https://theeventscalendar.com/release-schedule/\">The Release Schedule</a> and <a href=\"https://theeventscalendar.com/known-issues/\">Known Issues</a>.</p>\n<h2>The Release Schedule</h2>\n<p>Our plugin releases fall into three main categories:</p>\n<ul>\n<li>Feature Releases (Quarterly) — Significant new features for the plugin.</li>\n<li>Maintenance Releases (Bi-weekly) — Fixes and tweaks to address issues reported to us in the forums.</li>\n<li>Hotfix Releases (As needed) — A fix to address a security issue or a bug causing major breakages.</li>\n</ul>\n<p>The new <a href=\"https://theeventscalendar.com/release-schedule/\">Release Schedule page</a> goes into more detail on our release process, including a nice breakdown of our version numbers and how they are updated with each release type.</p>\n<h2>Known Issues</h2>\n<p>Our QA game is strong, but sometimes issues develop after a release that we did not anticipate. In the past, we&#8217;ve posted a sticky thread to the top of the relevant forum to alert users if there was a known issue we were working on. While that method helped many folks, it was a bit clunky to maintain on our end—especially if there was an issue affecting multiple plugins.</p>\n<p>Now you can find up-to-date information on significant, high-priority issues we are investigating and working to resolve on our new <a href=\"https://theeventscalendar.com/known-issues/\">Known Issues page</a>. This page is limited in scope to those issues that affect a large number of users, but should prove very handy in helping us work with our community to identify and prioritize fixes for our maintenance releases.</p>\n<h2>The Usual Suspects</h2>\n<p>These new pages aren&#8217;t replacing anything. We&#8217;ll still be active on <a href=\"https://twitter.com/TheEventsCal\" target=\"_blank\">Twitter</a> and <a href=\"https://www.facebook.com/theeventscalendar/\" target=\"_blank\">Facebook</a>, for example; we will continue to monitor <a href=\"http://theeventscalendar.com/support/forums\">our support forums</a> for bug reports, review feature requests on <a href=\"https://tribe.uservoice.com/forums/195723-feature-ideas\">User Voice</a>, and publish release notes and feature previews on <a href=\"https://theeventscalendar.com/blog\">our blog</a>.</p>\n<p>With the addition of the <a href=\"https://theeventscalendar.com/release-schedule/\">Release Schedule</a> and <a href=\"https://theeventscalendar.com/known-issues/\">Known Issues</a> pages, we can communicate <em>more</em> effectively across all of these existing channels while also providing two new resources that you can check out yourself any time you&#8217;d like.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/kickin-it-up-a-notch/\">Kickin&#8217; It Up A Notch</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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: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:35:\"https://theeventscalendar.com/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 29 Aug 2016 20:27:53 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:12:\"x-powered-by\";s:21:\"PHP/5.4.33-1~dotdeb.1\";s:4:\"vary\";s:6:\"Cookie\";s:4:\"etag\";s:34:\"\"490ec676560c0baa3e913af934350c5f\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:66:\"<https://theeventscalendar.com/wp-json/>; rel=\"https://api.w.org/\"\";s:13:\"last-modified\";s:29:\"Mon, 29 Aug 2016 19:32:28 GMT\";s:13:\"cache-control\";s:29:\"max-age=3600, must-revalidate\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(77072,'product_cat_children','a:0:{}','yes'),(77073,'portfolio_category_children','a:0:{}','yes'),(77074,'portfolio_skills_children','a:0:{}','yes'),(77075,'faq_category_children','a:0:{}','yes'),(77076,'tribe_events_cat_children','a:0:{}','yes'),(77108,'_transient_timeout_feed_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1472545673','no'),(77077,'sbg_sidebars','a:9:{s:14:\"ContactSidebar\";s:15:\"Contact Sidebar\";s:3:\"FAQ\";s:3:\"FAQ\";s:15:\"HomepageSidebar\";s:17:\"Home Page Sidebar\";s:9:\"Portfolio\";s:9:\"Portfolio\";s:9:\"Megamenu1\";s:9:\"Megamenu1\";s:9:\"Megamenu2\";s:9:\"Megamenu2\";s:7:\"Twitter\";s:7:\"Twitter\";s:11:\"PageWidget1\";s:13:\"Page Widget 1\";s:11:\"PageWidget2\";s:13:\"Page Widget 2\";}','yes'),(77124,'_transient_timeout_external_ip_address_5.226.175.206','1473108217','no'),(77125,'_transient_external_ip_address_5.226.175.206','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(77126,'_transient_timeout_external_ip_address_216.54.31.82','1473108405','no');
INSERT INTO `wp_options` VALUES (77078,'revslider-static-css','.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.avada_huge_white_text{\n			position: absolute; \n			color: #ffffff; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n            text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);\n		}\n\n.avada_huge_black_text{\n			position: absolute; \n			color: #000000; \n			font-size: 130px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text{\n			position: absolute; \n			color: #333333; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 42px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n		}\n\n.avada_big_black_text_center{\n			position: absolute; \n			color: #333333; \n			font-size: 38px; \n			line-height: 45px; \n			font-family: museoslab500regular;\n                        text-align: center;\n		}\n\n\n.avada_med_green_text{\n			position: absolute; \n			color: #A0CE4E; \n			font-size: 24px; \n			line-height: 24px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n\n.avada_small_gray_text{\n			position: absolute; \n			color: #747474; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n		}\n\n.avada_small_white_text{\n			position: absolute; \n			color: #fff; \n			font-size: 13px; 			\n            line-height: 20px; \n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n    		text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);\n  			font-weight: 700; \n\n		}\n\n\n.avada_block_black{\n			position: absolute; \n			color: #A0CE4E; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_green{\n			position: absolute; \n			color: #000; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#A0CE4E;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n.avada_block_white{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:#000;	\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n\n\n.avada_block_white_trans{\n			position: absolute; \n			color: #fff; \n			text-shadow: none; \n			font-size: 22px; \n			line-height: 34px; \n			padding: 0px 10px; \n			padding-top: 1px;\n			margin: 0px; \n			border-width: 0px; \n			border-style: none; \n			background-color:rgba(0, 0, 0, 0.6);    		\n			font-family: PTSansRegular, Arial, Helvetica, sans-serif;\n	}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}','yes'),(76901,'rs-templates','a:2:{s:6:\"slider\";a:104:{i:0;a:19:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:19:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:19:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:19:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:439:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:19:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:19:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:19:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:19:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:19:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:19:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:19:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:19:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:19:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:19:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:19:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:19:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:19:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:19:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:19:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:19:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:19:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:19:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:19:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:19:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:19:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:346:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:19:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:19:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:19:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:19:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:19:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:19:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:19:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:19:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:19:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:19:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:19:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:630:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:19:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:19:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:19:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:19:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:518:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:19:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:19:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:19:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:323:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:19:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:316:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:19:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:19:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:19:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:19:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:19:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:19:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:19:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:19:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:691:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:19:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:693:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:19:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:532:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:19:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:543:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:19:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:661:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:19:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:19:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:19:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:19:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:19:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:19:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:19:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:19:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:441:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:19:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:19:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:572:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-whiteboard/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:19:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:516:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:20:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:68;a:20:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:69;a:20:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:70;a:20:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:71;a:20:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:72;a:20:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:73;a:20:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:74;a:20:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:75;a:20:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:20:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:20:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:20:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:20:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:20:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:20:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:20:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:19:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:19:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:19:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:19:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:20:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:88;a:20:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:89;a:20:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:90;a:20:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:91;a:20:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:92;a:20:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:93;a:20:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:94;a:20:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:95;a:19:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:19:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:20:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:98;a:20:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:99;a:20:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:100;a:20:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:101;a:20:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:102;a:19:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:19:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:104:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}}}','yes'),(77079,'avada_imported_demo','false','yes'),(77080,'wpseo_sitemap_avada_portfolio_cache_validator','6iwhD','no'),(77081,'wpseo_sitemap_avada_faq_cache_validator','6iwhK','no'),(77082,'wpseo_sitemap_11526_cache_validator','6iwi4','no'),(77083,'wpseo_sitemap_11527_cache_validator','6iwir','no'),(77084,'wpseo_sitemap_11528_cache_validator','6iwiC','no'),(77085,'wpseo_sitemap_211_cache_validator','6iwiO','no'),(77086,'wpseo_sitemap_11529_cache_validator','6iwiW','no'),(77087,'wpseo_sitemap_11530_cache_validator','6iwj4','no'),(77088,'wpseo_sitemap_product_cache_validator','6iwjb','no'),(77089,'wpseo_sitemap_portfolio_category_cache_validator','6iwjs','no'),(77090,'wpseo_sitemap_portfolio_skills_cache_validator','6iwjB','no'),(77091,'wpseo_sitemap_faq_category_cache_validator','6iwjK','no'),(77092,'wpseo_sitemap_category_cache_validator','6iwjR','no'),(77093,'wpseo_sitemap_post_tag_cache_validator','6iwjY','no'),(77094,'wpseo_sitemap_product_cat_cache_validator','6iwk6','no'),(77095,'wpseo_sitemap_product_tag_cache_validator','6iwki','no'),(77099,'_transient_timeout_external_ip_address_70.39.246.37','1473106817','no'),(77128,'_transient_timeout_plt_cache__links','1472504206','no'),(77129,'_transient_plt_cache__links','a:0:{}','no'),(77130,'_transient_timeout_plt_cache__targets','1472504206','no'),(77131,'_transient_plt_cache__targets','a:0:{}','no'),(77110,'_transient_timeout_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1472545673','no'),(77111,'_transient_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1472502473','no'),(77137,'_transient_timeout_external_ip_address_199.101.94.15','1473108766','no'),(77138,'_transient_external_ip_address_199.101.94.15','198.46.81.24','no'),(77118,'theme_mods_800pxmock_v2','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:9:\"404_pages\";i:34;s:15:\"main_navigation\";i:35;s:14:\"top_navigation\";i:37;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1472503837;s:4:\"data\";a:14:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-2\";i:1;s:6:\"text-2\";i:2;s:6:\"text-6\";i:3;s:14:\"recent-posts-5\";i:4;s:6:\"text-7\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:6:\"text-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:14:\"recent-posts-6\";}s:18:\"orphaned_widgets_3\";a:1:{i:0;s:12:\"categories-7\";}s:18:\"orphaned_widgets_4\";a:0:{}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:7:\"text-10\";}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:7:\"text-11\";}s:18:\"orphaned_widgets_7\";a:1:{i:0;s:6:\"text-8\";}s:18:\"orphaned_widgets_8\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_9\";a:3:{i:0;s:8:\"search-4\";i:1;s:14:\"recent-posts-3\";i:2;s:6:\"text-5\";}s:19:\"orphaned_widgets_10\";a:2:{i:0;s:6:\"text-9\";i:1;s:6:\"text-4\";}s:19:\"orphaned_widgets_11\";a:1:{i:0;s:7:\"text-13\";}s:19:\"orphaned_widgets_12\";a:1:{i:0;s:7:\"text-12\";}}}}','yes'),(77156,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1472506334;s:8:\"response\";a:1:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"4.2.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.2.2.zip\";s:6:\"tested\";s:3:\"4.6\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:16:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:6:\"3.1.11\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.3.1.11.zip\";}s:35:\"backup-and-move/backup_and_move.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20444\";s:4:\"slug\";s:15:\"backup-and-move\";s:6:\"plugin\";s:35:\"backup-and-move/backup_and_move.php\";s:11:\"new_version\";s:3:\"0.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/backup-and-move/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/backup-and-move.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:6:\"2.5.10\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.10.zip\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip\";}s:33:\"dynamic-headers/custom-header.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"7821\";s:4:\"slug\";s:15:\"dynamic-headers\";s:6:\"plugin\";s:33:\"dynamic-headers/custom-header.php\";s:11:\"new_version\";s:5:\"3.5.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/dynamic-headers/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/dynamic-headers.3.5.3.zip\";}s:29:\"easy-columns/easy-columns.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"21026\";s:4:\"slug\";s:12:\"easy-columns\";s:6:\"plugin\";s:29:\"easy-columns/easy-columns.php\";s:11:\"new_version\";s:6:\"v2.1.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/easy-columns/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/easy-columns.2.1.3.zip\";}s:31:\"exclude-pages/exclude_pages.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"1019\";s:4:\"slug\";s:13:\"exclude-pages\";s:6:\"plugin\";s:31:\"exclude-pages/exclude_pages.php\";s:11:\"new_version\";s:4:\"1.92\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/exclude-pages/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/exclude-pages.1.92.zip\";}s:49:\"facebook-button-plugin/facebook-button-plugin.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"23139\";s:4:\"slug\";s:22:\"facebook-button-plugin\";s:6:\"plugin\";s:49:\"facebook-button-plugin/facebook-button-plugin.php\";s:11:\"new_version\";s:4:\"2.50\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/facebook-button-plugin/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/facebook-button-plugin.2.50.zip\";}s:35:\"si-contact-form/si-contact-form.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"9891\";s:4:\"slug\";s:15:\"si-contact-form\";s:6:\"plugin\";s:35:\"si-contact-form/si-contact-form.php\";s:11:\"new_version\";s:6:\"4.0.43\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/si-contact-form/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/si-contact-form.zip\";}s:35:\"googleanalytics/googleanalytics.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"8553\";s:4:\"slug\";s:15:\"googleanalytics\";s:6:\"plugin\";s:35:\"googleanalytics/googleanalytics.php\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/googleanalytics/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/googleanalytics.zip\";}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"216\";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.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/page-links-to.2.9.6.zip\";}s:35:\"post-page-notes/post-page-notes.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"11953\";s:4:\"slug\";s:15:\"post-page-notes\";s:6:\"plugin\";s:35:\"post-page-notes/post-page-notes.php\";s:11:\"new_version\";s:5:\"0.1.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/post-page-notes/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/post-page-notes.0.1.1.zip\";s:14:\"upgrade_notice\";s:74:\"This version fixes some translation bugs, it&#039;s recommended to update.\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11861\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"4.2.5\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25331\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"2.6.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.2.6.4.zip\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"3.4.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.3.4.2.zip\";}s:37:\"boldgrid-staging/boldgrid-staging.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:16:\"boldgrid-staging\";s:6:\"plugin\";s:37:\"boldgrid-staging/boldgrid-staging.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:24:\"http://www.boldgrid.com/\";s:7:\"package\";s:114:\"https://wp-assets.boldgrid.com/api/open/get-asset?id=548421&installed_staging_version=1.2&installed_wp_version=4.6\";}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=14970 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (5,5,'_edit_last','1'),(6,5,'_edit_lock','1469559292:1'),(7,7,'_edit_last','1'),(8,7,'_edit_lock','1471532266:1'),(9,9,'_edit_last','1'),(10,9,'_edit_lock','1468170706:1'),(11,10,'_edit_last','1'),(12,10,'_edit_lock','1460432401:1'),(13,12,'_edit_last','1'),(14,12,'_edit_lock','1469484733:1'),(15,13,'_edit_last','1'),(16,13,'_edit_lock','1446058814:1'),(17,14,'_edit_last','1'),(18,14,'_edit_lock','1396400292:1'),(19,16,'_edit_last','1'),(20,16,'_edit_lock','1464873464:1'),(21,18,'_edit_last','1'),(22,18,'_edit_lock','1410197811:1'),(23,20,'_edit_last','1'),(24,20,'_edit_lock','1459453376:1'),(25,21,'_menu_item_type','post_type'),(26,21,'_menu_item_menu_item_parent','0'),(27,21,'_menu_item_object_id','20'),(28,21,'_menu_item_object','page'),(29,21,'_menu_item_target',''),(30,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31,21,'_menu_item_xfn',''),(32,21,'_menu_item_url',''),(34,22,'_menu_item_type','post_type'),(35,22,'_menu_item_menu_item_parent','24'),(36,22,'_menu_item_object_id','18'),(37,22,'_menu_item_object','page'),(38,22,'_menu_item_target',''),(39,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(40,22,'_menu_item_xfn',''),(41,22,'_menu_item_url',''),(43,23,'_menu_item_type','post_type'),(44,23,'_menu_item_menu_item_parent','24'),(45,23,'_menu_item_object_id','16'),(46,23,'_menu_item_object','page'),(47,23,'_menu_item_target',''),(48,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49,23,'_menu_item_xfn',''),(50,23,'_menu_item_url',''),(117,10,'_wp_page_template','default'),(52,24,'_menu_item_type','post_type'),(53,24,'_menu_item_menu_item_parent','0'),(54,24,'_menu_item_object_id','14'),(55,24,'_menu_item_object','page'),(56,24,'_menu_item_target',''),(57,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58,24,'_menu_item_xfn',''),(59,24,'_menu_item_url',''),(118,12,'_wp_page_template','default'),(61,25,'_menu_item_type','post_type'),(62,25,'_menu_item_menu_item_parent','0'),(63,25,'_menu_item_object_id','13'),(64,25,'_menu_item_object','page'),(65,25,'_menu_item_target',''),(66,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(67,25,'_menu_item_xfn',''),(68,25,'_menu_item_url',''),(119,16,'_wp_page_template','default'),(70,26,'_menu_item_type','post_type'),(71,26,'_menu_item_menu_item_parent','29'),(72,26,'_menu_item_object_id','12'),(73,26,'_menu_item_object','page'),(74,26,'_menu_item_target',''),(75,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(76,26,'_menu_item_xfn',''),(77,26,'_menu_item_url',''),(120,18,'_wp_page_template','default'),(361,5,'_yoast_wpseo_content_score','30'),(121,14,'_wp_page_template','default'),(88,28,'_menu_item_type','post_type'),(89,28,'_menu_item_menu_item_parent','0'),(90,28,'_menu_item_object_id','9'),(91,28,'_menu_item_object','page'),(92,28,'_menu_item_target',''),(93,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,28,'_menu_item_xfn',''),(95,28,'_menu_item_url',''),(122,13,'_wp_page_template','default'),(97,29,'_menu_item_type','post_type'),(98,29,'_menu_item_menu_item_parent','0'),(99,29,'_menu_item_object_id','7'),(100,29,'_menu_item_object','page'),(101,29,'_menu_item_target',''),(102,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(103,29,'_menu_item_xfn',''),(104,29,'_menu_item_url',''),(123,9,'_wp_page_template','default'),(106,30,'_menu_item_type','post_type'),(107,30,'_menu_item_menu_item_parent','0'),(108,30,'_menu_item_object_id','5'),(109,30,'_menu_item_object','page'),(110,30,'_menu_item_target',''),(111,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(112,30,'_menu_item_xfn',''),(113,30,'_menu_item_url',''),(124,7,'_wp_page_template','default'),(125,5,'_wp_page_template','default'),(126,42,'_edit_last','1'),(129,42,'_edit_lock','1471532764:1'),(164,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:994;s:6:\"height\";i:768;s:4:\"file\";s:29:\"2013/03/FR-Calendar-Cover.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FR-Calendar-Cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FR-Calendar-Cover-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(165,106,'_wp_attached_file','2013/04/FR-Calendar-July-Days.jpg'),(163,82,'_wp_attached_file','2013/03/FR-Calendar-Cover.jpg'),(166,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:938;s:6:\"height\";i:768;s:4:\"file\";s:33:\"2013/04/FR-Calendar-July-Days.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"FR-Calendar-July-Days-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:33:\"FR-Calendar-July-Days-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(158,63,'_edit_last','1'),(159,63,'_edit_lock','1455376351:1'),(160,65,'_edit_last','1'),(161,65,'_edit_lock','1461688769:1'),(162,20,'_wp_page_template','default'),(228,230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:709;s:6:\"height\";i:549;s:4:\"file\";s:48:\"2013/10/Sponsor-Page-2015-Free-Rein-Calendar.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Sponsor-Page-2015-Free-Rein-Calendar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Sponsor-Page-2015-Free-Rein-Calendar-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(226,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:792;s:6:\"height\";i:614;s:4:\"file\";s:31:\"2013/10/2015-Calendar-Cover.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"2015-Calendar-Cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"2015-Calendar-Cover-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(227,230,'_wp_attached_file','2013/10/Sponsor-Page-2015-Free-Rein-Calendar.jpg'),(225,229,'_wp_attached_file','2013/10/2015-Calendar-Cover.jpg'),(170,125,'_edit_last','1'),(171,125,'_edit_lock','1455652839:1'),(172,130,'_wp_attached_file','2013/10/cover_front.jpg'),(173,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:792;s:6:\"height\";i:612;s:4:\"file\";s:23:\"2013/10/cover_front.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cover_front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cover_front-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(174,136,'_wp_attached_file','2013/10/2014-Calendar-Sponsor-Page.jpg'),(175,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1138;s:6:\"height\";i:880;s:4:\"file\";s:38:\"2013/10/2014-Calendar-Sponsor-Page.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"2014-Calendar-Sponsor-Page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"2014-Calendar-Sponsor-Page-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"2014-Calendar-Sponsor-Page-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(176,137,'_wp_attached_file','2013/10/2014-Calendar-Front-Sponsors-Page.jpg'),(177,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:902;s:6:\"height\";i:1400;s:4:\"file\";s:45:\"2013/10/2014-Calendar-Front-Sponsors-Page.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"2014-Calendar-Front-Sponsors-Page-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:45:\"2014-Calendar-Front-Sponsors-Page-193x300.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"2014-Calendar-Front-Sponsors-Page-659x1024.jpg\";s:5:\"width\";i:659;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(178,151,'_edit_last','1'),(179,151,'_edit_lock','1468173260:1'),(180,153,'_wp_attached_file','2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg'),(181,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1715;s:6:\"height\";i:1192;s:4:\"file\";s:52:\"2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Proposed-Free-Rein-Riding-Center-low-res-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:52:\"Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Proposed-Free-Rein-Riding-Center-low-res-1024x711.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(360,7,'_yoast_wpseo_content_score','30'),(359,12,'_yoast_wpseo_content_score','60'),(358,190,'_yoast_wpseo_content_score','60'),(357,434,'_wp_attached_file','2016/07/Free-Rein-Newsletter-JUN-2016-email.pdf'),(191,167,'_menu_item_type','post_type'),(192,167,'_menu_item_menu_item_parent','28'),(193,167,'_menu_item_object_id','125'),(194,167,'_menu_item_object','page'),(195,167,'_menu_item_target',''),(196,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(197,167,'_menu_item_xfn',''),(198,167,'_menu_item_url',''),(200,176,'_wp_attached_file','2013/03/IMG_4432-small.jpg'),(201,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:602;s:4:\"file\";s:26:\"2013/03/IMG_4432-small.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"IMG_4432-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"IMG_4432-small-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366975684;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"120\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";}}'),(209,190,'_edit_last','1'),(210,190,'_edit_lock','1469484786:1'),(211,192,'_wp_attached_file','2014/07/Free-Rein-Newsletter-June-2014.pdf'),(229,231,'_wp_attached_file','2013/10/2015-Calendar-Pages.jpg'),(213,207,'_wp_attached_file','2013/03/Mane-Event-Logo-2014.jpg'),(214,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1152;s:6:\"height\";i:1148;s:4:\"file\";s:32:\"2013/03/Mane-Event-Logo-2014.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mane-Event-Logo-2014-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:32:\"Mane-Event-Logo-2014-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Mane-Event-Logo-2014-1024x1020.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(248,261,'_wp_attached_file','2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf'),(249,267,'_wp_attached_file','2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf'),(218,213,'_wp_attached_file','2013/03/Sponsor-opportunities.pdf'),(219,215,'_wp_attached_file','2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf'),(230,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:1264;s:4:\"file\";s:31:\"2013/10/2015-Calendar-Pages.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"2015-Calendar-Pages-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"2015-Calendar-Pages-193x300.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"2015-Calendar-Pages-661x1024.jpg\";s:5:\"width\";i:661;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(223,225,'_wp_attached_file','2013/03/Mane-Event-Flyer-20141.jpg'),(224,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1444;s:6:\"height\";i:1069;s:4:\"file\";s:34:\"2013/03/Mane-Event-Flyer-20141.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Mane-Event-Flyer-20141-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:\"Mane-Event-Flyer-20141-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Mane-Event-Flyer-20141-1024x758.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(250,278,'_wp_attached_file','2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf'),(251,278,'_edit_lock','1435697178:1'),(252,267,'_edit_lock','1435696906:1'),(253,278,'_edit_last','1'),(254,292,'_wp_attached_file','2013/10/Calendar-Day-Page-with-Highlight.jpg'),(255,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:702;s:6:\"height\";i:539;s:4:\"file\";s:44:\"2013/10/Calendar-Day-Page-with-Highlight.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Calendar-Day-Page-with-Highlight-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:44:\"Calendar-Day-Page-with-Highlight-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(256,294,'_wp_attached_file','2013/03/Gala-Flyer-2015.jpg'),(257,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:724;s:6:\"height\";i:565;s:4:\"file\";s:27:\"2013/03/Gala-Flyer-2015.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Gala-Flyer-2015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Gala-Flyer-2015-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(258,298,'_wp_attached_file','2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf'),(259,306,'_wp_attached_file','2013/03/Board-Members-Porsha-and-Denise-small.jpg'),(260,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:314;s:6:\"height\";i:208;s:4:\"file\";s:49:\"2013/03/Board-Members-Porsha-and-Denise-small.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Board-Members-Porsha-and-Denise-small-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:49:\"Board-Members-Porsha-and-Denise-small-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-3N\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1445063810;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(261,307,'_wp_attached_file','2013/03/Sabrina-Shook.jpg'),(262,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3568;s:6:\"height\";i:2368;s:4:\"file\";s:25:\"2013/03/Sabrina-Shook.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Sabrina-Shook-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:\"Sabrina-Shook-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Sabrina-Shook-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996447286321199499070644378662109375;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-3N\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1445069102;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";}}'),(263,310,'_wp_attached_file','2013/03/DSC02805.jpg'),(264,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1577;s:6:\"height\";i:2346;s:4:\"file\";s:20:\"2013/03/DSC02805.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC02805-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC02805-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC02805-688x1024.jpg\";s:5:\"width\";i:688;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-3N\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1445071846;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(265,314,'_wp_attached_file','2013/10/2016-Calendar-Cover-Sponsor-Page.jpg'),(266,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:2120;s:4:\"file\";s:44:\"2013/10/2016-Calendar-Cover-Sponsor-Page.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"2016-Calendar-Cover-Sponsor-Page-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:44:\"2016-Calendar-Cover-Sponsor-Page-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2016-Calendar-Cover-Sponsor-Page-652x1024.jpg\";s:5:\"width\";i:652;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(268,316,'_wp_attached_file','2013/10/2016-Calendar-POS-Sign.jpg'),(269,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1582;s:6:\"height\";i:1114;s:4:\"file\";s:34:\"2013/10/2016-Calendar-POS-Sign.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"2016-Calendar-POS-Sign-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:\"2016-Calendar-POS-Sign-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"2016-Calendar-POS-Sign-1024x721.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(270,320,'_edit_last','1'),(271,320,'_edit_lock','1446059553:1'),(275,324,'_wp_attached_file','2015/10/Free-Rein-Map.jpg'),(276,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:584;s:6:\"height\";i:902;s:4:\"file\";s:25:\"2015/10/Free-Rein-Map.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Free-Rein-Map-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:\"Free-Rein-Map-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(277,332,'_wp_attached_file','2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf'),(278,332,'_edit_lock','1449600861:1'),(279,298,'_edit_lock','1449600846:1'),(280,342,'_wp_attached_file','2016/02/Student-and-Horse-LOVE-Small-Size.jpg'),(281,342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:45:\"2016/02/Student-and-Horse-LOVE-Small-Size.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Student-and-Horse-LOVE-Small-Size-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:45:\"Student-and-Horse-LOVE-Small-Size-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:45:\"Student-and-Horse-LOVE-Small-Size-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:46:\"Student-and-Horse-LOVE-Small-Size-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5000\";s:7:\"caption\";s:36:\"????????????????????????????????????\";s:17:\"created_timestamp\";s:10:\"1352735833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(282,343,'_wp_attached_file','2016/02/Student-and-Horse-LOVE-Small-Size-1.jpg'),(283,343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:47:\"2016/02/Student-and-Horse-LOVE-Small-Size-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Student-and-Horse-LOVE-Small-Size-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Student-and-Horse-LOVE-Small-Size-1-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:47:\"Student-and-Horse-LOVE-Small-Size-1-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:48:\"Student-and-Horse-LOVE-Small-Size-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5000\";s:7:\"caption\";s:36:\"????????????????????????????????????\";s:17:\"created_timestamp\";s:10:\"1352735833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(284,344,'_wp_attached_file','2016/02/Campbell-1658-x-1148.jpg'),(285,344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1658;s:6:\"height\";i:1148;s:4:\"file\";s:32:\"2016/02/Campbell-1658-x-1148.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Campbell-1658-x-1148-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:32:\"Campbell-1658-x-1148-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Campbell-1658-x-1148-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Campbell-1658-x-1148-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1395849274\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(286,345,'_wp_attached_file','2016/02/Olivia-and-Mary-Stoehr.jpg'),(287,345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:856;s:6:\"height\";i:561;s:4:\"file\";s:34:\"2016/02/Olivia-and-Mary-Stoehr.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Olivia-and-Mary-Stoehr-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:\"Olivia-and-Mary-Stoehr-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Olivia-and-Mary-Stoehr-768x503.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1396263120\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(288,346,'_wp_attached_file','2016/02/Shyann-with-Logo.jpg'),(289,346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1441;s:6:\"height\";i:961;s:4:\"file\";s:28:\"2016/02/Shyann-with-Logo.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Shyann-with-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Shyann-with-Logo-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:28:\"Shyann-with-Logo-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:29:\"Shyann-with-Logo-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(290,347,'_wp_attached_file','2016/02/IMG_4432-small.jpg'),(291,347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:602;s:4:\"file\";s:26:\"2016/02/IMG_4432-small.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"IMG_4432-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"IMG_4432-small-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"IMG_4432-small-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"IMG_4432-small-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1366975684\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"120\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(292,348,'_wp_attached_file','2016/02/Landon-Lindsey.jpg'),(293,348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3172;s:6:\"height\";i:2349;s:4:\"file\";s:26:\"2016/02/Landon-Lindsey.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Landon-Lindsey-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Landon-Lindsey-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Landon-Lindsey-768x569.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Landon-Lindsey-1024x758.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1364310208\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(294,349,'_wp_attached_file','2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg'),(295,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2201;s:6:\"height\";i:1506;s:4:\"file\";s:45:\"2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Lois-Clark-with-Avrey-2201-x-1506-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:45:\"Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Lois-Clark-with-Avrey-2201-x-1506-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Lois-Clark-with-Avrey-2201-x-1506-1024x701.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(296,357,'_wp_attached_file','2016/02/Free-Rein-Logo-for-Facebook.jpg'),(297,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:451;s:6:\"height\";i:450;s:4:\"file\";s:39:\"2016/02/Free-Rein-Logo-for-Facebook.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Free-Rein-Logo-for-Facebook-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:39:\"Free-Rein-Logo-for-Facebook-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(298,362,'_wp_attached_file','2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf'),(299,364,'_wp_attached_file','2014/07/Nickers-and-News-Title-Block.jpg'),(300,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1249;s:6:\"height\";i:263;s:4:\"file\";s:40:\"2014/07/Nickers-and-News-Title-Block.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Nickers-and-News-Title-Block-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:39:\"Nickers-and-News-Title-Block-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Nickers-and-News-Title-Block-768x162.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Nickers-and-News-Title-Block-1024x216.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(304,380,'_wp_attached_file','2016/03/Priceless-1-Small.jpg'),(312,408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:46:\"2016/06/2016-French-Broad-Dinner-Cruise-02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"2016-French-Broad-Dinner-Cruise-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"2016-French-Broad-Dinner-Cruise-02-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:46:\"2016-French-Broad-Dinner-Cruise-02-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:47:\"2016-French-Broad-Dinner-Cruise-02-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1462547355\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(305,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:632;s:4:\"file\";s:29:\"2016/03/Priceless-1-Small.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Priceless-1-Small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Priceless-1-Small-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Priceless-1-Small-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Priceless-1-Small-1024x632.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5000\";s:7:\"caption\";s:36:\"????????????????????????????????????\";s:17:\"created_timestamp\";s:10:\"1230753076\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(306,384,'_edit_last','1'),(307,384,'_edit_lock','1468176721:1'),(311,408,'_wp_attached_file','2016/06/2016-French-Broad-Dinner-Cruise-02.jpg'),(316,415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:459;s:6:\"height\";i:339;s:4:\"file\";s:27:\"2016/04/2016-Mane-Event.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"2016-Mane-Event-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"2016-Mane-Event-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(315,415,'_wp_attached_file','2016/04/2016-Mane-Event.jpg'),(317,384,'_yoast_wpseo_content_score','30'),(362,441,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(320,151,'_yoast_wpseo_content_score','60'),(321,428,'_menu_item_type','post_type'),(322,428,'_menu_item_menu_item_parent','28'),(323,428,'_menu_item_object_id','384'),(324,428,'_menu_item_object','page'),(325,428,'_menu_item_target',''),(326,428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(327,428,'_menu_item_xfn',''),(328,428,'_menu_item_url',''),(363,441,'_mail','a:8:{s:7:\"subject\";s:33:\"Free Rein Center \"[your-subject]\"\";s:6:\"sender\";s:42:\"[your-name] <wordpress@freereincenter.com>\";s:4:\"body\";s:179:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Free Rein Center (http://freereincenter.com)\";s:9:\"recipient\";s:22:\"freerein1325@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(339,430,'_menu_item_type','post_type'),(340,430,'_menu_item_menu_item_parent','28'),(341,430,'_menu_item_object_id','190'),(342,430,'_menu_item_object','page'),(343,430,'_menu_item_target',''),(344,430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(345,430,'_menu_item_xfn',''),(346,430,'_menu_item_url',''),(348,431,'_menu_item_type','post_type'),(349,431,'_menu_item_menu_item_parent','28'),(350,431,'_menu_item_object_id','10'),(351,431,'_menu_item_object','page'),(352,431,'_menu_item_target',''),(353,431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(354,431,'_menu_item_xfn',''),(355,431,'_menu_item_url',''),(364,441,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:33:\"Free Rein Center \"[your-subject]\"\";s:6:\"sender\";s:47:\"Free Rein Center <wordpress@freereincenter.com>\";s:4:\"body\";s:121:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Free Rein Center (http://freereincenter.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:32:\"Reply-To: freerein1325@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(365,441,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(366,441,'_additional_settings',NULL),(367,441,'_locale','en_US'),(368,3869,'_wp_attached_file','2013/10/browsers.jpg'),(369,3869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:380;s:4:\"file\";s:20:\"2013/10/browsers.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(370,3870,'_wp_attached_file','2013/10/mobile.jpg'),(371,3870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:340;s:4:\"file\";s:18:\"2013/10/mobile.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(372,3873,'_wp_attached_file','2012/11/slide_2.jpg'),(373,3873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:434;s:4:\"file\";s:19:\"2012/11/slide_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(374,3875,'_wp_attached_file','2013/10/slide_1.jpg'),(375,3875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:434;s:4:\"file\";s:19:\"2013/10/slide_1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(376,3887,'_wp_attached_file','2012/07/blog_3.jpg'),(377,3887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2012/07/blog_3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(378,3888,'_wp_attached_file','2012/07/blog_4.jpg'),(379,3888,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2012/07/blog_4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(380,3889,'_wp_attached_file','2012/07/blog_5.jpg'),(381,3889,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2012/07/blog_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(382,3890,'_wp_attached_file','2012/07/blog_6.jpg'),(383,3890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2012/07/blog_6.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(384,3891,'_wp_attached_file','2012/07/portfolio_1.jpg'),(385,3891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2012/07/portfolio_1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(386,3892,'_wp_attached_file','2012/07/portfolio_2.jpg'),(387,3892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2012/07/portfolio_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(388,3893,'_wp_attached_file','2012/07/portfolio_3.jpg'),(389,3893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2012/07/portfolio_3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(390,3894,'_wp_attached_file','2012/07/portfolio_4.jpg'),(391,3894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2012/07/portfolio_4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(392,3895,'_wp_attached_file','2012/07/portfolio_5.jpg'),(393,3895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2012/07/portfolio_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(394,3896,'_wp_attached_file','2013/10/logo-footer.gif'),(395,3896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:97;s:6:\"height\";i:22;s:4:\"file\";s:23:\"2013/10/logo-footer.gif\";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:{}}}'),(396,3904,'_wp_attached_file','2013/10/features.jpg'),(397,3904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2013/10/features.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(398,3936,'_wp_attached_file','2013/10/portfolio_6.jpg'),(399,3936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2013/10/portfolio_6.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(400,3938,'_wp_attached_file','2013/10/client.png'),(401,3938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:156;s:6:\"height\";i:113;s:4:\"file\";s:18:\"2013/10/client.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:{}}}'),(402,3978,'_wp_attached_file','2013/10/bkgd1.jpg'),(403,3978,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:578;s:4:\"file\";s:17:\"2013/10/bkgd1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(404,4010,'_wp_attached_file','2013/10/person.jpg'),(405,4010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:388;s:4:\"file\";s:18:\"2013/10/person.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(406,4053,'_wp_attached_file','2013/10/elastic1.jpg'),(407,4053,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2013/10/elastic1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(408,4054,'_wp_attached_file','2013/10/elastic2.jpg'),(409,4054,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2013/10/elastic2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(410,4069,'_wp_attached_file','2013/10/ipad.png'),(411,4069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:308;s:4:\"file\";s:16:\"2013/10/ipad.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:{}}}'),(412,4073,'_wp_attached_file','2013/10/slide_5.jpg'),(413,4073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1700;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2013/10/slide_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(414,4074,'_wp_attached_file','2013/10/slide_3.jpg'),(415,4074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1700;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2013/10/slide_3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(416,4076,'_wp_attached_file','2013/10/slide_4.jpg'),(417,4076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:450;s:4:\"file\";s:19:\"2013/10/slide_4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(418,4077,'_wp_attached_file','2013/10/ipad2.png'),(419,4077,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:219;s:4:\"file\";s:17:\"2013/10/ipad2.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:{}}}'),(420,4078,'_wp_attached_file','2013/10/iphone.png'),(421,4078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:166;s:4:\"file\";s:18:\"2013/10/iphone.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:{}}}'),(422,4079,'_wp_attached_file','2013/10/mac.png'),(423,4079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:342;s:4:\"file\";s:15:\"2013/10/mac.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:{}}}'),(424,4094,'_wp_attached_file','2013/10/logo.png'),(425,4094,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:176;s:6:\"height\";i:37;s:4:\"file\";s:16:\"2013/10/logo.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:{}}}'),(426,4113,'_wp_attached_file','2013/10/shirt.jpg'),(427,4113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:651;s:4:\"file\";s:17:\"2013/10/shirt.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(428,4395,'_wp_attached_file','2013/05/portfolio_5.jpg'),(429,4395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:475;s:4:\"file\";s:23:\"2013/05/portfolio_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(430,4396,'_wp_attached_file','2013/05/portfolio_6.jpg'),(431,4396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:475;s:4:\"file\";s:23:\"2013/05/portfolio_6.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(432,4438,'_wp_attached_file','2013/12/col_image_2.jpg'),(433,4438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:98;s:4:\"file\";s:23:\"2013/12/col_image_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(434,4439,'_wp_attached_file','2013/12/col_image_3.jpg'),(435,4439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:98;s:4:\"file\";s:23:\"2013/12/col_image_3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(436,4460,'_wp_attached_file','2013/12/col_image_5.jpg'),(437,4460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:451;s:6:\"height\";i:138;s:4:\"file\";s:23:\"2013/12/col_image_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(438,4488,'_wp_attached_file','2013/02/logo2x.png'),(439,4488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:226;s:6:\"height\";i:48;s:4:\"file\";s:18:\"2013/02/logo2x.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:{}}}'),(440,4586,'_wp_attached_file','2014/06/A2_1.png'),(441,4586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:124;s:4:\"file\";s:16:\"2014/06/A2_1.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:{}}}'),(442,4587,'_wp_attached_file','2014/06/A2_2.png'),(443,4587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:124;s:4:\"file\";s:16:\"2014/06/A2_2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(444,4588,'_wp_attached_file','2014/06/A2_3.png'),(445,4588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:123;s:4:\"file\";s:16:\"2014/06/A2_3.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:{}}}'),(446,4589,'_wp_attached_file','2014/06/A2_4.png'),(447,4589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:123;s:4:\"file\";s:16:\"2014/06/A2_4.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:{}}}'),(448,4590,'_wp_attached_file','2014/06/A2_5.png'),(449,4590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:124;s:4:\"file\";s:16:\"2014/06/A2_5.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:{}}}'),(450,4591,'_wp_attached_file','2014/06/A2_6.png'),(451,4591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:124;s:4:\"file\";s:16:\"2014/06/A2_6.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:{}}}'),(452,4592,'_wp_attached_file','2014/06/bg6b.jpg'),(453,4592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:16:\"2014/06/bg6b.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(454,4593,'_wp_attached_file','2014/06/circle.png'),(455,4593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:423;s:6:\"height\";i:422;s:4:\"file\";s:18:\"2014/06/circle.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:{}}}'),(456,4594,'_wp_attached_file','2014/06/html5-color.png'),(457,4594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:23:\"2014/06/html5-color.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:{}}}'),(458,4597,'_wp_attached_file','2014/06/ls_bkgd_color1.jpg'),(459,4597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2014/06/ls_bkgd_color1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(460,4598,'_wp_attached_file','2014/06/ls_bkgd_dark.jpg'),(461,4598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2014/06/ls_bkgd_dark.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(462,4605,'_wp_attached_file','2014/06/vimeo-color.png'),(463,4605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:23:\"2014/06/vimeo-color.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:{}}}'),(464,4606,'_wp_attached_file','2014/06/youtube-color.png'),(465,4606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:25:\"2014/06/youtube-color.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:{}}}'),(466,4610,'_wp_attached_file','2014/06/box21.png'),(467,4610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:419;s:6:\"height\";i:434;s:4:\"file\";s:17:\"2014/06/box21.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:{}}}'),(468,9734,'_wp_attached_file','2014/06/wood_bkgd.jpg'),(469,9734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:356;s:6:\"height\";i:786;s:4:\"file\";s:21:\"2014/06/wood_bkgd.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(470,9736,'_wp_attached_file','2014/06/bkgd13.jpg'),(471,9736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:391;s:4:\"file\";s:18:\"2014/06/bkgd13.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(472,9750,'_wp_attached_file','2014/06/page_bkgd8.jpg'),(473,9750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:730;s:4:\"file\";s:22:\"2014/06/page_bkgd8.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(474,9754,'_wp_attached_file','2014/06/bkgd_bw2.jpg'),(475,9754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:730;s:4:\"file\";s:20:\"2014/06/bkgd_bw2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(476,9756,'_wp_attached_file','2014/06/two_third_1.jpg'),(477,9756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:614;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2014/06/two_third_1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(478,9757,'_wp_attached_file','2014/06/two_third_2.jpg'),(479,9757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:614;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2014/06/two_third_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(480,9762,'_wp_attached_file','2014/06/browsers1.jpg'),(481,9762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:380;s:4:\"file\";s:21:\"2014/06/browsers1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(482,9763,'_wp_attached_file','2014/06/mobile.jpg'),(483,9763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:340;s:4:\"file\";s:18:\"2014/06/mobile.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(484,9782,'_wp_attached_file','2014/06/combo_text.jpg'),(485,9782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:508;s:4:\"file\";s:22:\"2014/06/combo_text.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(486,9783,'_wp_attached_file','2014/06/demo_content.png'),(487,9783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:453;s:6:\"height\";i:345;s:4:\"file\";s:24:\"2014/06/demo_content.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:{}}}'),(488,9784,'_wp_attached_file','2014/06/woo_feature2.jpg'),(489,9784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:521;s:4:\"file\";s:24:\"2014/06/woo_feature2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(490,9790,'_wp_attached_file','2014/06/shortcodes2.jpg'),(491,9790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:540;s:4:\"file\";s:23:\"2014/06/shortcodes2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(492,9791,'_wp_attached_file','2014/06/full_width.png'),(493,9791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2014/06/full_width.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:{}}}'),(494,10155,'_wp_attached_file','2014/08/port_infos.jpg'),(495,10155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:348;s:4:\"file\";s:22:\"2014/08/port_infos.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(496,10654,'_wp_attached_file','2014/09/header_infos.jpg'),(497,10654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:348;s:4:\"file\";s:24:\"2014/09/header_infos.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(498,10667,'_wp_attached_file','2014/09/slider_infos.jpg'),(499,10667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:348;s:4:\"file\";s:24:\"2014/09/slider_infos.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(500,10698,'_wp_attached_file','2013/05/blog_1.jpg'),(501,10698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2013/05/blog_1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(502,10699,'_wp_attached_file','2013/05/blog_2.jpg'),(503,10699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2013/05/blog_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(504,10713,'_wp_attached_file','2014/11/home_slider.jpg'),(505,10713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2014/11/home_slider.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(506,11294,'_wp_attached_file','2015/04/logo.png'),(507,11294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:24;s:4:\"file\";s:16:\"2015/04/logo.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:{}}}'),(508,11419,'_wp_attached_file','2014/11/avada_collage_design1-compressor.jpg'),(509,11419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:44:\"2014/11/avada_collage_design1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(510,11420,'_wp_attached_file','2014/11/avada_build_unique-compressor.png'),(511,11420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:426;s:4:\"file\";s:41:\"2014/11/avada_build_unique-compressor.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:{}}}'),(512,11421,'_wp_attached_file','2014/11/not_required1-compressor.png'),(513,11421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:521;s:6:\"height\";i:60;s:4:\"file\";s:36:\"2014/11/not_required1-compressor.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:{}}}'),(514,11426,'_wp_attached_file','2014/11/avada_intro_img2-compressor.jpg'),(515,11426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1070;s:6:\"height\";i:520;s:4:\"file\";s:39:\"2014/11/avada_intro_img2-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(516,11428,'_wp_attached_file','2014/11/agency22-compressor.jpg'),(517,11428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:31:\"2014/11/agency22-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(518,11429,'_wp_attached_file','2014/11/app1-compressor.jpg'),(519,11429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:27:\"2014/11/app1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(520,11430,'_wp_attached_file','2014/11/architecture1-compressor.jpg'),(521,11430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:36:\"2014/11/architecture1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(522,11431,'_wp_attached_file','2014/11/cafe2-compressor.jpg'),(523,11431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:28:\"2014/11/cafe2-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(524,11432,'_wp_attached_file','2014/11/church-compressor.jpg'),(525,11432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:29:\"2014/11/church-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(526,11433,'_wp_attached_file','2014/11/classic-compressor.jpg'),(527,11433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:30:\"2014/11/classic-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(528,11434,'_wp_attached_file','2014/11/fashion1-compressor.jpg'),(529,11434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:31:\"2014/11/fashion1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(530,11435,'_wp_attached_file','2014/11/hosting-compressor.jpg'),(531,11435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:30:\"2014/11/hosting-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(532,11436,'_wp_attached_file','2014/11/hotel-compressor.jpg'),(533,11436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:28:\"2014/11/hotel-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(534,11437,'_wp_attached_file','2014/11/law-compressor.jpg'),(535,11437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:26:\"2014/11/law-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(536,11438,'_wp_attached_file','2014/11/lifestyle-compressor.jpg'),(537,11438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:32:\"2014/11/lifestyle-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(538,11439,'_wp_attached_file','2014/11/travel-compressor.jpg'),(539,11439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:299;s:4:\"file\";s:29:\"2014/11/travel-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(540,11444,'_wp_attached_file','2014/11/design_desc-compressor.jpg'),(541,11444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:1012;s:4:\"file\";s:34:\"2014/11/design_desc-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(542,11445,'_wp_attached_file','2014/11/fusion_core_sm1-compressor.jpg'),(543,11445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:257;s:6:\"height\";i:171;s:4:\"file\";s:38:\"2014/11/fusion_core_sm1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(544,11447,'_wp_attached_file','2014/11/ipads-compressor.jpg'),(545,11447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:343;s:4:\"file\";s:28:\"2014/11/ipads-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(546,11448,'_wp_attached_file','2014/11/wood_dark_bkgd_bw1-compressor.jpg'),(547,11448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:356;s:6:\"height\";i:786;s:4:\"file\";s:41:\"2014/11/wood_dark_bkgd_bw1-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(548,11449,'_wp_attached_file','2014/11/review_bkgd321-compressor.jpg'),(549,11449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:37:\"2014/11/review_bkgd321-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(550,11450,'_wp_attached_file','2014/11/review_tf1-compressor.png'),(551,11450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:87;s:4:\"file\";s:33:\"2014/11/review_tf1-compressor.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:{}}}'),(552,11452,'_wp_attached_file','2014/11/support_review-compressor.png'),(553,11452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:664;s:4:\"file\";s:37:\"2014/11/support_review-compressor.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:{}}}'),(554,11456,'_wp_attached_file','2014/11/avada_graphic_24.jpg'),(555,11456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:714;s:4:\"file\";s:28:\"2014/11/avada_graphic_24.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(556,11457,'_wp_attached_file','2014/11/woo_commerce_feature-compressor.jpg'),(557,11457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:521;s:4:\"file\";s:43:\"2014/11/woo_commerce_feature-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(558,11458,'_wp_attached_file','2014/11/fusion_builder2-compressor.png'),(559,11458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:518;s:4:\"file\";s:38:\"2014/11/fusion_builder2-compressor.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:{}}}'),(560,11459,'_wp_attached_file','2014/11/layouts_white-compressor.jpg'),(561,11459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:684;s:4:\"file\";s:36:\"2014/11/layouts_white-compressor.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(562,11462,'_wp_attached_file','2015/04/demos_cropped1-compressor.png'),(563,11462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1118;s:6:\"height\";i:397;s:4:\"file\";s:37:\"2015/04/demos_cropped1-compressor.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:{}}}'),(564,11471,'_wp_attached_file','2016/04/logo.png'),(565,11471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:24;s:4:\"file\";s:16:\"2016/04/logo.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:{}}}'),(566,11471,'FB_content',''),(567,11474,'_wp_attached_file','2016/04/logo_white_big.png'),(568,11474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:25;s:4:\"file\";s:26:\"2016/04/logo_white_big.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:{}}}'),(569,11474,'FB_content',''),(570,11475,'_menu_item_type','custom'),(571,11475,'_menu_item_menu_item_parent','0'),(572,11475,'_menu_item_object_id','11475'),(573,11475,'_menu_item_object','custom'),(574,11475,'_menu_item_target',''),(575,11475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(576,11475,'_menu_item_xfn',''),(577,11475,'_menu_item_url','#'),(578,11475,'_menu_item_fusion_menu_style',''),(579,11475,'_menu_item_fusion_megamenu_icon',''),(580,11475,'_menu_item_fusion_megamenu_status',''),(581,11475,'_menu_item_fusion_megamenu_width',''),(582,11475,'_menu_item_fusion_megamenu_columns','auto'),(583,11475,'_menu_item_fusion_megamenu_columnwidth',''),(584,11475,'_menu_item_fusion_megamenu_thumbnail',''),(585,11476,'_menu_item_type','custom'),(586,11476,'_menu_item_menu_item_parent','0'),(587,11476,'_menu_item_object_id','11476'),(588,11476,'_menu_item_object','custom'),(589,11476,'_menu_item_target',''),(590,11476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(591,11476,'_menu_item_xfn',''),(592,11476,'_menu_item_url','#'),(593,11476,'_menu_item_fusion_menu_style',''),(594,11476,'_menu_item_fusion_megamenu_icon',''),(595,11476,'_menu_item_fusion_megamenu_status','enabled'),(596,11476,'_menu_item_fusion_megamenu_width','fullwidth'),(597,11476,'_menu_item_fusion_megamenu_columns','4'),(598,11476,'_menu_item_fusion_megamenu_columnwidth',''),(599,11476,'_menu_item_fusion_megamenu_thumbnail',''),(600,11477,'_menu_item_type','custom'),(601,11477,'_menu_item_menu_item_parent','0'),(602,11477,'_menu_item_object_id','11477'),(603,11477,'_menu_item_object','custom'),(604,11477,'_menu_item_target',''),(605,11477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(606,11477,'_menu_item_xfn',''),(607,11477,'_menu_item_url','#'),(608,11477,'_menu_item_fusion_menu_style',''),(609,11477,'_menu_item_fusion_megamenu_icon',''),(610,11477,'_menu_item_fusion_megamenu_status',''),(611,11477,'_menu_item_fusion_megamenu_width','fullwidth'),(612,11477,'_menu_item_fusion_megamenu_columns','4'),(613,11477,'_menu_item_fusion_megamenu_columnwidth',''),(614,11477,'_menu_item_fusion_megamenu_thumbnail',''),(615,11478,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(616,11478,'pyre_project_url_text','View Project'),(617,11478,'pyre_copy_url','http://creattica.com'),(618,11478,'pyre_copy_url_text','From Creattica'),(619,11478,'pyre_page_title','yes'),(620,11478,'pyre_video',''),(621,11478,'pyre_width','half'),(622,11478,'pyre_video_url',''),(623,11478,'pyre_fimg_width',''),(624,11478,'pyre_fimg_height',''),(625,11478,'_thumbnail_id','3936'),(626,11478,'avada_post_views_count','43'),(627,11478,'pyre_portfolio_width_100','no'),(628,11478,'pyre_sidebar','no'),(629,11478,'pyre_sidebar_position','default'),(630,11478,'pyre_project_desc_title','yes'),(631,11478,'pyre_project_details','yes'),(632,11478,'pyre_image_rollover_icons','default'),(633,11478,'pyre_link_icon_url',''),(634,11478,'pyre_related_posts','yes'),(635,11478,'pyre_slider_type','no'),(636,11478,'pyre_slider','0'),(637,11478,'pyre_wooslider','0'),(638,11478,'pyre_flexslider','0'),(639,11478,'pyre_revslider','0'),(640,11478,'pyre_elasticslider','0'),(641,11478,'pyre_fallback',''),(642,11478,'pyre_page_bg_layout','default'),(643,11478,'pyre_page_bg',''),(644,11478,'pyre_page_bg_color',''),(645,11478,'pyre_page_bg_full','no'),(646,11478,'pyre_page_bg_repeat','repeat'),(647,11478,'pyre_wide_page_bg',''),(648,11478,'pyre_wide_page_bg_color',''),(649,11478,'pyre_wide_page_bg_full','no'),(650,11478,'pyre_wide_page_bg_repeat','repeat'),(651,11478,'pyre_header_bg',''),(652,11478,'pyre_header_bg_color',''),(653,11478,'pyre_header_bg_full','no'),(654,11478,'pyre_header_bg_repeat','repeat'),(655,11478,'pyre_page_title_text','yes'),(656,11478,'pyre_page_title_bar_bg',''),(657,11478,'pyre_page_title_bar_bg_retina',''),(658,11478,'pyre_page_title_bar_bg_full','no'),(659,11478,'pyre_page_title_bar_bg_color',''),(660,11478,'_thumbnail_id','3936'),(661,11478,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(662,11478,'pyre_project_url_text','View Project'),(663,11478,'pyre_copy_url','http://creattica.com'),(664,11478,'pyre_copy_url_text','From Creattica'),(665,11478,'pyre_page_title','yes'),(666,11478,'pyre_video',''),(667,11478,'pyre_width','half'),(668,11478,'pyre_video_url',''),(669,11478,'pyre_fimg_width',''),(670,11478,'pyre_fimg_height',''),(671,11478,'pyre_page_title_custom_text',''),(672,11478,'pyre_page_title_custom_subheader',''),(673,11478,'pyre_page_title_height',''),(674,11478,'pyre_page_title_bg_parallax','default'),(675,11478,'slide_template','default'),(676,11478,'fusion_builder_status','inactive'),(677,11478,'pyre_slider_position','default'),(678,11478,'pyre_show_first_featured_image','no'),(679,11478,'pyre_link_icon_target','no'),(680,11478,'pyre_display_header','yes'),(681,11478,'pyre_transparent_header','default'),(682,11478,'pyre_displayed_menu','default'),(683,11478,'pyre_display_footer','default'),(684,11478,'pyre_display_copyright','default'),(685,11478,'pyre_share_box','default'),(686,11478,'pyre_post_pagination','default'),(687,11478,'pyre_main_top_padding',''),(688,11478,'pyre_main_bottom_padding',''),(689,11478,'pyre_hundredp_padding',''),(690,11478,'pyre_avada_rev_styles','default'),(691,11478,'pyre_header_100_width','default'),(692,11478,'pyre_header_bg_opacity',''),(693,11478,'pyre_footer_100_width','default'),(694,11478,'pyre_sidebar_bg_color',''),(695,11478,'pyre_page_title_text_alignment','default'),(696,11478,'pyre_page_title_100_width','default'),(697,11478,'pyre_page_title_text_size',''),(698,11478,'pyre_page_title_custom_subheader_text_size',''),(699,11478,'pyre_page_title_font_color',''),(700,11478,'pyre_page_title_mobile_height',''),(701,11478,'pyre_page_title_bar_borders_color',''),(702,11478,'pyre_page_title_breadcrumbs_search_bar','default'),(703,11478,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(704,11478,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(705,11478,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(706,11478,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(707,11479,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(708,11479,'pyre_project_url_text','View Project'),(709,11479,'pyre_copy_url','http://creattica.com'),(710,11479,'pyre_copy_url_text','From Creattica'),(711,11479,'pyre_page_title','yes'),(712,11479,'pyre_video',''),(713,11479,'pyre_width','full'),(714,11479,'pyre_video_url',''),(715,11479,'_thumbnail_id','3895'),(716,11479,'pyre_fimg_width',''),(717,11479,'pyre_fimg_height',''),(718,11479,'avada_post_views_count','458'),(719,11479,'pyre_portfolio_width_100','no'),(720,11479,'pyre_sidebar','no'),(721,11479,'pyre_sidebar_position','default'),(722,11479,'pyre_project_desc_title','yes'),(723,11479,'pyre_project_details','yes'),(724,11479,'pyre_image_rollover_icons','default'),(725,11479,'pyre_link_icon_url',''),(726,11479,'pyre_related_posts','yes'),(727,11479,'pyre_slider_type','no'),(728,11479,'pyre_slider','0'),(729,11479,'pyre_wooslider','0'),(730,11479,'pyre_flexslider','0'),(731,11479,'pyre_revslider','0'),(732,11479,'pyre_elasticslider','0'),(733,11479,'pyre_fallback',''),(734,11479,'pyre_page_bg_layout','default'),(735,11479,'pyre_page_bg',''),(736,11479,'pyre_page_bg_color',''),(737,11479,'pyre_page_bg_full','no'),(738,11479,'pyre_page_bg_repeat','repeat'),(739,11479,'pyre_wide_page_bg',''),(740,11479,'pyre_wide_page_bg_color',''),(741,11479,'pyre_wide_page_bg_full','no'),(742,11479,'pyre_wide_page_bg_repeat','repeat'),(743,11479,'pyre_header_bg',''),(744,11479,'pyre_header_bg_color',''),(745,11479,'pyre_header_bg_full','no'),(746,11479,'pyre_header_bg_repeat','repeat'),(747,11479,'pyre_page_title_text','yes'),(748,11479,'pyre_page_title_bar_bg',''),(749,11479,'pyre_page_title_bar_bg_retina',''),(750,11479,'pyre_page_title_bar_bg_full','no'),(751,11479,'pyre_page_title_bar_bg_color',''),(752,11479,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(753,11479,'pyre_project_url_text','View Project'),(754,11479,'pyre_copy_url','http://creattica.com'),(755,11479,'pyre_copy_url_text','From Creattica'),(756,11479,'avada_post_views_count','0'),(757,11479,'_thumbnail_id','3405'),(758,11479,'pyre_page_title','yes'),(759,11479,'pyre_video',''),(760,11479,'pyre_width','full'),(761,11479,'pyre_video_url',''),(762,11479,'pyre_fimg_width',''),(763,11479,'pyre_fimg_height',''),(764,11479,'pyre_page_title_custom_text',''),(765,11479,'pyre_page_title_custom_subheader',''),(766,11479,'pyre_page_title_height',''),(767,11479,'pyre_page_title_bg_parallax','default'),(768,11479,'slide_template','default'),(769,11479,'fusion_builder_status','inactive'),(770,11479,'pyre_show_first_featured_image','no'),(771,11479,'pyre_link_icon_target','no'),(772,11479,'pyre_share_box','default'),(773,11479,'pyre_post_pagination','default'),(774,11479,'pyre_main_top_padding',''),(775,11479,'pyre_main_bottom_padding',''),(776,11479,'pyre_hundredp_padding',''),(777,11479,'pyre_slider_position','default'),(778,11479,'pyre_display_header','yes'),(779,11479,'pyre_header_100_width','default'),(780,11479,'pyre_header_bg_opacity',''),(781,11479,'pyre_displayed_menu','default'),(782,11479,'pyre_display_footer','default'),(783,11479,'pyre_display_copyright','default'),(784,11479,'pyre_footer_100_width','default'),(785,11479,'pyre_page_title_text_alignment','default'),(786,11479,'pyre_page_title_text_size',''),(787,11479,'pyre_page_title_custom_subheader_text_size',''),(788,11479,'pyre_page_title_font_color',''),(789,11479,'pyre_page_title_breadcrumbs_search_bar','default'),(790,11479,'pyre_avada_rev_styles','default'),(791,11479,'pyre_sidebar_bg_color',''),(792,11479,'pyre_page_title_100_width','default'),(793,11479,'pyre_page_title_mobile_height',''),(794,11479,'pyre_page_title_bar_borders_color',''),(795,11479,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(796,11479,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(797,11479,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(798,11479,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(799,11480,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(800,11480,'pyre_project_url_text','View Project'),(801,11480,'pyre_copy_url','http://creattica.com'),(802,11480,'pyre_copy_url_text','From Creattica'),(803,11480,'pyre_page_title','yes'),(804,11480,'pyre_video',''),(805,11480,'pyre_width','full'),(806,11480,'pyre_video_url',''),(807,11480,'_thumbnail_id','3894'),(808,11480,'pyre_fimg_width',''),(809,11480,'pyre_fimg_height',''),(810,11480,'avada_post_views_count','43'),(811,11480,'pyre_portfolio_width_100','no'),(812,11480,'pyre_sidebar','no'),(813,11480,'pyre_sidebar_position','default'),(814,11480,'pyre_project_desc_title','yes'),(815,11480,'pyre_project_details','yes'),(816,11480,'pyre_image_rollover_icons','default'),(817,11480,'pyre_link_icon_url',''),(818,11480,'pyre_related_posts','yes'),(819,11480,'pyre_slider_type','no'),(820,11480,'pyre_slider','0'),(821,11480,'pyre_wooslider','0'),(822,11480,'pyre_flexslider','0'),(823,11480,'pyre_revslider','0'),(824,11480,'pyre_elasticslider','0'),(825,11480,'pyre_fallback',''),(826,11480,'pyre_page_bg_layout','default'),(827,11480,'pyre_page_bg',''),(828,11480,'pyre_page_bg_color',''),(829,11480,'pyre_page_bg_full','no'),(830,11480,'pyre_page_bg_repeat','repeat'),(831,11480,'pyre_wide_page_bg',''),(832,11480,'pyre_wide_page_bg_color',''),(833,11480,'pyre_wide_page_bg_full','no'),(834,11480,'pyre_wide_page_bg_repeat','repeat'),(835,11480,'pyre_header_bg',''),(836,11480,'pyre_header_bg_color',''),(837,11480,'pyre_header_bg_full','no'),(838,11480,'pyre_header_bg_repeat','repeat'),(839,11480,'pyre_page_title_text','yes'),(840,11480,'pyre_page_title_bar_bg',''),(841,11480,'pyre_page_title_bar_bg_retina',''),(842,11480,'pyre_page_title_bar_bg_full','no'),(843,11480,'pyre_page_title_bar_bg_color',''),(844,11480,'_thumbnail_id','3894'),(845,11480,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(846,11480,'pyre_project_url_text','View Project'),(847,11480,'pyre_copy_url','http://creattica.com'),(848,11480,'pyre_copy_url_text','From Creattica'),(849,11480,'pyre_page_title','yes'),(850,11480,'pyre_video',''),(851,11480,'pyre_width','full'),(852,11480,'pyre_video_url',''),(853,11480,'pyre_fimg_width',''),(854,11480,'pyre_fimg_height',''),(855,11480,'pyre_page_title_custom_text',''),(856,11480,'pyre_page_title_custom_subheader',''),(857,11480,'pyre_page_title_height',''),(858,11480,'pyre_page_title_bg_parallax','default'),(859,11480,'slide_template','default'),(860,11480,'fusion_builder_status','inactive'),(861,11480,'pyre_slider_position','default'),(862,11480,'pyre_show_first_featured_image','no'),(863,11480,'pyre_link_icon_target','no'),(864,11480,'pyre_display_header','yes'),(865,11480,'pyre_transparent_header','default'),(866,11480,'pyre_displayed_menu','default'),(867,11480,'pyre_display_footer','default'),(868,11480,'pyre_display_copyright','default'),(869,11480,'pyre_share_box','default'),(870,11480,'pyre_post_pagination','default'),(871,11480,'pyre_main_top_padding',''),(872,11480,'pyre_main_bottom_padding',''),(873,11480,'pyre_hundredp_padding',''),(874,11480,'pyre_header_100_width','default'),(875,11480,'pyre_header_bg_opacity',''),(876,11480,'pyre_footer_100_width','default'),(877,11480,'pyre_page_title_text_alignment','default'),(878,11480,'pyre_page_title_text_size',''),(879,11480,'pyre_page_title_custom_subheader_text_size',''),(880,11480,'pyre_page_title_font_color',''),(881,11480,'pyre_page_title_breadcrumbs_search_bar','default'),(882,11480,'pyre_avada_rev_styles','default'),(883,11480,'pyre_sidebar_bg_color',''),(884,11480,'pyre_page_title_100_width','default'),(885,11480,'pyre_page_title_mobile_height',''),(886,11480,'pyre_page_title_bar_borders_color',''),(887,11480,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(888,11480,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(889,11480,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(890,11480,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(891,11481,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(892,11481,'pyre_project_url_text','View Project'),(893,11481,'pyre_copy_url','http://creattica.com'),(894,11481,'pyre_copy_url_text','From Creattica'),(895,11481,'pyre_page_title','yes'),(896,11481,'pyre_video',''),(897,11481,'pyre_width','full'),(898,11481,'pyre_video_url',''),(899,11481,'_thumbnail_id','3892'),(900,11481,'pyre_fimg_width',''),(901,11481,'pyre_fimg_height',''),(902,11481,'avada_post_views_count','26'),(903,11481,'pyre_portfolio_width_100','no'),(904,11481,'pyre_sidebar','no'),(905,11481,'pyre_sidebar_position','default'),(906,11481,'pyre_project_desc_title','yes'),(907,11481,'pyre_project_details','yes'),(908,11481,'pyre_image_rollover_icons','default'),(909,11481,'pyre_link_icon_url',''),(910,11481,'pyre_related_posts','yes'),(911,11481,'pyre_slider_type','no'),(912,11481,'pyre_slider','0'),(913,11481,'pyre_wooslider','0'),(914,11481,'pyre_flexslider','0'),(915,11481,'pyre_revslider','0'),(916,11481,'pyre_elasticslider','0'),(917,11481,'pyre_fallback',''),(918,11481,'pyre_page_bg_layout','default'),(919,11481,'pyre_page_bg',''),(920,11481,'pyre_page_bg_color',''),(921,11481,'pyre_page_bg_full','no'),(922,11481,'pyre_page_bg_repeat','repeat'),(923,11481,'pyre_wide_page_bg',''),(924,11481,'pyre_wide_page_bg_color',''),(925,11481,'pyre_wide_page_bg_full','no'),(926,11481,'pyre_wide_page_bg_repeat','repeat'),(927,11481,'pyre_header_bg',''),(928,11481,'pyre_header_bg_color',''),(929,11481,'pyre_header_bg_full','no'),(930,11481,'pyre_header_bg_repeat','repeat'),(931,11481,'pyre_page_title_text','yes'),(932,11481,'pyre_page_title_bar_bg',''),(933,11481,'pyre_page_title_bar_bg_retina',''),(934,11481,'pyre_page_title_bar_bg_full','no'),(935,11481,'pyre_page_title_bar_bg_color',''),(936,11481,'_thumbnail_id','3892'),(937,11481,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(938,11481,'pyre_project_url_text','View Project'),(939,11481,'pyre_copy_url','http://creattica.com'),(940,11481,'pyre_copy_url_text','From Creattica'),(941,11481,'pyre_page_title','yes'),(942,11481,'pyre_video',''),(943,11481,'pyre_width','full'),(944,11481,'pyre_video_url',''),(945,11481,'pyre_fimg_width',''),(946,11481,'pyre_fimg_height',''),(947,11481,'pyre_page_title_custom_text',''),(948,11481,'pyre_page_title_custom_subheader',''),(949,11481,'pyre_page_title_height',''),(950,11481,'pyre_page_title_bg_parallax','default'),(951,11481,'slide_template','default'),(952,11481,'fusion_builder_status','inactive'),(953,11481,'pyre_slider_position','default'),(954,11481,'pyre_show_first_featured_image','no'),(955,11481,'pyre_link_icon_target','no'),(956,11481,'pyre_display_header','yes'),(957,11481,'pyre_transparent_header','default'),(958,11481,'pyre_displayed_menu','default'),(959,11481,'pyre_display_footer','default'),(960,11481,'pyre_display_copyright','default'),(961,11481,'pyre_share_box','default'),(962,11481,'pyre_post_pagination','default'),(963,11481,'pyre_main_top_padding',''),(964,11481,'pyre_main_bottom_padding',''),(965,11481,'pyre_hundredp_padding',''),(966,11481,'pyre_avada_rev_styles','default'),(967,11481,'pyre_header_100_width','default'),(968,11481,'pyre_header_bg_opacity',''),(969,11481,'pyre_footer_100_width','default'),(970,11481,'pyre_sidebar_bg_color',''),(971,11481,'pyre_page_title_text_alignment','default'),(972,11481,'pyre_page_title_100_width','default'),(973,11481,'pyre_page_title_text_size',''),(974,11481,'pyre_page_title_custom_subheader_text_size',''),(975,11481,'pyre_page_title_font_color',''),(976,11481,'pyre_page_title_mobile_height',''),(977,11481,'pyre_page_title_bar_borders_color',''),(978,11481,'pyre_page_title_breadcrumbs_search_bar','default'),(979,11481,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(980,11481,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(981,11481,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(982,11481,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(983,11482,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(984,11482,'pyre_project_url_text','View Project'),(985,11482,'pyre_copy_url','http://creattica.com'),(986,11482,'pyre_copy_url_text','From Creattica'),(987,11482,'pyre_page_title','yes'),(988,11482,'pyre_video',''),(989,11482,'pyre_width','half'),(990,11482,'pyre_video_url',''),(991,11482,'_thumbnail_id','3893'),(992,11482,'pyre_fimg_width',''),(993,11482,'pyre_fimg_height',''),(994,11482,'avada_post_views_count','231'),(995,11482,'pyre_portfolio_width_100','no'),(996,11482,'pyre_sidebar','no'),(997,11482,'pyre_sidebar_position','default'),(998,11482,'pyre_project_desc_title','yes'),(999,11482,'pyre_project_details','yes'),(1000,11482,'pyre_image_rollover_icons','default'),(1001,11482,'pyre_link_icon_url',''),(1002,11482,'pyre_related_posts','yes'),(1003,11482,'pyre_slider_type','no'),(1004,11482,'pyre_slider','0'),(1005,11482,'pyre_wooslider','0'),(1006,11482,'pyre_flexslider','0'),(1007,11482,'pyre_revslider','0'),(1008,11482,'pyre_elasticslider','0'),(1009,11482,'pyre_fallback',''),(1010,11482,'pyre_page_bg_layout','default'),(1011,11482,'pyre_page_bg',''),(1012,11482,'pyre_page_bg_color',''),(1013,11482,'pyre_page_bg_full','no'),(1014,11482,'pyre_page_bg_repeat','repeat'),(1015,11482,'pyre_wide_page_bg',''),(1016,11482,'pyre_wide_page_bg_color',''),(1017,11482,'pyre_wide_page_bg_full','no'),(1018,11482,'pyre_wide_page_bg_repeat','repeat'),(1019,11482,'pyre_header_bg',''),(1020,11482,'pyre_header_bg_color',''),(1021,11482,'pyre_header_bg_full','no'),(1022,11482,'pyre_header_bg_repeat','repeat'),(1023,11482,'pyre_page_title_text','yes'),(1024,11482,'pyre_page_title_bar_bg',''),(1025,11482,'pyre_page_title_bar_bg_retina',''),(1026,11482,'pyre_page_title_bar_bg_full','no'),(1027,11482,'pyre_page_title_bar_bg_color',''),(1028,11482,'_thumbnail_id','3893'),(1029,11482,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(1030,11482,'pyre_project_url_text','View Project'),(1031,11482,'pyre_copy_url','http://creattica.com'),(1032,11482,'pyre_copy_url_text','From Creattica'),(1033,11482,'pyre_page_title','yes'),(1034,11482,'pyre_video',''),(1035,11482,'pyre_width','half'),(1036,11482,'pyre_video_url',''),(1037,11482,'pyre_fimg_width',''),(1038,11482,'pyre_fimg_height',''),(1039,11482,'pyre_page_title_custom_text',''),(1040,11482,'pyre_page_title_custom_subheader',''),(1041,11482,'pyre_page_title_height',''),(1042,11482,'pyre_page_title_bg_parallax','default'),(1043,11482,'slide_template','default'),(1044,11482,'fusion_builder_status','inactive'),(1045,11482,'pyre_slider_position','default'),(1046,11482,'pyre_show_first_featured_image','no'),(1047,11482,'pyre_link_icon_target','no'),(1048,11482,'pyre_display_header','yes'),(1049,11482,'pyre_transparent_header','default'),(1050,11482,'pyre_displayed_menu','default'),(1051,11482,'pyre_display_footer','default'),(1052,11482,'pyre_display_copyright','default'),(1053,11482,'pyre_share_box','default'),(1054,11482,'pyre_post_pagination','default'),(1055,11482,'pyre_main_top_padding',''),(1056,11482,'pyre_main_bottom_padding',''),(1057,11482,'pyre_hundredp_padding',''),(1058,11482,'pyre_avada_rev_styles','default'),(1059,11482,'pyre_header_100_width','default'),(1060,11482,'pyre_header_bg_opacity',''),(1061,11482,'pyre_footer_100_width','default'),(1062,11482,'pyre_sidebar_bg_color',''),(1063,11482,'pyre_page_title_text_alignment','default'),(1064,11482,'pyre_page_title_100_width','default'),(1065,11482,'pyre_page_title_text_size',''),(1066,11482,'pyre_page_title_custom_subheader_text_size',''),(1067,11482,'pyre_page_title_font_color',''),(1068,11482,'pyre_page_title_mobile_height',''),(1069,11482,'pyre_page_title_bar_borders_color',''),(1070,11482,'pyre_page_title_breadcrumbs_search_bar','default'),(1071,11482,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1072,11482,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(1073,11482,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1074,11482,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1075,11483,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(1076,11483,'pyre_project_url_text','View Project'),(1077,11483,'pyre_copy_url','http://creattica.com'),(1078,11483,'pyre_copy_url_text','From Creattica'),(1079,11483,'pyre_page_title','yes'),(1080,11483,'pyre_video',''),(1081,11483,'pyre_width','full'),(1082,11483,'pyre_video_url','http://vimeo.com/8245346'),(1083,11483,'_thumbnail_id','3891'),(1084,11483,'pyre_fimg_width',''),(1085,11483,'pyre_fimg_height',''),(1086,11483,'avada_post_views_count','64'),(1087,11483,'pyre_portfolio_width_100','no'),(1088,11483,'pyre_sidebar','no'),(1089,11483,'pyre_sidebar_position','default'),(1090,11483,'pyre_project_desc_title','yes'),(1091,11483,'pyre_project_details','yes'),(1092,11483,'pyre_image_rollover_icons','default'),(1093,11483,'pyre_link_icon_url',''),(1094,11483,'pyre_related_posts','yes'),(1095,11483,'pyre_slider_type','no'),(1096,11483,'pyre_slider','0'),(1097,11483,'pyre_wooslider','0'),(1098,11483,'pyre_flexslider','0'),(1099,11483,'pyre_revslider','0'),(1100,11483,'pyre_elasticslider','0'),(1101,11483,'pyre_fallback',''),(1102,11483,'pyre_page_bg_layout','default'),(1103,11483,'pyre_page_bg',''),(1104,11483,'pyre_page_bg_color',''),(1105,11483,'pyre_page_bg_full','no'),(1106,11483,'pyre_page_bg_repeat','repeat'),(1107,11483,'pyre_wide_page_bg',''),(1108,11483,'pyre_wide_page_bg_color',''),(1109,11483,'pyre_wide_page_bg_full','no'),(1110,11483,'pyre_wide_page_bg_repeat','repeat'),(1111,11483,'pyre_header_bg',''),(1112,11483,'pyre_header_bg_color',''),(1113,11483,'pyre_header_bg_full','no'),(1114,11483,'pyre_header_bg_repeat','repeat'),(1115,11483,'pyre_page_title_text','yes'),(1116,11483,'pyre_page_title_bar_bg',''),(1117,11483,'pyre_page_title_bar_bg_retina',''),(1118,11483,'pyre_page_title_bar_bg_full','no'),(1119,11483,'pyre_page_title_bar_bg_color',''),(1120,11483,'kd_featured-image-2_avada_portfolio_id','3892'),(1121,11483,'pyre_project_url','http://themeforest.net/user/ThemeFusion'),(1122,11483,'pyre_project_url_text','View Project'),(1123,11483,'pyre_copy_url','http://creattica.com'),(1124,11483,'pyre_copy_url_text','From Creattica'),(1125,11483,'pyre_page_title','yes'),(1126,11483,'pyre_video',''),(1127,11483,'pyre_fimg_width',''),(1128,11483,'pyre_fimg_height',''),(1129,11483,'_thumbnail_id','3405'),(1130,11483,'pyre_width','full'),(1131,11483,'pyre_video_url','http://vimeo.com/8245346'),(1132,11483,'pyre_page_title_custom_text',''),(1133,11483,'pyre_page_title_custom_subheader',''),(1134,11483,'pyre_page_title_height',''),(1135,11483,'pyre_page_title_bg_parallax','default'),(1136,11483,'slide_template','default'),(1137,11483,'fusion_builder_status','inactive'),(1138,11483,'pyre_slider_position','default'),(1139,11483,'pyre_show_first_featured_image','no'),(1140,11483,'pyre_link_icon_target','no'),(1141,11483,'pyre_display_header','yes'),(1142,11483,'pyre_transparent_header','default'),(1143,11483,'pyre_displayed_menu','default'),(1144,11483,'pyre_display_footer','default'),(1145,11483,'pyre_display_copyright','default'),(1146,11483,'pyre_share_box','default'),(1147,11483,'pyre_post_pagination','default'),(1148,11483,'pyre_main_top_padding',''),(1149,11483,'pyre_main_bottom_padding',''),(1150,11483,'pyre_hundredp_padding',''),(1151,11483,'pyre_header_100_width','default'),(1152,11483,'pyre_header_bg_opacity',''),(1153,11483,'pyre_footer_100_width','default'),(1154,11483,'pyre_page_title_text_alignment','default'),(1155,11483,'pyre_page_title_text_size',''),(1156,11483,'pyre_page_title_custom_subheader_text_size',''),(1157,11483,'pyre_page_title_font_color',''),(1158,11483,'pyre_page_title_breadcrumbs_search_bar','default'),(1159,11483,'pyre_avada_rev_styles','default'),(1160,11483,'pyre_sidebar_bg_color',''),(1161,11483,'pyre_page_title_100_width','default'),(1162,11483,'pyre_page_title_mobile_height',''),(1163,11483,'pyre_page_title_bar_borders_color',''),(1164,11483,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1165,11483,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(1166,11483,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1167,11483,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1168,1876,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1169,1876,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1170,1876,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1171,1876,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1172,1877,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1173,1877,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1174,1877,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1175,1877,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1176,1878,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1177,1878,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1178,1878,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1179,1878,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1180,1879,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1181,1879,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1182,1879,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1183,1879,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1184,1880,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1185,1880,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1186,1880,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1187,1880,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1188,1881,'avada_post_views_count','0'),(1189,1881,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1190,1881,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1191,1881,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(1192,1881,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1193,11484,'_wp_attached_file','2016/04/megamenu_image.jpg'),(1194,11484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:138;s:4:\"file\";s:26:\"2016/04/megamenu_image.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1195,11484,'FB_content',''),(1196,11485,'_menu_item_type','custom'),(1197,11485,'_menu_item_menu_item_parent','0'),(1198,11485,'_menu_item_object_id','11485'),(1199,11485,'_menu_item_object','custom'),(1200,11485,'_menu_item_target',''),(1201,11485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1202,11485,'_menu_item_xfn',''),(1203,11485,'_menu_item_url','#'),(1204,11485,'_menu_item_fusion_menu_style',''),(1205,11485,'_menu_item_fusion_megamenu_icon',''),(1206,11485,'_menu_item_fusion_megamenu_status',''),(1207,11485,'_menu_item_fusion_megamenu_width',''),(1208,11485,'_menu_item_fusion_megamenu_columns','auto'),(1209,11485,'_menu_item_fusion_megamenu_columnwidth',''),(1210,11485,'_menu_item_fusion_megamenu_thumbnail',''),(1211,11486,'_menu_item_type','custom'),(1212,11486,'_menu_item_menu_item_parent','11477'),(1213,11486,'_menu_item_object_id','11486'),(1214,11486,'_menu_item_object','custom'),(1215,11486,'_menu_item_target',''),(1216,11486,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1217,11486,'_menu_item_xfn',''),(1218,11486,'_menu_item_url','http://fusion_home_url/404page'),(1219,11486,'_menu_item_fusion_megamenu_icon',''),(1220,11486,'_menu_item_fusion_megamenu_title',''),(1221,11486,'_menu_item_fusion_megamenu_widgetarea','0'),(1222,11486,'_menu_item_fusion_megamenu_columnwidth',''),(1223,11486,'_menu_item_fusion_megamenu_thumbnail',''),(1224,11487,'_menu_item_type','custom'),(1225,11487,'_menu_item_menu_item_parent','11596'),(1226,11487,'_menu_item_object_id','11487'),(1227,11487,'_menu_item_object','custom'),(1228,11487,'_menu_item_target',''),(1229,11487,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1230,11487,'_menu_item_xfn',''),(1231,11487,'_menu_item_url','#'),(1232,11487,'_menu_item_fusion_menu_style',''),(1233,11487,'_menu_item_fusion_megamenu_icon',''),(1234,11487,'_menu_item_fusion_megamenu_status','enabled'),(1235,11487,'_menu_item_fusion_megamenu_width','fullwidth'),(1236,11487,'_menu_item_fusion_megamenu_columns','auto'),(1237,11487,'_menu_item_fusion_megamenu_columnwidth',''),(1238,11487,'_menu_item_fusion_megamenu_thumbnail',''),(1239,11488,'_menu_item_type','custom'),(1240,11488,'_menu_item_menu_item_parent','0'),(1241,11488,'_menu_item_object_id','11488'),(1242,11488,'_menu_item_object','custom'),(1243,11488,'_menu_item_target',''),(1244,11488,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1245,11488,'_menu_item_xfn',''),(1246,11488,'_menu_item_url','#'),(1247,11488,'_menu_item_fusion_menu_style',''),(1248,11488,'_menu_item_fusion_megamenu_icon',''),(1249,11488,'_menu_item_fusion_megamenu_status',''),(1250,11488,'_menu_item_fusion_megamenu_width',''),(1251,11488,'_menu_item_fusion_megamenu_columns','auto'),(1252,11488,'_menu_item_fusion_megamenu_columnwidth',''),(1253,11488,'_menu_item_fusion_megamenu_thumbnail',''),(1254,11489,'_menu_item_type','custom'),(1255,11489,'_menu_item_menu_item_parent','0'),(1256,11489,'_menu_item_object_id','11489'),(1257,11489,'_menu_item_object','custom'),(1258,11489,'_menu_item_target',''),(1259,11489,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1260,11489,'_menu_item_xfn',''),(1261,11489,'_menu_item_url','#'),(1262,11489,'_menu_item_fusion_menu_style',''),(1263,11489,'_menu_item_fusion_megamenu_icon',''),(1264,11489,'_menu_item_fusion_megamenu_status',''),(1265,11489,'_menu_item_fusion_megamenu_width',''),(1266,11489,'_menu_item_fusion_megamenu_columns','auto'),(1267,11489,'_menu_item_fusion_megamenu_columnwidth',''),(1268,11489,'_menu_item_fusion_megamenu_thumbnail',''),(1269,11490,'_menu_item_type','custom'),(1270,11490,'_menu_item_menu_item_parent','0'),(1271,11490,'_menu_item_object_id','11490'),(1272,11490,'_menu_item_object','custom'),(1273,11490,'_menu_item_target',''),(1274,11490,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1275,11490,'_menu_item_xfn',''),(1276,11490,'_menu_item_url','http://fusion_home_url/'),(1277,11490,'_menu_item_fusion_menu_style',''),(1278,11490,'_menu_item_fusion_megamenu_icon',''),(1279,11490,'_menu_item_fusion_megamenu_status','enabled'),(1280,11490,'_menu_item_fusion_megamenu_width','fullwidth'),(1281,11490,'_menu_item_fusion_megamenu_columns','4'),(1282,11490,'_menu_item_fusion_megamenu_columnwidth',''),(1283,11490,'_menu_item_fusion_megamenu_thumbnail',''),(1284,11491,'_menu_item_type','custom'),(1285,11491,'_menu_item_menu_item_parent','0'),(1286,11491,'_menu_item_object_id','11491'),(1287,11491,'_menu_item_object','custom'),(1288,11491,'_menu_item_target',''),(1289,11491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1290,11491,'_menu_item_xfn',''),(1291,11491,'_menu_item_url','#intro'),(1292,11491,'_menu_item_fusion_menu_style',''),(1293,11491,'_menu_item_fusion_megamenu_icon',''),(1294,11491,'_menu_item_fusion_megamenu_status',''),(1295,11491,'_menu_item_fusion_megamenu_width',''),(1296,11491,'_menu_item_fusion_megamenu_columns','auto'),(1297,11491,'_menu_item_fusion_megamenu_thumbnail',''),(1298,11492,'_menu_item_type','custom'),(1299,11492,'_menu_item_menu_item_parent','0'),(1300,11492,'_menu_item_object_id','11492'),(1301,11492,'_menu_item_object','custom'),(1302,11492,'_menu_item_target',''),(1303,11492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1304,11492,'_menu_item_xfn',''),(1305,11492,'_menu_item_url','#features'),(1306,11492,'_menu_item_fusion_menu_style',''),(1307,11492,'_menu_item_fusion_megamenu_icon',''),(1308,11492,'_menu_item_fusion_megamenu_status',''),(1309,11492,'_menu_item_fusion_megamenu_width',''),(1310,11492,'_menu_item_fusion_megamenu_columns','auto'),(1311,11492,'_menu_item_fusion_megamenu_thumbnail',''),(1312,11493,'_menu_item_type','custom'),(1313,11493,'_menu_item_menu_item_parent','0'),(1314,11493,'_menu_item_object_id','11493'),(1315,11493,'_menu_item_object','custom'),(1316,11493,'_menu_item_target',''),(1317,11493,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1318,11493,'_menu_item_xfn',''),(1319,11493,'_menu_item_url','#pages'),(1320,11493,'_menu_item_fusion_menu_style',''),(1321,11493,'_menu_item_fusion_megamenu_icon',''),(1322,11493,'_menu_item_fusion_megamenu_status',''),(1323,11493,'_menu_item_fusion_megamenu_width',''),(1324,11493,'_menu_item_fusion_megamenu_columns','auto'),(1325,11493,'_menu_item_fusion_megamenu_thumbnail',''),(1326,11494,'_menu_item_type','custom'),(1327,11494,'_menu_item_menu_item_parent','0'),(1328,11494,'_menu_item_object_id','11494'),(1329,11494,'_menu_item_object','custom'),(1330,11494,'_menu_item_target',''),(1331,11494,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1332,11494,'_menu_item_xfn',''),(1333,11494,'_menu_item_url','#woocommerce'),(1334,11494,'_menu_item_fusion_menu_style',''),(1335,11494,'_menu_item_fusion_megamenu_icon',''),(1336,11494,'_menu_item_fusion_megamenu_status',''),(1337,11494,'_menu_item_fusion_megamenu_width',''),(1338,11494,'_menu_item_fusion_megamenu_columns','auto'),(1339,11494,'_menu_item_fusion_megamenu_thumbnail',''),(1340,11495,'_menu_item_type','custom'),(1341,11495,'_menu_item_menu_item_parent','0'),(1342,11495,'_menu_item_object_id','11495'),(1343,11495,'_menu_item_object','custom'),(1344,11495,'_menu_item_target',''),(1345,11495,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1346,11495,'_menu_item_xfn',''),(1347,11495,'_menu_item_url','#demo'),(1348,11495,'_menu_item_fusion_menu_style',''),(1349,11495,'_menu_item_fusion_megamenu_icon',''),(1350,11495,'_menu_item_fusion_megamenu_status',''),(1351,11495,'_menu_item_fusion_megamenu_width',''),(1352,11495,'_menu_item_fusion_megamenu_columns','auto'),(1353,11495,'_menu_item_fusion_megamenu_thumbnail',''),(1354,11496,'_menu_item_type','custom'),(1355,11496,'_menu_item_menu_item_parent','0'),(1356,11496,'_menu_item_object_id','11496'),(1357,11496,'_menu_item_object','custom'),(1358,11496,'_menu_item_target',''),(1359,11496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1360,11496,'_menu_item_xfn',''),(1361,11496,'_menu_item_url','#shortcodes'),(1362,11496,'_menu_item_fusion_menu_style',''),(1363,11496,'_menu_item_fusion_megamenu_icon',''),(1364,11496,'_menu_item_fusion_megamenu_status',''),(1365,11496,'_menu_item_fusion_megamenu_width',''),(1366,11496,'_menu_item_fusion_megamenu_columns','auto'),(1367,11496,'_menu_item_fusion_megamenu_thumbnail',''),(1368,11497,'_menu_item_type','custom'),(1369,11497,'_menu_item_menu_item_parent','0'),(1370,11497,'_menu_item_object_id','11497'),(1371,11497,'_menu_item_object','custom'),(1372,11497,'_menu_item_target',''),(1373,11497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1374,11497,'_menu_item_xfn',''),(1375,11497,'_menu_item_url','#reviews'),(1376,11497,'_menu_item_fusion_menu_style',''),(1377,11497,'_menu_item_fusion_megamenu_icon',''),(1378,11497,'_menu_item_fusion_megamenu_status',''),(1379,11497,'_menu_item_fusion_megamenu_width',''),(1380,11497,'_menu_item_fusion_megamenu_columns','auto'),(1381,11497,'_menu_item_fusion_megamenu_thumbnail',''),(1382,11498,'_menu_item_type','custom'),(1383,11498,'_menu_item_menu_item_parent','11490'),(1384,11498,'_menu_item_object_id','11498'),(1385,11498,'_menu_item_object','custom'),(1386,11498,'_menu_item_target',''),(1387,11498,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1388,11498,'_menu_item_xfn',''),(1389,11498,'_menu_item_url','#'),(1390,11498,'_menu_item_fusion_megamenu_icon',''),(1391,11498,'_menu_item_fusion_megamenu_title',''),(1392,11498,'_menu_item_fusion_megamenu_widgetarea','0'),(1393,11498,'_menu_item_fusion_megamenu_columnwidth',''),(1394,11498,'_menu_item_fusion_megamenu_thumbnail',''),(1395,11499,'_menu_item_type','custom'),(1396,11499,'_menu_item_menu_item_parent','11490'),(1397,11499,'_menu_item_object_id','11499'),(1398,11499,'_menu_item_object','custom'),(1399,11499,'_menu_item_target',''),(1400,11499,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1401,11499,'_menu_item_xfn',''),(1402,11499,'_menu_item_url','#'),(1403,11499,'_menu_item_fusion_megamenu_icon',''),(1404,11499,'_menu_item_fusion_megamenu_title',''),(1405,11499,'_menu_item_fusion_megamenu_widgetarea','0'),(1406,11499,'_menu_item_fusion_megamenu_columnwidth',''),(1407,11499,'_menu_item_fusion_megamenu_thumbnail',''),(1408,11500,'_menu_item_type','custom'),(1409,11500,'_menu_item_menu_item_parent','11490'),(1410,11500,'_menu_item_object_id','11500'),(1411,11500,'_menu_item_object','custom'),(1412,11500,'_menu_item_target',''),(1413,11500,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1414,11500,'_menu_item_xfn',''),(1415,11500,'_menu_item_url','#'),(1416,11500,'_menu_item_fusion_megamenu_icon',''),(1417,11500,'_menu_item_fusion_megamenu_title',''),(1418,11500,'_menu_item_fusion_megamenu_widgetarea','0'),(1419,11500,'_menu_item_fusion_megamenu_columnwidth',''),(1420,11500,'_menu_item_fusion_megamenu_thumbnail',''),(1421,11501,'_menu_item_type','custom'),(1422,11501,'_menu_item_menu_item_parent','11490'),(1423,11501,'_menu_item_object_id','11501'),(1424,11501,'_menu_item_object','custom'),(1425,11501,'_menu_item_target',''),(1426,11501,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1427,11501,'_menu_item_xfn',''),(1428,11501,'_menu_item_url','#'),(1429,11501,'_menu_item_fusion_megamenu_icon',''),(1430,11501,'_menu_item_fusion_megamenu_title',''),(1431,11501,'_menu_item_fusion_megamenu_widgetarea','0'),(1432,11501,'_menu_item_fusion_megamenu_columnwidth',''),(1433,11501,'_menu_item_fusion_megamenu_thumbnail',''),(1434,11502,'_menu_item_type','custom'),(1435,11502,'_menu_item_menu_item_parent','11485'),(1436,11502,'_menu_item_object_id','11502'),(1437,11502,'_menu_item_object','custom'),(1438,11502,'_menu_item_target',''),(1439,11502,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1440,11502,'_menu_item_xfn',''),(1441,11502,'_menu_item_url','#'),(1442,11502,'_menu_item_fusion_megamenu_icon',''),(1443,11502,'_menu_item_fusion_megamenu_title',''),(1444,11502,'_menu_item_fusion_megamenu_widgetarea','0'),(1445,11502,'_menu_item_fusion_megamenu_columnwidth',''),(1446,11502,'_menu_item_fusion_megamenu_thumbnail',''),(1447,11503,'_menu_item_type','custom'),(1448,11503,'_menu_item_menu_item_parent','11477'),(1449,11503,'_menu_item_object_id','11503'),(1450,11503,'_menu_item_object','custom'),(1451,11503,'_menu_item_target',''),(1452,11503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1453,11503,'_menu_item_xfn',''),(1454,11503,'_menu_item_url','http://fusion_home_url/author/admin/'),(1455,11503,'_menu_item_fusion_megamenu_icon',''),(1456,11503,'_menu_item_fusion_megamenu_title',''),(1457,11503,'_menu_item_fusion_megamenu_widgetarea','0'),(1458,11503,'_menu_item_fusion_megamenu_columnwidth',''),(1459,11503,'_menu_item_fusion_megamenu_thumbnail',''),(1460,11504,'_menu_item_type','custom'),(1461,11504,'_menu_item_menu_item_parent','11477'),(1462,11504,'_menu_item_object_id','11504'),(1463,11504,'_menu_item_object','custom'),(1464,11504,'_menu_item_target',''),(1465,11504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1466,11504,'_menu_item_xfn',''),(1467,11504,'_menu_item_url','http://fusion_home_url/?s=lorem'),(1468,11504,'_menu_item_fusion_megamenu_icon',''),(1469,11504,'_menu_item_fusion_megamenu_title',''),(1470,11504,'_menu_item_fusion_megamenu_widgetarea','0'),(1471,11504,'_menu_item_fusion_megamenu_columnwidth',''),(1472,11504,'_menu_item_fusion_megamenu_thumbnail',''),(1473,11505,'_menu_item_type','custom'),(1474,11505,'_menu_item_menu_item_parent','11488'),(1475,11505,'_menu_item_object_id','11505'),(1476,11505,'_menu_item_object','custom'),(1477,11505,'_menu_item_target',''),(1478,11505,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1479,11505,'_menu_item_xfn',''),(1480,11505,'_menu_item_url','#'),(1481,11505,'_menu_item_fusion_megamenu_icon',''),(1482,11505,'_menu_item_fusion_megamenu_title',''),(1483,11505,'_menu_item_fusion_megamenu_widgetarea','0'),(1484,11505,'_menu_item_fusion_megamenu_columnwidth',''),(1485,11505,'_menu_item_fusion_megamenu_thumbnail',''),(1486,11506,'_menu_item_type','custom'),(1487,11506,'_menu_item_menu_item_parent','11488'),(1488,11506,'_menu_item_object_id','11506'),(1489,11506,'_menu_item_object','custom'),(1490,11506,'_menu_item_target',''),(1491,11506,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1492,11506,'_menu_item_xfn',''),(1493,11506,'_menu_item_url','#'),(1494,11506,'_menu_item_fusion_megamenu_icon',''),(1495,11506,'_menu_item_fusion_megamenu_title',''),(1496,11506,'_menu_item_fusion_megamenu_widgetarea','0'),(1497,11506,'_menu_item_fusion_megamenu_columnwidth',''),(1498,11506,'_menu_item_fusion_megamenu_thumbnail',''),(1499,11507,'_menu_item_type','custom'),(1500,11507,'_menu_item_menu_item_parent','11488'),(1501,11507,'_menu_item_object_id','11507'),(1502,11507,'_menu_item_object','custom'),(1503,11507,'_menu_item_target',''),(1504,11507,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1505,11507,'_menu_item_xfn',''),(1506,11507,'_menu_item_url','#'),(1507,11507,'_menu_item_fusion_megamenu_icon',''),(1508,11507,'_menu_item_fusion_megamenu_title',''),(1509,11507,'_menu_item_fusion_megamenu_widgetarea','0'),(1510,11507,'_menu_item_fusion_megamenu_columnwidth',''),(1511,11507,'_menu_item_fusion_megamenu_thumbnail',''),(1512,11508,'pyre_slider','0'),(1513,11508,'pyre_email',''),(1514,11508,'pyre_address',''),(1515,11508,'pyre_phone',''),(1516,11508,'pyre_gmap',''),(1517,11508,'_wp_page_template','100-width.php'),(1518,11508,'pyre_page_title','no'),(1519,11508,'pyre_slider_type','flex'),(1520,11508,'pyre_wooslider','final_full_width'),(1521,11508,'pyre_sidebar_position','right'),(1522,11508,'pyre_fallback',''),(1523,11508,'pyre_portfolio_category','0'),(1524,11508,'pyre_revslider','0'),(1525,11508,'pyre_flexslider','0'),(1526,11508,'pyre_page_bg_color',''),(1527,11508,'pyre_page_bg',''),(1528,11508,'pyre_page_bg_full','no'),(1529,11508,'pyre_page_bg_repeat','repeat'),(1530,11508,'pyre_page_title_bar_bg',''),(1531,11508,'pyre_full_width','no'),(1532,11508,'pyre_elasticslider','0'),(1533,11508,'pyre_page_title_bar_bg_color',''),(1534,11508,'avada_post_views_count','157'),(1535,11508,'pyre_portfolio_excerpt',''),(1536,11508,'pyre_portfolio_full_width','yes'),(1537,11508,'pyre_portfolio_sidebar_position','default'),(1538,11508,'pyre_portfolio_filters','yes'),(1539,11508,'pyre_page_bg_layout','default'),(1540,11508,'pyre_wide_page_bg',''),(1541,11508,'pyre_wide_page_bg_color',''),(1542,11508,'pyre_wide_page_bg_full','no'),(1543,11508,'pyre_wide_page_bg_repeat','repeat'),(1544,11508,'pyre_header_bg',''),(1545,11508,'pyre_header_bg_color',''),(1546,11508,'pyre_header_bg_full','no'),(1547,11508,'pyre_header_bg_repeat','repeat'),(1548,11508,'pyre_page_title_text','yes'),(1549,11508,'pyre_page_title_bar_bg_retina',''),(1550,11508,'pyre_page_title_bar_bg_full','no'),(1551,11508,'pyre_image_rollover_icons','linkzoom'),(1552,11508,'pyre_link_icon_url',''),(1553,11508,'pyre_portfolio_category','0'),(1554,11508,'pyre_slider','0'),(1555,11508,'pyre_email',''),(1556,11508,'pyre_address',''),(1557,11508,'pyre_phone',''),(1558,11508,'pyre_gmap',''),(1559,11508,'_wp_page_template','100-width.php'),(1560,11508,'avada_post_views_count','0'),(1561,11508,'pyre_page_title','no'),(1562,11508,'pyre_slider_type','flex'),(1563,11508,'pyre_wooslider','final_full_width'),(1564,11508,'pyre_sidebar_position','right'),(1565,11508,'pyre_fallback',''),(1566,11508,'pyre_elasticslider','0'),(1567,11508,'pyre_revslider','0'),(1568,11508,'pyre_flexslider','0'),(1569,11508,'pyre_page_bg_color',''),(1570,11508,'pyre_page_bg',''),(1571,11508,'pyre_page_bg_full','no'),(1572,11508,'pyre_page_bg_repeat','repeat'),(1573,11508,'pyre_page_title_bar_bg',''),(1574,11508,'pyre_full_width','no'),(1575,11508,'pyre_page_title_bar_bg_color',''),(1576,11508,'slide_template','default'),(1577,11508,'pyre_slider_position','default'),(1578,11508,'pyre_display_header','yes'),(1579,11508,'pyre_transparent_header','default'),(1580,11508,'pyre_displayed_menu','default'),(1581,11508,'pyre_display_footer','default'),(1582,11508,'pyre_display_copyright','default'),(1583,11508,'pyre_main_top_padding',''),(1584,11508,'pyre_main_bottom_padding','0px'),(1585,11508,'pyre_hundredp_padding',''),(1586,11508,'pyre_page_title_custom_text',''),(1587,11508,'pyre_page_title_custom_subheader',''),(1588,11508,'pyre_page_title_height',''),(1589,11508,'pyre_page_title_bg_parallax','default'),(1590,11508,'fusion_builder_status','active'),(1591,11508,'pyre_portfolio_featured_image_size','default'),(1592,11508,'pyre_portfolio_content_length','default'),(1593,11508,'pyre_portfolio_text_layout','default'),(1594,11508,'pyre_show_first_featured_image','no'),(1595,11508,'pyre_header_100_width','default'),(1596,11508,'pyre_header_bg_opacity',''),(1597,11508,'pyre_footer_100_width','default'),(1598,11508,'pyre_portfolio_width_100','no'),(1599,11508,'pyre_portfolio_column_spacing',''),(1600,11508,'pyre_page_title_text_alignment','default'),(1601,11508,'pyre_page_title_text_size',''),(1602,11508,'pyre_page_title_custom_subheader_text_size',''),(1603,11508,'pyre_page_title_font_color',''),(1604,11508,'pyre_page_title_breadcrumbs_search_bar','default'),(1605,11508,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1606,11508,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(1607,11508,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1608,11508,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1609,11509,'pyre_slider','0'),(1610,11509,'pyre_email',''),(1611,11509,'pyre_address',''),(1612,11509,'pyre_phone',''),(1613,11509,'pyre_gmap',''),(1614,11509,'_wp_page_template','default'),(1615,11509,'pyre_page_title','yes'),(1616,11509,'pyre_slider_type','no'),(1617,11509,'pyre_wooslider','0'),(1618,11509,'pyre_fallback',''),(1619,11509,'pyre_sidebar_position','right'),(1620,11509,'pyre_portfolio_category','0'),(1621,11509,'pyre_flexslider','0'),(1622,11509,'pyre_revslider','0'),(1623,11509,'pyre_page_bg_color',''),(1624,11509,'pyre_page_bg',''),(1625,11509,'pyre_page_bg_full','no'),(1626,11509,'pyre_page_bg_repeat','repeat'),(1627,11509,'pyre_page_title_bar_bg',''),(1628,11509,'pyre_full_width','no'),(1629,11509,'pyre_elasticslider','0'),(1630,11509,'pyre_page_title_bar_bg_color',''),(1631,11509,'pyre_portfolio_excerpt',''),(1632,11509,'pyre_portfolio_full_width','yes'),(1633,11509,'pyre_portfolio_sidebar_position','default'),(1634,11509,'pyre_portfolio_filters','yes'),(1635,11509,'pyre_page_bg_layout','default'),(1636,11509,'pyre_wide_page_bg',''),(1637,11509,'pyre_wide_page_bg_color',''),(1638,11509,'pyre_wide_page_bg_full','no'),(1639,11509,'pyre_wide_page_bg_repeat','repeat'),(1640,11509,'pyre_header_bg',''),(1641,11509,'pyre_header_bg_color',''),(1642,11509,'pyre_header_bg_full','no'),(1643,11509,'pyre_header_bg_repeat','repeat'),(1644,11509,'pyre_page_title_text','yes'),(1645,11509,'pyre_page_title_bar_bg_retina',''),(1646,11509,'pyre_page_title_bar_bg_full','no'),(1647,11509,'pyre_image_rollover_icons','linkzoom'),(1648,11509,'pyre_link_icon_url',''),(1649,11509,'pyre_slider','0'),(1650,11509,'pyre_email',''),(1651,11509,'pyre_address',''),(1652,11509,'pyre_phone',''),(1653,11509,'pyre_gmap',''),(1654,11509,'_wp_page_template','default'),(1655,11509,'pyre_link_icon_url',''),(1656,11509,'pyre_image_rollover_icons','linkzoom'),(1657,11509,'pyre_page_title_bar_bg_full','no'),(1658,11509,'pyre_page_title_bar_bg_retina',''),(1659,11509,'pyre_page_title_text','yes'),(1660,11509,'pyre_header_bg_repeat','repeat'),(1661,11509,'pyre_header_bg_full','no'),(1662,11509,'pyre_header_bg_color',''),(1663,11509,'pyre_header_bg',''),(1664,11509,'pyre_wide_page_bg_repeat','repeat'),(1665,11509,'pyre_wide_page_bg_full','no'),(1666,11509,'pyre_wide_page_bg_color',''),(1667,11509,'pyre_wide_page_bg',''),(1668,11509,'pyre_page_bg_layout','default'),(1669,11509,'pyre_portfolio_filters','yes'),(1670,11509,'pyre_portfolio_sidebar_position','default'),(1671,11509,'pyre_portfolio_full_width','yes'),(1672,11509,'pyre_portfolio_excerpt',''),(1673,11509,'pyre_page_title','yes'),(1674,11509,'pyre_slider_type','no'),(1675,11509,'pyre_wooslider','0'),(1676,11509,'pyre_fallback',''),(1677,11509,'pyre_sidebar_position','right'),(1678,11509,'pyre_portfolio_category','0'),(1679,11509,'pyre_flexslider','0'),(1680,11509,'pyre_revslider','0'),(1681,11509,'pyre_page_bg_color',''),(1682,11509,'pyre_page_bg',''),(1683,11509,'pyre_page_bg_full','no'),(1684,11509,'pyre_page_bg_repeat','repeat'),(1685,11509,'pyre_page_title_bar_bg',''),(1686,11509,'pyre_full_width','no'),(1687,11509,'pyre_elasticslider','0'),(1688,11509,'pyre_page_title_bar_bg_color',''),(1689,11509,'slide_template','default'),(1690,11509,'fusion_builder_status','active'),(1691,11509,'pyre_slider_position','default'),(1692,11509,'pyre_main_top_padding',''),(1693,11509,'pyre_main_bottom_padding',''),(1694,11509,'pyre_hundredp_padding',''),(1695,11509,'pyre_display_header','yes'),(1696,11509,'pyre_transparent_header','default'),(1697,11509,'pyre_displayed_menu','default'),(1698,11509,'pyre_display_footer','default'),(1699,11509,'pyre_display_copyright','default'),(1700,11509,'pyre_portfolio_featured_image_size','default'),(1701,11509,'pyre_page_title_custom_text',''),(1702,11509,'pyre_page_title_custom_subheader',''),(1703,11509,'pyre_page_title_height',''),(1704,11509,'pyre_page_title_bg_parallax','default'),(1705,11509,'pyre_portfolio_content_length','default'),(1706,11509,'pyre_portfolio_text_layout','default'),(1707,11509,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1708,11509,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(1709,11509,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1710,11509,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1711,11510,'pyre_slider','0'),(1712,11510,'pyre_email',''),(1713,11510,'pyre_address',''),(1714,11510,'pyre_phone',''),(1715,11510,'pyre_gmap',''),(1716,11510,'_wp_page_template','default'),(1717,11510,'pyre_page_title','no'),(1718,11510,'pyre_slider_type','rev'),(1719,11510,'pyre_wooslider','0'),(1720,11510,'pyre_sidebar_position','right'),(1721,11510,'pyre_fallback',''),(1722,11510,'pyre_portfolio_category','0'),(1723,11510,'pyre_revslider','Avada_Full_Width'),(1724,11510,'pyre_flexslider','0'),(1725,11510,'pyre_page_bg_color',''),(1726,11510,'pyre_page_bg',''),(1727,11510,'pyre_page_bg_full','no'),(1728,11510,'pyre_page_bg_repeat','repeat'),(1729,11510,'pyre_page_title_bar_bg',''),(1730,11510,'pyre_full_width','no'),(1731,11510,'pyre_page_title_bar_bg_color',''),(1732,11510,'pyre_elasticslider','0'),(1733,11510,'avada_post_views_count','124'),(1734,11510,'pyre_portfolio_excerpt',''),(1735,11510,'pyre_portfolio_full_width','yes'),(1736,11510,'pyre_portfolio_sidebar_position','default'),(1737,11510,'pyre_portfolio_filters','yes'),(1738,11510,'pyre_page_bg_layout','default'),(1739,11510,'pyre_wide_page_bg',''),(1740,11510,'pyre_wide_page_bg_color',''),(1741,11510,'pyre_wide_page_bg_full','no'),(1742,11510,'pyre_wide_page_bg_repeat','repeat'),(1743,11510,'pyre_header_bg',''),(1744,11510,'pyre_header_bg_color',''),(1745,11510,'pyre_header_bg_full','no'),(1746,11510,'pyre_header_bg_repeat','repeat'),(1747,11510,'pyre_page_title_text','yes'),(1748,11510,'pyre_page_title_bar_bg_retina',''),(1749,11510,'pyre_page_title_bar_bg_full','no'),(1750,11510,'pyre_image_rollover_icons','linkzoom'),(1751,11510,'pyre_link_icon_url',''),(1752,11510,'pyre_slider','0'),(1753,11510,'pyre_email',''),(1754,11510,'pyre_address',''),(1755,11510,'pyre_phone',''),(1756,11510,'pyre_gmap',''),(1757,11510,'_wp_page_template','default'),(1758,11510,'avada_post_views_count','0'),(1759,11510,'pyre_page_title','no'),(1760,11510,'pyre_slider_type','rev'),(1761,11510,'pyre_wooslider','0'),(1762,11510,'pyre_sidebar_position','right'),(1763,11510,'pyre_fallback',''),(1764,11510,'pyre_portfolio_category','0'),(1765,11510,'pyre_revslider','Avada_Full_Width'),(1766,11510,'pyre_flexslider','0'),(1767,11510,'pyre_page_bg_color',''),(1768,11510,'pyre_page_bg',''),(1769,11510,'pyre_page_bg_full','no'),(1770,11510,'pyre_page_bg_repeat','repeat'),(1771,11510,'pyre_page_title_bar_bg',''),(1772,11510,'pyre_elasticslider','0'),(1773,11510,'pyre_full_width','no'),(1774,11510,'pyre_page_title_bar_bg_color',''),(1775,11510,'slide_template','default'),(1776,11510,'pyre_slider_position','default'),(1777,11510,'pyre_display_header','yes'),(1778,11510,'pyre_transparent_header','default'),(1779,11510,'pyre_displayed_menu','default'),(1780,11510,'pyre_display_footer','default'),(1781,11510,'pyre_display_copyright','default'),(1782,11510,'pyre_main_top_padding',''),(1783,11510,'pyre_main_bottom_padding',''),(1784,11510,'pyre_hundredp_padding',''),(1785,11510,'pyre_page_title_custom_text',''),(1786,11510,'pyre_page_title_custom_subheader',''),(1787,11510,'pyre_page_title_height',''),(1788,11510,'pyre_page_title_bg_parallax','default'),(1789,11510,'fusion_builder_status','active'),(1790,11510,'pyre_portfolio_featured_image_size','default'),(1791,11510,'pyre_portfolio_content_length','default'),(1792,11510,'pyre_portfolio_text_layout','default'),(1793,11510,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1794,11510,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(1795,11510,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1796,11510,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1797,54,'pyre_slider','0'),(1798,54,'pyre_email',''),(1799,54,'pyre_address',''),(1800,54,'pyre_phone',''),(1801,54,'pyre_gmap',''),(1802,54,'_wp_page_template','side-navigation.php'),(1803,54,'pyre_page_title','yes'),(1804,54,'pyre_sidebar_position','left'),(1805,54,'pyre_slider_type','no'),(1806,54,'pyre_wooslider','0'),(1807,54,'pyre_fallback',''),(1808,54,'pyre_portfolio_category','0'),(1809,54,'pyre_flexslider','0'),(1810,54,'pyre_revslider','0'),(1811,54,'pyre_full_width','no'),(1812,54,'pyre_page_bg_color',''),(1813,54,'pyre_page_bg',''),(1814,54,'pyre_page_bg_full','no'),(1815,54,'pyre_page_bg_repeat','repeat'),(1816,54,'pyre_page_title_bar_bg',''),(1817,54,'pyre_page_title_bar_bg_color',''),(1818,54,'pyre_elasticslider','0'),(1819,54,'avada_post_views_count','29'),(1820,54,'pyre_portfolio_excerpt',''),(1821,54,'pyre_portfolio_full_width','yes'),(1822,54,'pyre_portfolio_sidebar_position','default'),(1823,54,'pyre_portfolio_filters','yes'),(1824,54,'pyre_page_bg_layout','default'),(1825,54,'pyre_wide_page_bg',''),(1826,54,'pyre_wide_page_bg_color',''),(1827,54,'pyre_wide_page_bg_full','no'),(1828,54,'pyre_wide_page_bg_repeat','repeat'),(1829,54,'pyre_header_bg',''),(1830,54,'pyre_header_bg_color',''),(1831,54,'pyre_header_bg_full','no'),(1832,54,'pyre_header_bg_repeat','repeat'),(1833,54,'pyre_page_title_text','yes'),(1834,54,'pyre_page_title_bar_bg_retina',''),(1835,54,'pyre_page_title_bar_bg_full','no'),(1836,54,'pyre_image_rollover_icons','linkzoom'),(1837,54,'pyre_link_icon_url',''),(1838,54,'pyre_page_title_custom_text',''),(1839,54,'pyre_page_title_custom_subheader',''),(1840,54,'pyre_page_title_height',''),(1841,54,'pyre_page_title_bg_parallax','default'),(1842,54,'slide_template','default'),(1843,54,'pyre_slider_position','default'),(1844,54,'pyre_display_header','yes'),(1845,54,'pyre_transparent_header','default'),(1846,54,'pyre_displayed_menu','default'),(1847,54,'pyre_display_footer','default'),(1848,54,'pyre_display_copyright','default'),(1849,54,'pyre_main_top_padding',''),(1850,54,'pyre_main_bottom_padding',''),(1851,54,'pyre_hundredp_padding',''),(1852,54,'fusion_builder_status','active'),(1853,54,'pyre_portfolio_content_length','default'),(1854,54,'pyre_portfolio_text_layout','default'),(1855,54,'pyre_portfolio_featured_image_size','default'),(1856,54,'pyre_avada_rev_styles','default'),(1857,54,'pyre_show_first_featured_image','no'),(1858,54,'pyre_header_100_width','default'),(1859,54,'pyre_header_bg_opacity',''),(1860,54,'pyre_footer_100_width','default'),(1861,54,'pyre_sidebar_bg_color',''),(1862,54,'pyre_portfolio_width_100','no'),(1863,54,'pyre_portfolio_column_spacing',''),(1864,54,'pyre_page_title_text_alignment','default'),(1865,54,'pyre_page_title_100_width','default'),(1866,54,'pyre_page_title_text_size',''),(1867,54,'pyre_page_title_custom_subheader_text_size',''),(1868,54,'pyre_page_title_font_color',''),(1869,54,'pyre_page_title_mobile_height',''),(1870,54,'pyre_page_title_bar_borders_color',''),(1871,54,'pyre_page_title_breadcrumbs_search_bar','default'),(1872,54,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1873,54,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(1874,54,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1875,54,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1876,11511,'pyre_slider','0'),(1877,11511,'pyre_email',''),(1878,11511,'pyre_address',''),(1879,11511,'pyre_phone',''),(1880,11511,'pyre_gmap',''),(1881,11511,'_wp_page_template','default'),(1882,11511,'pyre_page_title','yes'),(1883,11511,'pyre_slider_type','no'),(1884,11511,'pyre_wooslider','0'),(1885,11511,'pyre_fallback',''),(1886,11511,'pyre_sidebar_position','right'),(1887,11511,'pyre_portfolio_category','0'),(1888,11511,'pyre_revslider','0'),(1889,11511,'pyre_flexslider','0'),(1890,11511,'pyre_full_width','no'),(1891,11511,'pyre_page_bg_color',''),(1892,11511,'pyre_page_bg',''),(1893,11511,'pyre_page_bg_full','no'),(1894,11511,'pyre_page_bg_repeat','repeat'),(1895,11511,'pyre_page_title_bar_bg',''),(1896,11511,'pyre_page_title_bar_bg_color',''),(1897,11511,'pyre_elasticslider','0'),(1898,11511,'avada_post_views_count','133'),(1899,11511,'pyre_portfolio_excerpt',''),(1900,11511,'pyre_portfolio_full_width','yes'),(1901,11511,'pyre_portfolio_sidebar_position','default'),(1902,11511,'pyre_portfolio_filters','yes'),(1903,11511,'pyre_page_bg_layout','default'),(1904,11511,'pyre_wide_page_bg',''),(1905,11511,'pyre_wide_page_bg_color',''),(1906,11511,'pyre_wide_page_bg_full','no'),(1907,11511,'pyre_wide_page_bg_repeat','repeat'),(1908,11511,'pyre_header_bg',''),(1909,11511,'pyre_header_bg_color',''),(1910,11511,'pyre_header_bg_full','no'),(1911,11511,'pyre_header_bg_repeat','repeat'),(1912,11511,'pyre_page_title_text','yes'),(1913,11511,'pyre_page_title_bar_bg_retina',''),(1914,11511,'pyre_page_title_bar_bg_full','no'),(1915,11511,'pyre_image_rollover_icons','linkzoom'),(1916,11511,'pyre_link_icon_url',''),(1917,11511,'pyre_slider','0'),(1918,11511,'pyre_email',''),(1919,11511,'pyre_address',''),(1920,11511,'pyre_phone',''),(1921,11511,'pyre_gmap',''),(1922,11511,'_wp_page_template','default'),(1923,11511,'pyre_page_title','yes'),(1924,11511,'pyre_page_bg_repeat','repeat'),(1925,11511,'pyre_slider_type','no'),(1926,11511,'pyre_wooslider','0'),(1927,11511,'pyre_fallback',''),(1928,11511,'pyre_sidebar_position','right'),(1929,11511,'pyre_portfolio_category','0'),(1930,11511,'pyre_revslider','0'),(1931,11511,'pyre_page_title_bar_bg',''),(1932,11511,'pyre_page_bg',''),(1933,11511,'pyre_page_bg_full','no'),(1934,11511,'pyre_page_bg_color',''),(1935,11511,'pyre_full_width','no'),(1936,11511,'pyre_flexslider','0'),(1937,11511,'pyre_page_title_bar_bg_color',''),(1938,11511,'pyre_elasticslider','0'),(1939,11511,'slide_template','default'),(1940,11511,'pyre_slider_position','default'),(1941,11511,'pyre_display_header','yes'),(1942,11511,'pyre_transparent_header','default'),(1943,11511,'pyre_displayed_menu','default'),(1944,11511,'pyre_display_footer','default'),(1945,11511,'pyre_display_copyright','default'),(1946,11511,'pyre_main_top_padding',''),(1947,11511,'pyre_main_bottom_padding',''),(1948,11511,'pyre_hundredp_padding',''),(1949,11511,'pyre_page_title_custom_text',''),(1950,11511,'pyre_page_title_custom_subheader',''),(1951,11511,'pyre_page_title_height',''),(1952,11511,'pyre_page_title_bg_parallax','default'),(1953,11511,'fusion_builder_status','active'),(1954,11511,'pyre_portfolio_content_length','default'),(1955,11511,'pyre_portfolio_text_layout','default'),(1956,11511,'pyre_portfolio_featured_image_size','default'),(1957,11511,'pyre_show_first_featured_image','no'),(1958,11511,'pyre_header_100_width','default'),(1959,11511,'pyre_header_bg_opacity',''),(1960,11511,'pyre_footer_100_width','default'),(1961,11511,'pyre_portfolio_width_100','no'),(1962,11511,'pyre_portfolio_column_spacing',''),(1963,11511,'pyre_page_title_text_alignment','default'),(1964,11511,'pyre_page_title_text_size',''),(1965,11511,'pyre_page_title_custom_subheader_text_size',''),(1966,11511,'pyre_page_title_font_color',''),(1967,11511,'pyre_page_title_breadcrumbs_search_bar','default'),(1968,11511,'pyre_avada_rev_styles','default'),(1969,11511,'pyre_page_title_100_width','default'),(1970,11511,'pyre_sidebar_bg_color',''),(1971,11511,'pyre_page_title_mobile_height',''),(1972,11511,'pyre_page_title_bar_borders_color',''),(1973,11511,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(1974,11511,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(1975,11511,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(1976,11511,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(1977,11512,'pyre_slider','0'),(1978,11512,'pyre_email',''),(1979,11512,'pyre_address',''),(1980,11512,'pyre_phone',''),(1981,11512,'pyre_gmap',''),(1982,11512,'_wp_page_template','default'),(1983,11512,'pyre_page_title','yes'),(1984,11512,'pyre_slider_type','no'),(1985,11512,'pyre_wooslider','0'),(1986,11512,'pyre_fallback',''),(1987,11512,'pyre_sidebar_position','right'),(1988,11512,'pyre_portfolio_category','0'),(1989,11512,'pyre_flexslider','0'),(1990,11512,'pyre_revslider','0'),(1991,11512,'pyre_full_width','no'),(1992,11512,'pyre_page_bg_color',''),(1993,11512,'pyre_page_bg',''),(1994,11512,'pyre_page_bg_full','no'),(1995,11512,'pyre_page_bg_repeat','repeat'),(1996,11512,'pyre_page_title_bar_bg',''),(1997,11512,'pyre_page_title_bar_bg_color',''),(1998,11512,'pyre_elasticslider','0'),(1999,11512,'avada_post_views_count','103'),(2000,11512,'pyre_portfolio_excerpt',''),(2001,11512,'pyre_portfolio_full_width','yes'),(2002,11512,'pyre_portfolio_sidebar_position','default'),(2003,11512,'pyre_portfolio_filters','yes'),(2004,11512,'pyre_page_bg_layout','default'),(2005,11512,'pyre_wide_page_bg',''),(2006,11512,'pyre_wide_page_bg_color',''),(2007,11512,'pyre_wide_page_bg_full','no'),(2008,11512,'pyre_wide_page_bg_repeat','repeat'),(2009,11512,'pyre_header_bg',''),(2010,11512,'pyre_header_bg_color',''),(2011,11512,'pyre_header_bg_full','no'),(2012,11512,'pyre_header_bg_repeat','repeat'),(2013,11512,'pyre_page_title_text','yes'),(2014,11512,'pyre_page_title_bar_bg_retina',''),(2015,11512,'pyre_page_title_bar_bg_full','no'),(2016,11512,'pyre_image_rollover_icons','linkzoom'),(2017,11512,'pyre_link_icon_url',''),(2018,11512,'pyre_slider','0'),(2019,11512,'pyre_email',''),(2020,11512,'pyre_address',''),(2021,11512,'pyre_phone',''),(2022,11512,'pyre_gmap',''),(2023,11512,'_wp_page_template','default'),(2024,11512,'pyre_page_title','yes'),(2025,11512,'pyre_elasticslider','0'),(2026,11512,'pyre_slider_type','no'),(2027,11512,'pyre_wooslider','0'),(2028,11512,'pyre_fallback',''),(2029,11512,'pyre_sidebar_position','right'),(2030,11512,'pyre_portfolio_category','0'),(2031,11512,'pyre_flexslider','0'),(2032,11512,'pyre_revslider','0'),(2033,11512,'pyre_full_width','no'),(2034,11512,'pyre_page_bg_color',''),(2035,11512,'pyre_page_bg',''),(2036,11512,'pyre_page_bg_full','no'),(2037,11512,'pyre_page_bg_repeat','repeat'),(2038,11512,'pyre_page_title_bar_bg',''),(2039,11512,'pyre_page_title_bar_bg_color',''),(2040,11512,'slide_template','default'),(2041,11512,'pyre_slider_position','default'),(2042,11512,'pyre_display_header','yes'),(2043,11512,'pyre_transparent_header','default'),(2044,11512,'pyre_displayed_menu','default'),(2045,11512,'pyre_display_footer','default'),(2046,11512,'pyre_display_copyright','default'),(2047,11512,'pyre_main_top_padding',''),(2048,11512,'pyre_main_bottom_padding',''),(2049,11512,'pyre_hundredp_padding',''),(2050,11512,'pyre_page_title_custom_text',''),(2051,11512,'pyre_page_title_custom_subheader',''),(2052,11512,'pyre_page_title_height',''),(2053,11512,'pyre_page_title_bg_parallax','default'),(2054,11512,'fusion_builder_status','active'),(2055,11512,'pyre_portfolio_content_length','default'),(2056,11512,'pyre_portfolio_text_layout','default'),(2057,11512,'pyre_portfolio_featured_image_size','default'),(2058,11512,'pyre_show_first_featured_image','no'),(2059,11512,'pyre_header_100_width','default'),(2060,11512,'pyre_header_bg_opacity',''),(2061,11512,'pyre_footer_100_width','default'),(2062,11512,'pyre_portfolio_width_100','no'),(2063,11512,'pyre_portfolio_column_spacing',''),(2064,11512,'pyre_page_title_text_alignment','default'),(2065,11512,'pyre_page_title_text_size',''),(2066,11512,'pyre_page_title_custom_subheader_text_size',''),(2067,11512,'pyre_page_title_font_color',''),(2068,11512,'pyre_page_title_breadcrumbs_search_bar','default'),(2069,11512,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2070,11512,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2071,11512,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2072,11512,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2073,80,'pyre_slider','0'),(2074,80,'pyre_email',''),(2075,80,'pyre_address',''),(2076,80,'pyre_phone',''),(2077,80,'pyre_gmap',''),(2078,80,'_wp_page_template','side-navigation.php'),(2079,80,'pyre_page_title','yes'),(2080,80,'pyre_sidebar_position','left'),(2081,80,'pyre_slider_type','no'),(2082,80,'pyre_wooslider','0'),(2083,80,'pyre_fallback',''),(2084,80,'pyre_portfolio_category','0'),(2085,80,'pyre_flexslider','0'),(2086,80,'pyre_revslider','0'),(2087,80,'pyre_full_width','no'),(2088,80,'pyre_page_bg_color',''),(2089,80,'pyre_page_bg',''),(2090,80,'pyre_page_bg_full','no'),(2091,80,'pyre_page_bg_repeat','repeat'),(2092,80,'pyre_page_title_bar_bg',''),(2093,80,'pyre_elasticslider','0'),(2094,80,'pyre_page_title_bar_bg_color',''),(2095,80,'avada_post_views_count','78'),(2096,80,'pyre_portfolio_excerpt',''),(2097,80,'pyre_portfolio_full_width','yes'),(2098,80,'pyre_portfolio_sidebar_position','default'),(2099,80,'pyre_portfolio_filters','yes'),(2100,80,'pyre_page_bg_layout','default'),(2101,80,'pyre_wide_page_bg',''),(2102,80,'pyre_wide_page_bg_color',''),(2103,80,'pyre_wide_page_bg_full','no'),(2104,80,'pyre_wide_page_bg_repeat','repeat'),(2105,80,'pyre_header_bg',''),(2106,80,'pyre_header_bg_color',''),(2107,80,'pyre_header_bg_full','no'),(2108,80,'pyre_header_bg_repeat','repeat'),(2109,80,'pyre_page_title_text','yes'),(2110,80,'pyre_page_title_bar_bg_retina',''),(2111,80,'pyre_page_title_bar_bg_full','no'),(2112,80,'pyre_image_rollover_icons','linkzoom'),(2113,80,'pyre_link_icon_url',''),(2114,80,'pyre_slider','0'),(2115,80,'pyre_email',''),(2116,80,'pyre_address',''),(2117,80,'pyre_phone',''),(2118,80,'pyre_gmap',''),(2119,80,'_wp_page_template','side-navigation.php'),(2120,80,'pyre_sidebar_position','left'),(2121,80,'pyre_page_title','yes'),(2122,80,'pyre_slider_type','no'),(2123,80,'pyre_wooslider','0'),(2124,80,'pyre_fallback',''),(2125,80,'pyre_portfolio_category','0'),(2126,80,'pyre_full_width','no'),(2127,80,'pyre_revslider','0'),(2128,80,'pyre_flexslider','0'),(2129,80,'pyre_page_bg_color',''),(2130,80,'pyre_page_bg',''),(2131,80,'pyre_page_bg_full','no'),(2132,80,'pyre_page_bg_repeat','repeat'),(2133,80,'pyre_page_title_bar_bg',''),(2134,80,'pyre_elasticslider','0'),(2135,80,'pyre_page_title_bar_bg_color',''),(2136,80,'slide_template','default'),(2137,80,'pyre_slider_position','default'),(2138,80,'pyre_display_header','yes'),(2139,80,'pyre_transparent_header','default'),(2140,80,'pyre_displayed_menu','default'),(2141,80,'pyre_display_footer','default'),(2142,80,'pyre_display_copyright','default'),(2143,80,'pyre_main_top_padding',''),(2144,80,'pyre_main_bottom_padding',''),(2145,80,'pyre_hundredp_padding',''),(2146,80,'pyre_page_title_custom_text',''),(2147,80,'pyre_page_title_custom_subheader',''),(2148,80,'pyre_page_title_height',''),(2149,80,'pyre_page_title_bg_parallax','default'),(2150,80,'fusion_builder_status','active'),(2151,80,'pyre_portfolio_content_length','default'),(2152,80,'pyre_portfolio_text_layout','default'),(2153,80,'pyre_portfolio_featured_image_size','default'),(2154,80,'pyre_avada_rev_styles','default'),(2155,80,'pyre_show_first_featured_image','no'),(2156,80,'pyre_header_100_width','default'),(2157,80,'pyre_header_bg_opacity',''),(2158,80,'pyre_footer_100_width','default'),(2159,80,'pyre_sidebar_bg_color',''),(2160,80,'pyre_portfolio_width_100','no'),(2161,80,'pyre_portfolio_column_spacing',''),(2162,80,'pyre_page_title_text_alignment','default'),(2163,80,'pyre_page_title_100_width','default'),(2164,80,'pyre_page_title_text_size',''),(2165,80,'pyre_page_title_custom_subheader_text_size',''),(2166,80,'pyre_page_title_font_color',''),(2167,80,'pyre_page_title_mobile_height',''),(2168,80,'pyre_page_title_bar_borders_color',''),(2169,80,'pyre_page_title_breadcrumbs_search_bar','default'),(2170,80,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2171,80,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2172,80,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2173,80,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2174,11513,'pyre_slider','0'),(2175,11513,'pyre_email',''),(2176,11513,'pyre_address',''),(2177,11513,'pyre_phone',''),(2178,11513,'pyre_gmap',''),(2179,11513,'_wp_page_template','default'),(2180,11513,'pyre_page_title','yes'),(2181,11513,'pyre_slider_type','no'),(2182,11513,'pyre_wooslider','0'),(2183,11513,'pyre_flexslider','0'),(2184,11513,'pyre_revslider','0'),(2185,11513,'pyre_elasticslider','0'),(2186,11513,'pyre_fallback',''),(2187,11513,'pyre_full_width','no'),(2188,11513,'pyre_sidebar_position','right'),(2189,11513,'pyre_page_bg_color',''),(2190,11513,'pyre_page_bg',''),(2191,11513,'pyre_page_bg_full','no'),(2192,11513,'pyre_page_bg_repeat','repeat'),(2193,11513,'pyre_page_title_bar_bg',''),(2194,11513,'pyre_page_title_bar_bg_color',''),(2195,11513,'avada_post_views_count','47'),(2196,11513,'pyre_portfolio_excerpt',''),(2197,11513,'pyre_portfolio_full_width','yes'),(2198,11513,'pyre_portfolio_sidebar_position','default'),(2199,11513,'pyre_portfolio_filters','yes'),(2200,11513,'pyre_page_bg_layout','default'),(2201,11513,'pyre_wide_page_bg',''),(2202,11513,'pyre_wide_page_bg_color',''),(2203,11513,'pyre_wide_page_bg_full','no'),(2204,11513,'pyre_wide_page_bg_repeat','repeat'),(2205,11513,'pyre_header_bg',''),(2206,11513,'pyre_header_bg_color',''),(2207,11513,'pyre_header_bg_full','no'),(2208,11513,'pyre_header_bg_repeat','repeat'),(2209,11513,'pyre_page_title_text','yes'),(2210,11513,'pyre_page_title_bar_bg_retina',''),(2211,11513,'pyre_page_title_bar_bg_full','no'),(2212,11513,'pyre_image_rollover_icons','linkzoom'),(2213,11513,'pyre_link_icon_url',''),(2214,11513,'pyre_slider','0'),(2215,11513,'pyre_email',''),(2216,11513,'pyre_address',''),(2217,11513,'pyre_phone',''),(2218,11513,'pyre_gmap',''),(2219,11513,'_wp_page_template','default'),(2220,11513,'pyre_page_title','yes'),(2221,11513,'pyre_slider_type','no'),(2222,11513,'pyre_wooslider','0'),(2223,11513,'pyre_flexslider','0'),(2224,11513,'pyre_revslider','0'),(2225,11513,'pyre_elasticslider','0'),(2226,11513,'pyre_fallback',''),(2227,11513,'pyre_full_width','no'),(2228,11513,'pyre_sidebar_position','right'),(2229,11513,'pyre_page_bg_color',''),(2230,11513,'pyre_page_bg',''),(2231,11513,'pyre_page_bg_full','no'),(2232,11513,'pyre_page_bg_repeat','repeat'),(2233,11513,'pyre_page_title_bar_bg',''),(2234,11513,'pyre_page_title_bar_bg_color',''),(2235,11513,'slide_template','default'),(2236,11513,'pyre_slider_position','default'),(2237,11513,'pyre_display_header','yes'),(2238,11513,'pyre_transparent_header','default'),(2239,11513,'pyre_displayed_menu','default'),(2240,11513,'pyre_display_footer','default'),(2241,11513,'pyre_display_copyright','default'),(2242,11513,'pyre_main_top_padding',''),(2243,11513,'pyre_main_bottom_padding',''),(2244,11513,'pyre_hundredp_padding',''),(2245,11513,'pyre_page_title_custom_text',''),(2246,11513,'pyre_page_title_custom_subheader',''),(2247,11513,'pyre_page_title_height',''),(2248,11513,'pyre_page_title_bg_parallax','default'),(2249,11513,'fusion_builder_status','active'),(2250,11513,'pyre_portfolio_content_length','default'),(2251,11513,'pyre_portfolio_text_layout','default'),(2252,11513,'pyre_portfolio_featured_image_size','default'),(2253,11513,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2254,11513,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2255,11513,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2256,11513,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2257,11514,'pyre_slider','0'),(2258,11514,'pyre_email','lukeabeck@gmail.com'),(2259,11514,'pyre_address',''),(2260,11514,'pyre_phone',''),(2261,11514,'pyre_gmap','new york city, ny'),(2262,11514,'_wp_page_template','contact.php'),(2263,11514,'pyre_page_title','no'),(2264,11514,'pyre_slider_type','no'),(2265,11514,'pyre_wooslider','0'),(2266,11514,'pyre_fallback',''),(2267,11514,'pyre_sidebar_position','right'),(2268,11514,'pyre_portfolio_category','0'),(2269,11514,'pyre_flexslider','0'),(2270,11514,'pyre_revslider','0'),(2271,11514,'pyre_full_width','no'),(2272,11514,'pyre_page_bg_color',''),(2273,11514,'pyre_page_bg',''),(2274,11514,'pyre_page_bg_full','no'),(2275,11514,'pyre_page_bg_repeat','repeat'),(2276,11514,'pyre_page_title_bar_bg',''),(2277,11514,'pyre_elasticslider','0'),(2278,11514,'pyre_page_title_bar_bg_color',''),(2279,11514,'avada_post_views_count','100'),(2280,11514,'pyre_portfolio_excerpt',''),(2281,11514,'pyre_portfolio_full_width','yes'),(2282,11514,'pyre_portfolio_sidebar_position','default'),(2283,11514,'pyre_portfolio_filters','yes'),(2284,11514,'pyre_page_bg_layout','default'),(2285,11514,'pyre_wide_page_bg',''),(2286,11514,'pyre_wide_page_bg_color',''),(2287,11514,'pyre_wide_page_bg_full','no'),(2288,11514,'pyre_wide_page_bg_repeat','repeat'),(2289,11514,'pyre_header_bg',''),(2290,11514,'pyre_header_bg_color',''),(2291,11514,'pyre_header_bg_full','no'),(2292,11514,'pyre_header_bg_repeat','repeat'),(2293,11514,'pyre_page_title_text','yes'),(2294,11514,'pyre_page_title_custom_text',''),(2295,11514,'pyre_page_title_custom_subheader',''),(2296,11514,'pyre_page_title_height',''),(2297,11514,'pyre_page_title_bar_bg_retina',''),(2298,11514,'pyre_page_title_bar_bg_full','default'),(2299,11514,'pyre_page_title_bg_parallax','default'),(2300,11514,'pyre_image_rollover_icons','linkzoom'),(2301,11514,'pyre_link_icon_url',''),(2302,11514,'pyre_slider','0'),(2303,11514,'pyre_email','lukeabeck@gmail.com'),(2304,11514,'pyre_address',''),(2305,11514,'pyre_phone',''),(2306,11514,'pyre_gmap','new york city, ny'),(2307,11514,'_wp_page_template','contact.php'),(2308,11514,'avada_post_views_count','0'),(2309,11514,'pyre_page_title','no'),(2310,11514,'pyre_slider_type','no'),(2311,11514,'pyre_wooslider','0'),(2312,11514,'pyre_fallback',''),(2313,11514,'pyre_sidebar_position','right'),(2314,11514,'pyre_portfolio_category','0'),(2315,11514,'pyre_flexslider','0'),(2316,11514,'pyre_revslider','0'),(2317,11514,'pyre_full_width','no'),(2318,11514,'pyre_page_bg_color',''),(2319,11514,'pyre_page_bg',''),(2320,11514,'pyre_page_bg_full','no'),(2321,11514,'pyre_page_bg_repeat','repeat'),(2322,11514,'pyre_page_title_bar_bg',''),(2323,11514,'pyre_elasticslider','0'),(2324,11514,'pyre_page_title_bar_bg_color',''),(2325,11514,'pyre_main_top_padding',''),(2326,11514,'pyre_main_bottom_padding',''),(2327,11514,'slide_template','default'),(2328,11514,'pyre_slider_position','default'),(2329,11514,'pyre_display_header','yes'),(2330,11514,'pyre_transparent_header','default'),(2331,11514,'pyre_displayed_menu','default'),(2332,11514,'pyre_display_footer','default'),(2333,11514,'pyre_display_copyright','default'),(2334,11514,'pyre_hundredp_padding',''),(2335,11514,'fusion_builder_status','active'),(2336,11514,'pyre_portfolio_content_length','default'),(2337,11514,'pyre_portfolio_text_layout','default'),(2338,11514,'pyre_portfolio_featured_image_size','default'),(2339,11514,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2340,11514,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"Contact Sidebar\";}'),(2341,11514,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2342,11514,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2343,11515,'pyre_slider','0'),(2344,11515,'pyre_email',''),(2345,11515,'pyre_address',''),(2346,11515,'pyre_phone',''),(2347,11515,'pyre_gmap',''),(2348,11515,'_wp_page_template','portfolio-one-column.php'),(2349,11515,'pyre_page_title','yes'),(2350,11515,'pyre_slider_type','no'),(2351,11515,'pyre_wooslider','0'),(2352,11515,'pyre_revslider','0'),(2353,11515,'pyre_sidebar_position','right'),(2354,11515,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2355,11515,'pyre_flexslider','0'),(2356,11515,'pyre_page_bg_color',''),(2357,11515,'pyre_page_bg',''),(2358,11515,'pyre_page_bg_full','yes'),(2359,11515,'pyre_page_bg_repeat','no-repeat'),(2360,11515,'pyre_page_title_bar_bg',''),(2361,11515,'pyre_fallback',''),(2362,11515,'pyre_full_width','no'),(2363,11515,'avada_post_views_count','158'),(2364,11515,'pyre_elasticslider','0'),(2365,11515,'pyre_portfolio_excerpt',''),(2366,11515,'pyre_portfolio_full_width','yes'),(2367,11515,'pyre_portfolio_sidebar_position','default'),(2368,11515,'pyre_portfolio_filters','yes'),(2369,11515,'pyre_page_bg_layout','default'),(2370,11515,'pyre_wide_page_bg',''),(2371,11515,'pyre_wide_page_bg_color',''),(2372,11515,'pyre_wide_page_bg_full','no'),(2373,11515,'pyre_wide_page_bg_repeat','repeat'),(2374,11515,'pyre_header_bg',''),(2375,11515,'pyre_header_bg_color',''),(2376,11515,'pyre_header_bg_full','no'),(2377,11515,'pyre_header_bg_repeat','repeat'),(2378,11515,'pyre_page_title_text','yes'),(2379,11515,'pyre_page_title_bar_bg_retina',''),(2380,11515,'pyre_page_title_bar_bg_color',''),(2381,11515,'pyre_page_title_bar_bg_full','no'),(2382,11515,'pyre_image_rollover_icons','linkzoom'),(2383,11515,'pyre_link_icon_url',''),(2384,11515,'pyre_slider','0'),(2385,11515,'pyre_email',''),(2386,11515,'pyre_address',''),(2387,11515,'pyre_phone',''),(2388,11515,'pyre_gmap',''),(2389,11515,'_wp_page_template','portfolio-one-column.php'),(2390,11515,'pyre_page_title','yes'),(2391,11515,'pyre_slider_type','no'),(2392,11515,'pyre_wooslider','0'),(2393,11515,'pyre_revslider','0'),(2394,11515,'pyre_sidebar_position','right'),(2395,11515,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2396,11515,'pyre_flexslider','0'),(2397,11515,'pyre_page_bg_color',''),(2398,11515,'pyre_page_bg',''),(2399,11515,'pyre_page_bg_full','yes'),(2400,11515,'pyre_page_bg_repeat','no-repeat'),(2401,11515,'pyre_page_title_bar_bg',''),(2402,11515,'pyre_fallback',''),(2403,11515,'pyre_portfolio_sidebar_position','default'),(2404,11515,'pyre_portfolio_full_width','yes'),(2405,11515,'pyre_portfolio_excerpt',''),(2406,11515,'pyre_elasticslider','0'),(2407,11515,'avada_post_views_count','1'),(2408,11515,'pyre_image_rollover_icons','linkzoom'),(2409,11515,'pyre_page_title_bar_bg_full','no'),(2410,11515,'pyre_page_title_bar_bg_color',''),(2411,11515,'pyre_page_title_bar_bg_retina',''),(2412,11515,'pyre_page_title_text','yes'),(2413,11515,'pyre_header_bg_repeat','repeat'),(2414,11515,'pyre_header_bg_full','no'),(2415,11515,'pyre_header_bg_color',''),(2416,11515,'pyre_header_bg',''),(2417,11515,'pyre_wide_page_bg_repeat','repeat'),(2418,11515,'pyre_wide_page_bg_full','no'),(2419,11515,'pyre_wide_page_bg_color',''),(2420,11515,'pyre_wide_page_bg',''),(2421,11515,'pyre_page_bg_layout','default'),(2422,11515,'pyre_portfolio_filters','yes'),(2423,11515,'pyre_link_icon_url',''),(2424,11515,'pyre_full_width','no'),(2425,11515,'slide_template','default'),(2426,11515,'fusion_builder_status','inactive'),(2427,11515,'pyre_slider_position','default'),(2428,11515,'pyre_main_top_padding',''),(2429,11515,'pyre_main_bottom_padding',''),(2430,11515,'pyre_hundredp_padding',''),(2431,11515,'pyre_display_header','yes'),(2432,11515,'pyre_transparent_header','default'),(2433,11515,'pyre_displayed_menu','default'),(2434,11515,'pyre_display_footer','default'),(2435,11515,'pyre_display_copyright','default'),(2436,11515,'pyre_portfolio_featured_image_size','default'),(2437,11515,'pyre_page_title_custom_text',''),(2438,11515,'pyre_page_title_custom_subheader',''),(2439,11515,'pyre_page_title_height',''),(2440,11515,'pyre_page_title_bg_parallax','default'),(2441,11515,'pyre_portfolio_content_length','default'),(2442,11515,'pyre_portfolio_text_layout','default'),(2443,11515,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2444,11515,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2445,11515,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2446,11515,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2447,11516,'_menu_item_type','custom'),(2448,11516,'_menu_item_menu_item_parent','11476'),(2449,11516,'_menu_item_object_id','11516'),(2450,11516,'_menu_item_object','custom'),(2451,11516,'_menu_item_target',''),(2452,11516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2453,11516,'_menu_item_xfn',''),(2454,11516,'_menu_item_url','#'),(2455,11516,'_menu_item_fusion_megamenu_icon',''),(2456,11516,'_menu_item_fusion_megamenu_title',''),(2457,11516,'_menu_item_fusion_megamenu_widgetarea','0'),(2458,11516,'_menu_item_fusion_megamenu_columnwidth',''),(2459,11516,'_menu_item_fusion_megamenu_thumbnail',''),(2460,11517,'_menu_item_type','custom'),(2461,11517,'_menu_item_menu_item_parent','11476'),(2462,11517,'_menu_item_object_id','11517'),(2463,11517,'_menu_item_object','custom'),(2464,11517,'_menu_item_target',''),(2465,11517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2466,11517,'_menu_item_xfn',''),(2467,11517,'_menu_item_url','#'),(2468,11517,'_menu_item_fusion_megamenu_icon',''),(2469,11517,'_menu_item_fusion_megamenu_title',''),(2470,11517,'_menu_item_fusion_megamenu_widgetarea','0'),(2471,11517,'_menu_item_fusion_megamenu_columnwidth',''),(2472,11517,'_menu_item_fusion_megamenu_thumbnail',''),(2473,11518,'_menu_item_type','custom'),(2474,11518,'_menu_item_menu_item_parent','11476'),(2475,11518,'_menu_item_object_id','11518'),(2476,11518,'_menu_item_object','custom'),(2477,11518,'_menu_item_target',''),(2478,11518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2479,11518,'_menu_item_xfn',''),(2480,11518,'_menu_item_url','#'),(2481,11518,'_menu_item_fusion_megamenu_icon',''),(2482,11518,'_menu_item_fusion_megamenu_title',''),(2483,11518,'_menu_item_fusion_megamenu_widgetarea','0'),(2484,11518,'_menu_item_fusion_megamenu_columnwidth',''),(2485,11518,'_menu_item_fusion_megamenu_thumbnail',''),(2486,11519,'_menu_item_type','custom'),(2487,11519,'_menu_item_menu_item_parent','11476'),(2488,11519,'_menu_item_object_id','11519'),(2489,11519,'_menu_item_object','custom'),(2490,11519,'_menu_item_target',''),(2491,11519,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2492,11519,'_menu_item_xfn',''),(2493,11519,'_menu_item_url','#'),(2494,11519,'_menu_item_fusion_megamenu_icon',''),(2495,11519,'_menu_item_fusion_megamenu_title',''),(2496,11519,'_menu_item_fusion_megamenu_widgetarea','0'),(2497,11519,'_menu_item_fusion_megamenu_columnwidth',''),(2498,11519,'_menu_item_fusion_megamenu_thumbnail',''),(2499,11520,'_menu_item_type','custom'),(2500,11520,'_menu_item_menu_item_parent','0'),(2501,11520,'_menu_item_object_id','11520'),(2502,11520,'_menu_item_object','custom'),(2503,11520,'_menu_item_target',''),(2504,11520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2505,11520,'_menu_item_xfn',''),(2506,11520,'_menu_item_url','#'),(2507,11520,'_menu_item_fusion_menu_style',''),(2508,11520,'_menu_item_fusion_megamenu_icon',''),(2509,11520,'_menu_item_fusion_megamenu_status',''),(2510,11520,'_menu_item_fusion_megamenu_width',''),(2511,11520,'_menu_item_fusion_megamenu_columns','auto'),(2512,11520,'_menu_item_fusion_megamenu_columnwidth',''),(2513,11520,'_menu_item_fusion_megamenu_thumbnail',''),(2514,11521,'_menu_item_type','custom'),(2515,11521,'_menu_item_menu_item_parent','0'),(2516,11521,'_menu_item_object_id','11521'),(2517,11521,'_menu_item_object','custom'),(2518,11521,'_menu_item_target',''),(2519,11521,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2520,11521,'_menu_item_xfn',''),(2521,11521,'_menu_item_url','http://avada.theme-fusion.com/whats-new-in-4.0'),(2522,11521,'_menu_item_fusion_menu_style',''),(2523,11521,'_menu_item_fusion_megamenu_icon',''),(2524,11521,'_menu_item_fusion_megamenu_status',''),(2525,11521,'_menu_item_fusion_megamenu_width',''),(2526,11521,'_menu_item_fusion_megamenu_columns','auto'),(2527,11521,'_menu_item_fusion_megamenu_columnwidth',''),(2528,11521,'_menu_item_fusion_megamenu_thumbnail',''),(2529,11522,'_menu_item_type','custom'),(2530,11522,'_menu_item_menu_item_parent','11596'),(2531,11522,'_menu_item_object_id','11522'),(2532,11522,'_menu_item_object','custom'),(2533,11522,'_menu_item_target',''),(2534,11522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2535,11522,'_menu_item_xfn',''),(2536,11522,'_menu_item_url','#'),(2537,11522,'_menu_item_fusion_menu_style',''),(2538,11522,'_menu_item_fusion_megamenu_icon',''),(2539,11522,'_menu_item_fusion_megamenu_status',''),(2540,11522,'_menu_item_fusion_megamenu_width',''),(2541,11522,'_menu_item_fusion_megamenu_columns',''),(2542,11522,'_menu_item_fusion_megamenu_columnwidth',''),(2543,11522,'_menu_item_fusion_megamenu_thumbnail',''),(2544,11523,'pyre_slider','0'),(2545,11523,'pyre_email',''),(2546,11523,'pyre_address',''),(2547,11523,'pyre_phone',''),(2548,11523,'pyre_gmap',''),(2549,11523,'_wp_page_template','portfolio-two-column.php'),(2550,11523,'pyre_page_title','yes'),(2551,11523,'pyre_slider_type','no'),(2552,11523,'pyre_wooslider','0'),(2553,11523,'pyre_flexslider','0'),(2554,11523,'pyre_revslider','0'),(2555,11523,'pyre_sidebar_position','right'),(2556,11523,'pyre_page_bg_color',''),(2557,11523,'pyre_page_bg',''),(2558,11523,'pyre_page_bg_full','no'),(2559,11523,'pyre_page_bg_repeat','repeat'),(2560,11523,'pyre_page_title_bar_bg',''),(2561,11523,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2562,11523,'avada_post_views_count','95'),(2563,11523,'pyre_elasticslider','0'),(2564,11523,'pyre_fallback',''),(2565,11523,'pyre_full_width','no'),(2566,11523,'pyre_portfolio_excerpt',''),(2567,11523,'pyre_portfolio_full_width','yes'),(2568,11523,'pyre_portfolio_sidebar_position','default'),(2569,11523,'pyre_portfolio_filters','yes'),(2570,11523,'pyre_page_bg_layout','default'),(2571,11523,'pyre_wide_page_bg',''),(2572,11523,'pyre_wide_page_bg_color',''),(2573,11523,'pyre_wide_page_bg_full','no'),(2574,11523,'pyre_wide_page_bg_repeat','repeat'),(2575,11523,'pyre_header_bg',''),(2576,11523,'pyre_header_bg_color',''),(2577,11523,'pyre_header_bg_full','no'),(2578,11523,'pyre_header_bg_repeat','repeat'),(2579,11523,'pyre_page_title_text','yes'),(2580,11523,'pyre_page_title_bar_bg_retina',''),(2581,11523,'pyre_page_title_bar_bg_color',''),(2582,11523,'pyre_page_title_bar_bg_full','no'),(2583,11523,'pyre_image_rollover_icons','linkzoom'),(2584,11523,'pyre_link_icon_url',''),(2585,11523,'pyre_slider','0'),(2586,11523,'pyre_email',''),(2587,11523,'pyre_address',''),(2588,11523,'pyre_phone',''),(2589,11523,'pyre_gmap',''),(2590,11523,'_wp_page_template','portfolio-two-column.php'),(2591,11523,'pyre_page_title','yes'),(2592,11523,'pyre_slider_type','no'),(2593,11523,'pyre_wooslider','0'),(2594,11523,'pyre_flexslider','0'),(2595,11523,'pyre_revslider','0'),(2596,11523,'pyre_sidebar_position','right'),(2597,11523,'pyre_page_bg_color',''),(2598,11523,'pyre_page_bg',''),(2599,11523,'pyre_page_bg_full','no'),(2600,11523,'pyre_page_bg_repeat','repeat'),(2601,11523,'pyre_page_title_bar_bg',''),(2602,11523,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2603,11523,'avada_post_views_count','0'),(2604,11523,'pyre_header_bg_full','no'),(2605,11523,'pyre_header_bg_color',''),(2606,11523,'pyre_portfolio_sidebar_position','default'),(2607,11523,'pyre_portfolio_full_width','yes'),(2608,11523,'pyre_portfolio_excerpt',''),(2609,11523,'pyre_full_width','no'),(2610,11523,'pyre_fallback',''),(2611,11523,'pyre_elasticslider','0'),(2612,11523,'pyre_portfolio_filters','yes'),(2613,11523,'pyre_link_icon_url',''),(2614,11523,'pyre_image_rollover_icons','linkzoom'),(2615,11523,'pyre_page_title_bar_bg_full','no'),(2616,11523,'pyre_page_title_bar_bg_color',''),(2617,11523,'pyre_page_title_bar_bg_retina',''),(2618,11523,'pyre_page_title_text','yes'),(2619,11523,'pyre_header_bg_repeat','repeat'),(2620,11523,'pyre_header_bg',''),(2621,11523,'pyre_wide_page_bg_repeat','repeat'),(2622,11523,'pyre_wide_page_bg_full','no'),(2623,11523,'pyre_wide_page_bg_color',''),(2624,11523,'pyre_wide_page_bg',''),(2625,11523,'pyre_page_bg_layout','default'),(2626,11523,'slide_template','default'),(2627,11523,'fusion_builder_status','inactive'),(2628,11523,'pyre_slider_position','default'),(2629,11523,'pyre_main_top_padding',''),(2630,11523,'pyre_main_bottom_padding',''),(2631,11523,'pyre_hundredp_padding',''),(2632,11523,'pyre_display_header','yes'),(2633,11523,'pyre_transparent_header','default'),(2634,11523,'pyre_displayed_menu','default'),(2635,11523,'pyre_display_footer','default'),(2636,11523,'pyre_display_copyright','default'),(2637,11523,'pyre_portfolio_featured_image_size','default'),(2638,11523,'pyre_page_title_custom_text',''),(2639,11523,'pyre_page_title_custom_subheader',''),(2640,11523,'pyre_page_title_height',''),(2641,11523,'pyre_page_title_bg_parallax','default'),(2642,11523,'pyre_portfolio_content_length','default'),(2643,11523,'pyre_portfolio_text_layout','default'),(2644,11523,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2645,11523,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2646,11523,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2647,11523,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2648,11524,'pyre_slider','0'),(2649,11524,'pyre_email',''),(2650,11524,'pyre_address',''),(2651,11524,'pyre_phone',''),(2652,11524,'pyre_gmap',''),(2653,11524,'_wp_page_template','portfolio-three-column.php'),(2654,11524,'pyre_page_title','yes'),(2655,11524,'pyre_slider_type','no'),(2656,11524,'pyre_wooslider','0'),(2657,11524,'pyre_flexslider','0'),(2658,11524,'pyre_revslider','0'),(2659,11524,'pyre_fallback',''),(2660,11524,'pyre_full_width','no'),(2661,11524,'pyre_sidebar_position','right'),(2662,11524,'pyre_page_bg_color',''),(2663,11524,'pyre_page_bg',''),(2664,11524,'pyre_page_bg_full','no'),(2665,11524,'pyre_page_bg_repeat','repeat'),(2666,11524,'pyre_page_title_bar_bg',''),(2667,11524,'pyre_page_title_bar_bg_color',''),(2668,11524,'avada_post_views_count','81'),(2669,11524,'pyre_elasticslider','0'),(2670,11524,'pyre_portfolio_excerpt',''),(2671,11524,'pyre_portfolio_full_width','yes'),(2672,11524,'pyre_portfolio_sidebar_position','default'),(2673,11524,'pyre_portfolio_filters','yes'),(2674,11524,'pyre_page_bg_layout','default'),(2675,11524,'pyre_wide_page_bg',''),(2676,11524,'pyre_wide_page_bg_color',''),(2677,11524,'pyre_wide_page_bg_full','no'),(2678,11524,'pyre_wide_page_bg_repeat','repeat'),(2679,11524,'pyre_header_bg',''),(2680,11524,'pyre_header_bg_color',''),(2681,11524,'pyre_header_bg_full','no'),(2682,11524,'pyre_header_bg_repeat','repeat'),(2683,11524,'pyre_page_title_text','yes'),(2684,11524,'pyre_page_title_bar_bg_retina',''),(2685,11524,'pyre_page_title_bar_bg_full','no'),(2686,11524,'pyre_image_rollover_icons','linkzoom'),(2687,11524,'pyre_link_icon_url',''),(2688,11524,'pyre_slider','0'),(2689,11524,'pyre_email',''),(2690,11524,'pyre_address',''),(2691,11524,'pyre_phone',''),(2692,11524,'pyre_gmap',''),(2693,11524,'_wp_page_template','portfolio-three-column.php'),(2694,11524,'pyre_page_title','yes'),(2695,11524,'avada_post_views_count','0'),(2696,11524,'pyre_link_icon_url',''),(2697,11524,'pyre_image_rollover_icons','linkzoom'),(2698,11524,'pyre_page_title_bar_bg_full','no'),(2699,11524,'pyre_page_title_bar_bg_retina',''),(2700,11524,'pyre_page_title_text','yes'),(2701,11524,'pyre_header_bg_repeat','repeat'),(2702,11524,'pyre_header_bg_full','no'),(2703,11524,'pyre_header_bg_color',''),(2704,11524,'pyre_header_bg',''),(2705,11524,'pyre_wide_page_bg_repeat','repeat'),(2706,11524,'pyre_wide_page_bg_full','no'),(2707,11524,'pyre_wide_page_bg_color',''),(2708,11524,'pyre_wide_page_bg',''),(2709,11524,'pyre_page_bg_layout','default'),(2710,11524,'pyre_portfolio_filters','yes'),(2711,11524,'pyre_portfolio_sidebar_position','default'),(2712,11524,'pyre_portfolio_full_width','yes'),(2713,11524,'pyre_portfolio_excerpt',''),(2714,11524,'pyre_elasticslider','0'),(2715,11524,'pyre_slider_type','no'),(2716,11524,'pyre_wooslider','0'),(2717,11524,'pyre_flexslider','0'),(2718,11524,'pyre_revslider','0'),(2719,11524,'pyre_fallback',''),(2720,11524,'pyre_full_width','no'),(2721,11524,'pyre_sidebar_position','right'),(2722,11524,'pyre_page_bg_color',''),(2723,11524,'pyre_page_bg',''),(2724,11524,'pyre_page_bg_full','no'),(2725,11524,'pyre_page_bg_repeat','repeat'),(2726,11524,'pyre_page_title_bar_bg',''),(2727,11524,'pyre_page_title_bar_bg_color',''),(2728,11524,'slide_template','default'),(2729,11524,'fusion_builder_status','inactive'),(2730,11524,'pyre_slider_position','default'),(2731,11524,'pyre_main_top_padding',''),(2732,11524,'pyre_main_bottom_padding',''),(2733,11524,'pyre_hundredp_padding',''),(2734,11524,'pyre_display_header','yes'),(2735,11524,'pyre_transparent_header','default'),(2736,11524,'pyre_displayed_menu','default'),(2737,11524,'pyre_display_footer','default'),(2738,11524,'pyre_display_copyright','default'),(2739,11524,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2740,11524,'pyre_portfolio_featured_image_size','default'),(2741,11524,'pyre_page_title_custom_text',''),(2742,11524,'pyre_page_title_custom_subheader',''),(2743,11524,'pyre_page_title_height',''),(2744,11524,'pyre_page_title_bg_parallax','default'),(2745,11524,'pyre_portfolio_content_length','default'),(2746,11524,'pyre_portfolio_text_layout','default'),(2747,11524,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2748,11524,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2749,11524,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2750,11524,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2751,11525,'pyre_slider','0'),(2752,11525,'pyre_email',''),(2753,11525,'pyre_address',''),(2754,11525,'pyre_phone',''),(2755,11525,'pyre_gmap',''),(2756,11525,'_wp_page_template','portfolio-four-column.php'),(2757,11525,'pyre_page_title','yes'),(2758,11525,'avada_post_views_count','94'),(2759,11525,'pyre_slider_type','no'),(2760,11525,'pyre_wooslider','0'),(2761,11525,'pyre_flexslider','0'),(2762,11525,'pyre_revslider','0'),(2763,11525,'pyre_elasticslider','0'),(2764,11525,'pyre_fallback',''),(2765,11525,'pyre_full_width','no'),(2766,11525,'pyre_sidebar_position','default'),(2767,11525,'pyre_portfolio_excerpt',''),(2768,11525,'pyre_portfolio_full_width','yes'),(2769,11525,'pyre_portfolio_sidebar_position','default'),(2770,11525,'pyre_portfolio_filters','yes'),(2771,11525,'pyre_page_bg_layout','default'),(2772,11525,'pyre_page_bg',''),(2773,11525,'pyre_page_bg_color',''),(2774,11525,'pyre_page_bg_full','no'),(2775,11525,'pyre_page_bg_repeat','repeat'),(2776,11525,'pyre_wide_page_bg',''),(2777,11525,'pyre_wide_page_bg_color',''),(2778,11525,'pyre_wide_page_bg_full','no'),(2779,11525,'pyre_wide_page_bg_repeat','repeat'),(2780,11525,'pyre_header_bg',''),(2781,11525,'pyre_header_bg_color',''),(2782,11525,'pyre_header_bg_full','no'),(2783,11525,'pyre_header_bg_repeat','repeat'),(2784,11525,'pyre_page_title_text','yes'),(2785,11525,'pyre_page_title_bar_bg',''),(2786,11525,'pyre_page_title_bar_bg_retina',''),(2787,11525,'pyre_page_title_bar_bg_color',''),(2788,11525,'pyre_page_title_bar_bg_full','no'),(2789,11525,'pyre_image_rollover_icons','linkzoom'),(2790,11525,'pyre_link_icon_url',''),(2791,11525,'pyre_slider','0'),(2792,11525,'pyre_email',''),(2793,11525,'pyre_address',''),(2794,11525,'pyre_phone',''),(2795,11525,'pyre_gmap',''),(2796,11525,'_wp_page_template','portfolio-four-column.php'),(2797,11525,'avada_post_views_count','2'),(2798,11525,'pyre_page_title','yes'),(2799,11525,'pyre_page_bg_repeat','repeat'),(2800,11525,'pyre_page_bg_full','no'),(2801,11525,'pyre_page_bg_color',''),(2802,11525,'pyre_page_bg',''),(2803,11525,'pyre_page_bg_layout','default'),(2804,11525,'pyre_portfolio_filters','yes'),(2805,11525,'pyre_portfolio_sidebar_position','default'),(2806,11525,'pyre_portfolio_full_width','yes'),(2807,11525,'pyre_portfolio_excerpt',''),(2808,11525,'pyre_sidebar_position','default'),(2809,11525,'pyre_full_width','no'),(2810,11525,'pyre_fallback',''),(2811,11525,'pyre_elasticslider','0'),(2812,11525,'pyre_revslider','0'),(2813,11525,'pyre_flexslider','0'),(2814,11525,'pyre_wooslider','0'),(2815,11525,'pyre_slider_type','no'),(2816,11525,'pyre_page_title_text','yes'),(2817,11525,'pyre_page_title_bar_bg',''),(2818,11525,'pyre_page_title_bar_bg_retina',''),(2819,11525,'pyre_page_title_bar_bg_color',''),(2820,11525,'pyre_page_title_bar_bg_full','no'),(2821,11525,'pyre_image_rollover_icons','linkzoom'),(2822,11525,'pyre_link_icon_url',''),(2823,11525,'pyre_header_bg_repeat','repeat'),(2824,11525,'pyre_header_bg_full','no'),(2825,11525,'pyre_header_bg_color',''),(2826,11525,'pyre_header_bg',''),(2827,11525,'pyre_wide_page_bg_repeat','repeat'),(2828,11525,'pyre_wide_page_bg_full','no'),(2829,11525,'pyre_wide_page_bg_color',''),(2830,11525,'pyre_wide_page_bg',''),(2831,11525,'slide_template','default'),(2832,11525,'fusion_builder_status','inactive'),(2833,11525,'pyre_slider_position','default'),(2834,11525,'pyre_main_top_padding',''),(2835,11525,'pyre_main_bottom_padding',''),(2836,11525,'pyre_hundredp_padding',''),(2837,11525,'pyre_display_header','yes'),(2838,11525,'pyre_transparent_header','default'),(2839,11525,'pyre_displayed_menu','default'),(2840,11525,'pyre_display_footer','default'),(2841,11525,'pyre_display_copyright','default'),(2842,11525,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(2843,11525,'pyre_portfolio_featured_image_size','default'),(2844,11525,'pyre_page_title_custom_text',''),(2845,11525,'pyre_page_title_custom_subheader',''),(2846,11525,'pyre_page_title_height',''),(2847,11525,'pyre_page_title_bg_parallax','default'),(2848,11525,'pyre_portfolio_content_length','default'),(2849,11525,'pyre_portfolio_text_layout','default'),(2850,11525,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2851,11525,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(2852,11525,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2853,11525,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2854,730,'pyre_page_title','yes'),(2855,730,'pyre_slider','0'),(2856,730,'pyre_sidebar_position','right'),(2857,730,'pyre_gmap',''),(2858,730,'_wp_page_template','default'),(2859,730,'pyre_slider_type','no'),(2860,730,'pyre_wooslider','0'),(2861,730,'pyre_flexslider','0'),(2862,730,'pyre_revslider','0'),(2863,730,'pyre_page_bg_color',''),(2864,730,'pyre_page_bg',''),(2865,730,'pyre_page_bg_full','no'),(2866,730,'pyre_page_bg_repeat','repeat'),(2867,730,'pyre_page_title_bar_bg',''),(2868,730,'avada_post_views_count','79'),(2869,730,'pyre_elasticslider','0'),(2870,730,'pyre_fallback',''),(2871,730,'pyre_full_width','no'),(2872,730,'pyre_portfolio_excerpt',''),(2873,730,'pyre_portfolio_full_width','yes'),(2874,730,'pyre_portfolio_sidebar_position','default'),(2875,730,'pyre_portfolio_filters','yes'),(2876,730,'pyre_page_bg_layout','default'),(2877,730,'pyre_wide_page_bg',''),(2878,730,'pyre_wide_page_bg_color',''),(2879,730,'pyre_wide_page_bg_full','no'),(2880,730,'pyre_wide_page_bg_repeat','repeat'),(2881,730,'pyre_header_bg',''),(2882,730,'pyre_header_bg_color',''),(2883,730,'pyre_header_bg_full','no'),(2884,730,'pyre_header_bg_repeat','repeat'),(2885,730,'pyre_page_title_text','yes'),(2886,730,'pyre_page_title_bar_bg_retina',''),(2887,730,'pyre_page_title_bar_bg_color',''),(2888,730,'pyre_page_title_bar_bg_full','no'),(2889,730,'pyre_image_rollover_icons','linkzoom'),(2890,730,'pyre_link_icon_url',''),(2891,730,'pyre_portfolio_filters','yes'),(2892,730,'pyre_portfolio_sidebar_position','default'),(2893,730,'pyre_portfolio_full_width','yes'),(2894,730,'pyre_portfolio_excerpt',''),(2895,730,'pyre_full_width','no'),(2896,730,'pyre_fallback',''),(2897,730,'pyre_elasticslider','0'),(2898,730,'avada_post_views_count','3'),(2899,730,'pyre_wide_page_bg',''),(2900,730,'pyre_wide_page_bg_full','no'),(2901,730,'pyre_page_bg_layout','default'),(2902,730,'pyre_wide_page_bg_color',''),(2903,730,'pyre_wide_page_bg_repeat','repeat'),(2904,730,'pyre_header_bg',''),(2905,730,'pyre_header_bg_color',''),(2906,730,'pyre_header_bg_full','no'),(2907,730,'pyre_header_bg_repeat','repeat'),(2908,730,'pyre_page_title_text','yes'),(2909,730,'pyre_page_title_bar_bg_retina',''),(2910,730,'pyre_page_title_bar_bg_color',''),(2911,730,'pyre_page_title_bar_bg_full','no'),(2912,730,'pyre_image_rollover_icons','linkzoom'),(2913,730,'pyre_link_icon_url',''),(2914,730,'_wp_page_template','default'),(2915,730,'pyre_gmap',''),(2916,730,'pyre_sidebar_position','right'),(2917,730,'pyre_slider','0'),(2918,730,'pyre_page_title','yes'),(2919,730,'pyre_slider_type','no'),(2920,730,'pyre_wooslider','0'),(2921,730,'pyre_flexslider','0'),(2922,730,'pyre_revslider','0'),(2923,730,'pyre_page_bg_color',''),(2924,730,'pyre_page_bg',''),(2925,730,'pyre_page_bg_full','no'),(2926,730,'pyre_page_bg_repeat','repeat'),(2927,730,'pyre_page_title_bar_bg',''),(2928,730,'slide_template','default'),(2929,730,'fusion_builder_status','active'),(2930,730,'pyre_slider_position','default'),(2931,730,'pyre_main_top_padding',''),(2932,730,'pyre_main_bottom_padding',''),(2933,730,'pyre_hundredp_padding',''),(2934,730,'pyre_display_header','yes'),(2935,730,'pyre_transparent_header','default'),(2936,730,'pyre_displayed_menu','default'),(2937,730,'pyre_display_footer','default'),(2938,730,'pyre_display_copyright','default'),(2939,730,'pyre_portfolio_content_length','default'),(2940,730,'pyre_portfolio_text_layout','default'),(2941,730,'pyre_portfolio_featured_image_size','default'),(2942,730,'pyre_page_title_custom_text',''),(2943,730,'pyre_page_title_custom_subheader',''),(2944,730,'pyre_page_title_height',''),(2945,730,'pyre_page_title_bg_parallax','default'),(2946,730,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(2947,730,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(2948,730,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(2949,730,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(2950,1290,'pyre_page_title','no'),(2951,1290,'pyre_slider_type','layer'),(2952,1290,'pyre_slider','2'),(2953,1290,'pyre_wooslider','0'),(2954,1290,'pyre_revslider','0'),(2955,1290,'pyre_sidebar_position','right'),(2956,1290,'pyre_portfolio_category','0'),(2957,1290,'pyre_email',''),(2958,1290,'pyre_gmap',''),(2959,1290,'_wp_page_template','default'),(2960,1290,'pyre_flexslider','0'),(2961,1290,'pyre_fallback',''),(2962,1290,'pyre_page_bg_color',''),(2963,1290,'pyre_page_bg',''),(2964,1290,'pyre_page_bg_full','no'),(2965,1290,'pyre_page_bg_repeat','repeat'),(2966,1290,'pyre_page_title_bar_bg',''),(2967,1290,'pyre_full_width','no'),(2968,1290,'pyre_page_title_bar_bg_color',''),(2969,1290,'pyre_elasticslider','0'),(2970,1290,'avada_post_views_count','137'),(2971,1290,'pyre_portfolio_excerpt',''),(2972,1290,'pyre_portfolio_full_width','yes'),(2973,1290,'pyre_portfolio_sidebar_position','default'),(2974,1290,'pyre_portfolio_filters','yes'),(2975,1290,'pyre_page_bg_layout','default'),(2976,1290,'pyre_wide_page_bg',''),(2977,1290,'pyre_wide_page_bg_color',''),(2978,1290,'pyre_wide_page_bg_full','no'),(2979,1290,'pyre_wide_page_bg_repeat','repeat'),(2980,1290,'pyre_header_bg',''),(2981,1290,'pyre_header_bg_color',''),(2982,1290,'pyre_header_bg_full','no'),(2983,1290,'pyre_header_bg_repeat','repeat'),(2984,1290,'pyre_page_title_text','yes'),(2985,1290,'pyre_page_title_bar_bg_retina',''),(2986,1290,'pyre_page_title_bar_bg_full','no'),(2987,1290,'pyre_image_rollover_icons','linkzoom'),(2988,1290,'pyre_link_icon_url',''),(2989,1290,'pyre_page_title_custom_text',''),(2990,1290,'pyre_page_title_custom_subheader',''),(2991,1290,'pyre_page_title_height',''),(2992,1290,'pyre_page_title_bg_parallax','default'),(2993,1290,'slide_template','default'),(2994,1290,'pyre_main_top_padding',''),(2995,1290,'pyre_main_bottom_padding',''),(2996,1290,'pyre_hundredp_padding',''),(2997,1290,'pyre_slider_position','default'),(2998,1290,'pyre_display_header','yes'),(2999,1290,'pyre_transparent_header','default'),(3000,1290,'pyre_displayed_menu','default'),(3001,1290,'pyre_display_footer','default'),(3002,1290,'pyre_display_copyright','default'),(3003,1290,'fusion_builder_status','active'),(3004,1290,'pyre_portfolio_content_length','default'),(3005,1290,'pyre_portfolio_text_layout','default'),(3006,1290,'pyre_portfolio_featured_image_size','default'),(3007,1290,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3008,1290,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3009,1290,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3010,1290,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3011,1298,'pyre_page_title','no'),(3012,1298,'pyre_slider_type','rev'),(3013,1298,'pyre_slider','0'),(3014,1298,'pyre_wooslider','0'),(3015,1298,'pyre_revslider','Avada_Full_Width'),(3016,1298,'pyre_sidebar_position','right'),(3017,1298,'pyre_portfolio_category','0'),(3018,1298,'pyre_email',''),(3019,1298,'pyre_gmap',''),(3020,1298,'_wp_page_template','default'),(3021,1298,'pyre_flexslider','0'),(3022,1298,'pyre_fallback',''),(3023,1298,'pyre_page_bg_color',''),(3024,1298,'pyre_page_bg',''),(3025,1298,'pyre_page_bg_full','no'),(3026,1298,'pyre_page_bg_repeat','repeat'),(3027,1298,'pyre_page_title_bar_bg',''),(3028,1298,'pyre_full_width','no'),(3029,1298,'pyre_elasticslider','0'),(3030,1298,'pyre_page_title_bar_bg_color',''),(3031,1298,'avada_post_views_count','155'),(3032,1298,'pyre_portfolio_excerpt',''),(3033,1298,'pyre_portfolio_full_width','yes'),(3034,1298,'pyre_portfolio_sidebar_position','default'),(3035,1298,'pyre_portfolio_filters','yes'),(3036,1298,'pyre_page_bg_layout','default'),(3037,1298,'pyre_wide_page_bg',''),(3038,1298,'pyre_wide_page_bg_color',''),(3039,1298,'pyre_wide_page_bg_full','no'),(3040,1298,'pyre_wide_page_bg_repeat','repeat'),(3041,1298,'pyre_header_bg',''),(3042,1298,'pyre_header_bg_color',''),(3043,1298,'pyre_header_bg_full','no'),(3044,1298,'pyre_header_bg_repeat','repeat'),(3045,1298,'pyre_page_title_text','yes'),(3046,1298,'pyre_page_title_bar_bg_retina',''),(3047,1298,'pyre_page_title_bar_bg_full','no'),(3048,1298,'pyre_image_rollover_icons','linkzoom'),(3049,1298,'pyre_link_icon_url',''),(3050,1298,'pyre_page_title_custom_text',''),(3051,1298,'pyre_page_title_custom_subheader',''),(3052,1298,'pyre_page_title_height',''),(3053,1298,'pyre_page_title_bg_parallax','default'),(3054,1298,'pyre_page_title','no'),(3055,1298,'pyre_slider_type','rev'),(3056,1298,'pyre_slider','0'),(3057,1298,'pyre_wooslider','0'),(3058,1298,'pyre_revslider','Avada_Full_Width'),(3059,1298,'pyre_sidebar_position','right'),(3060,1298,'pyre_portfolio_category','0'),(3061,1298,'pyre_email',''),(3062,1298,'pyre_gmap',''),(3063,1298,'_wp_page_template','default'),(3064,1298,'pyre_full_width','no'),(3065,1298,'pyre_flexslider','0'),(3066,1298,'pyre_fallback',''),(3067,1298,'pyre_page_bg_color',''),(3068,1298,'pyre_page_bg',''),(3069,1298,'pyre_page_bg_full','no'),(3070,1298,'pyre_page_bg_repeat','repeat'),(3071,1298,'pyre_page_title_bar_bg',''),(3072,1298,'pyre_elasticslider','0'),(3073,1298,'pyre_page_title_bar_bg_color',''),(3074,1298,'slide_template','default'),(3075,1298,'pyre_slider_position','default'),(3076,1298,'pyre_display_header','yes'),(3077,1298,'pyre_transparent_header','default'),(3078,1298,'pyre_displayed_menu','default'),(3079,1298,'pyre_display_footer','default'),(3080,1298,'pyre_display_copyright','default'),(3081,1298,'pyre_main_top_padding',''),(3082,1298,'pyre_main_bottom_padding',''),(3083,1298,'pyre_hundredp_padding',''),(3084,1298,'fusion_builder_status','active'),(3085,1298,'pyre_portfolio_content_length','default'),(3086,1298,'pyre_portfolio_text_layout','default'),(3087,1298,'pyre_portfolio_featured_image_size','default'),(3088,1298,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3089,1298,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3090,1298,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3091,1298,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3092,1345,'pyre_page_title','no'),(3093,1345,'pyre_slider_type','layer'),(3094,1345,'pyre_slider','4'),(3095,1345,'pyre_wooslider','0'),(3096,1345,'pyre_revslider','Avada_Full_Width'),(3097,1345,'pyre_sidebar_position','right'),(3098,1345,'pyre_portfolio_category','0'),(3099,1345,'pyre_email',''),(3100,1345,'pyre_gmap',''),(3101,1345,'_wp_page_template','100-width.php'),(3102,1345,'pyre_flexslider','0'),(3103,1345,'pyre_fallback',''),(3104,1345,'pyre_full_width','no'),(3105,1345,'pyre_page_bg_color',''),(3106,1345,'pyre_page_bg',''),(3107,1345,'pyre_page_bg_full','no'),(3108,1345,'pyre_page_bg_repeat','repeat'),(3109,1345,'pyre_page_title_bar_bg',''),(3110,1345,'pyre_elasticslider','0'),(3111,1345,'pyre_page_title_bar_bg_color',''),(3112,1345,'avada_post_views_count','230'),(3113,1345,'pyre_portfolio_excerpt',''),(3114,1345,'pyre_portfolio_full_width','yes'),(3115,1345,'pyre_portfolio_sidebar_position','default'),(3116,1345,'pyre_portfolio_filters','yes'),(3117,1345,'pyre_page_bg_layout','default'),(3118,1345,'pyre_wide_page_bg',''),(3119,1345,'pyre_wide_page_bg_color',''),(3120,1345,'pyre_wide_page_bg_full','no'),(3121,1345,'pyre_wide_page_bg_repeat','repeat'),(3122,1345,'pyre_header_bg',''),(3123,1345,'pyre_header_bg_color',''),(3124,1345,'pyre_header_bg_full','no'),(3125,1345,'pyre_header_bg_repeat','repeat'),(3126,1345,'pyre_page_title_text','yes'),(3127,1345,'pyre_page_title_bar_bg_retina',''),(3128,1345,'pyre_page_title_bar_bg_full','no'),(3129,1345,'pyre_image_rollover_icons','linkzoom'),(3130,1345,'pyre_link_icon_url',''),(3131,1345,'avada_post_views_count','0'),(3132,1345,'pyre_page_title_bar_bg_color',''),(3133,1345,'pyre_page_title','no'),(3134,1345,'pyre_slider_type','layer'),(3135,1345,'pyre_slider','4'),(3136,1345,'pyre_wooslider','0'),(3137,1345,'pyre_revslider','Avada_Full_Width'),(3138,1345,'pyre_sidebar_position','right'),(3139,1345,'pyre_portfolio_category','0'),(3140,1345,'pyre_email',''),(3141,1345,'pyre_gmap',''),(3142,1345,'_wp_page_template','100-width.php'),(3143,1345,'pyre_flexslider','0'),(3144,1345,'pyre_fallback',''),(3145,1345,'pyre_full_width','no'),(3146,1345,'pyre_page_bg_color',''),(3147,1345,'pyre_page_bg',''),(3148,1345,'pyre_page_bg_full','no'),(3149,1345,'pyre_page_bg_repeat','repeat'),(3150,1345,'pyre_page_title_bar_bg',''),(3151,1345,'pyre_elasticslider','0'),(3152,1345,'slide_template','default'),(3153,1345,'pyre_main_top_padding',''),(3154,1345,'pyre_main_bottom_padding','0px'),(3155,1345,'pyre_hundredp_padding',''),(3156,1345,'pyre_page_title_custom_text',''),(3157,1345,'pyre_page_title_custom_subheader',''),(3158,1345,'pyre_page_title_height',''),(3159,1345,'pyre_page_title_bg_parallax','default'),(3160,1345,'pyre_slider_position','default'),(3161,1345,'pyre_display_header','yes'),(3162,1345,'pyre_transparent_header','yes'),(3163,1345,'pyre_displayed_menu','default'),(3164,1345,'pyre_display_footer','default'),(3165,1345,'pyre_display_copyright','default'),(3166,1345,'fusion_builder_status','active'),(3167,1345,'pyre_portfolio_featured_image_size','default'),(3168,1345,'pyre_portfolio_content_length','default'),(3169,1345,'pyre_portfolio_text_layout','default'),(3170,1345,'pyre_show_first_featured_image','no'),(3171,1345,'pyre_header_100_width','default'),(3172,1345,'pyre_header_bg_opacity','0'),(3173,1345,'pyre_footer_100_width','default'),(3174,1345,'pyre_portfolio_width_100','no'),(3175,1345,'pyre_portfolio_column_spacing',''),(3176,1345,'pyre_page_title_text_alignment','default'),(3177,1345,'pyre_page_title_text_size',''),(3178,1345,'pyre_page_title_custom_subheader_text_size',''),(3179,1345,'pyre_page_title_font_color',''),(3180,1345,'pyre_page_title_breadcrumbs_search_bar','default'),(3181,1345,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3182,1345,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(3183,1345,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3184,1345,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3185,1522,'pyre_page_title','yes'),(3186,1522,'pyre_slider_type','no'),(3187,1522,'pyre_slider','0'),(3188,1522,'pyre_wooslider','0'),(3189,1522,'pyre_flexslider','0'),(3190,1522,'pyre_revslider','0'),(3191,1522,'pyre_sidebar_position','right'),(3192,1522,'pyre_page_bg_color',''),(3193,1522,'pyre_page_bg',''),(3194,1522,'pyre_page_bg_full','no'),(3195,1522,'pyre_page_bg_repeat','repeat'),(3196,1522,'pyre_page_title_bar_bg',''),(3197,1522,'pyre_email',''),(3198,1522,'pyre_gmap',''),(3199,1522,'_wp_page_template','default'),(3200,1522,'avada_post_views_count','58'),(3201,1522,'pyre_elasticslider','0'),(3202,1522,'pyre_fallback',''),(3203,1522,'pyre_full_width','no'),(3204,1522,'pyre_portfolio_excerpt',''),(3205,1522,'pyre_portfolio_full_width','yes'),(3206,1522,'pyre_portfolio_sidebar_position','default'),(3207,1522,'pyre_portfolio_filters','yes'),(3208,1522,'pyre_page_bg_layout','default'),(3209,1522,'pyre_wide_page_bg',''),(3210,1522,'pyre_wide_page_bg_color',''),(3211,1522,'pyre_wide_page_bg_full','no'),(3212,1522,'pyre_wide_page_bg_repeat','repeat'),(3213,1522,'pyre_header_bg',''),(3214,1522,'pyre_header_bg_color',''),(3215,1522,'pyre_header_bg_full','no'),(3216,1522,'pyre_header_bg_repeat','repeat'),(3217,1522,'pyre_page_title_text','yes'),(3218,1522,'pyre_page_title_bar_bg_retina',''),(3219,1522,'pyre_page_title_bar_bg_color',''),(3220,1522,'pyre_page_title_bar_bg_full','no'),(3221,1522,'pyre_image_rollover_icons','linkzoom'),(3222,1522,'pyre_link_icon_url',''),(3223,1522,'avada_post_views_count','1'),(3224,1522,'_wp_page_template','default'),(3225,1522,'pyre_elasticslider','0'),(3226,1522,'pyre_fallback',''),(3227,1522,'pyre_full_width','no'),(3228,1522,'pyre_portfolio_excerpt',''),(3229,1522,'pyre_portfolio_full_width','yes'),(3230,1522,'pyre_portfolio_sidebar_position','default'),(3231,1522,'pyre_portfolio_filters','yes'),(3232,1522,'pyre_page_bg_layout','default'),(3233,1522,'pyre_wide_page_bg',''),(3234,1522,'pyre_wide_page_bg_color',''),(3235,1522,'pyre_wide_page_bg_full','no'),(3236,1522,'pyre_wide_page_bg_repeat','repeat'),(3237,1522,'pyre_header_bg',''),(3238,1522,'pyre_header_bg_color',''),(3239,1522,'pyre_header_bg_full','no'),(3240,1522,'pyre_header_bg_repeat','repeat'),(3241,1522,'pyre_page_title_text','yes'),(3242,1522,'pyre_page_title_bar_bg_retina',''),(3243,1522,'pyre_page_title_bar_bg_color',''),(3244,1522,'pyre_page_title_bar_bg_full','no'),(3245,1522,'pyre_image_rollover_icons','linkzoom'),(3246,1522,'pyre_link_icon_url',''),(3247,1522,'pyre_page_title','yes'),(3248,1522,'pyre_slider_type','no'),(3249,1522,'pyre_slider','0'),(3250,1522,'pyre_wooslider','0'),(3251,1522,'pyre_flexslider','0'),(3252,1522,'pyre_revslider','0'),(3253,1522,'pyre_sidebar_position','right'),(3254,1522,'pyre_page_bg_color',''),(3255,1522,'pyre_page_bg',''),(3256,1522,'pyre_page_bg_full','no'),(3257,1522,'pyre_page_bg_repeat','repeat'),(3258,1522,'pyre_page_title_bar_bg',''),(3259,1522,'pyre_email',''),(3260,1522,'pyre_gmap',''),(3261,1522,'slide_template','default'),(3262,1522,'fusion_builder_status','active'),(3263,1522,'pyre_slider_position','default'),(3264,1522,'pyre_main_top_padding',''),(3265,1522,'pyre_main_bottom_padding',''),(3266,1522,'pyre_hundredp_padding',''),(3267,1522,'pyre_display_header','yes'),(3268,1522,'pyre_transparent_header','default'),(3269,1522,'pyre_displayed_menu','default'),(3270,1522,'pyre_display_footer','default'),(3271,1522,'pyre_display_copyright','default'),(3272,1522,'pyre_portfolio_content_length','default'),(3273,1522,'pyre_portfolio_text_layout','default'),(3274,1522,'pyre_portfolio_featured_image_size','default'),(3275,1522,'pyre_page_title_custom_text',''),(3276,1522,'pyre_page_title_custom_subheader',''),(3277,1522,'pyre_page_title_height',''),(3278,1522,'pyre_page_title_bg_parallax','default'),(3279,1522,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3280,1522,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3281,1522,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3282,1522,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3283,1693,'pyre_page_title','yes'),(3284,1693,'pyre_slider_type','no'),(3285,1693,'pyre_slider','0'),(3286,1693,'pyre_wooslider','0'),(3287,1693,'pyre_flexslider','0'),(3288,1693,'pyre_revslider','0'),(3289,1693,'pyre_fallback',''),(3290,1693,'pyre_sidebar_position','right'),(3291,1693,'pyre_page_bg_color',''),(3292,1693,'pyre_page_bg',''),(3293,1693,'pyre_page_bg_full','no'),(3294,1693,'pyre_page_bg_repeat','repeat'),(3295,1693,'pyre_page_title_bar_bg',''),(3296,1693,'_wp_page_template','100-width.php'),(3297,1693,'pyre_full_width','no'),(3298,1693,'pyre_page_title_bar_bg_color',''),(3299,1693,'pyre_elasticslider','0'),(3300,1693,'avada_post_views_count','48'),(3301,1693,'pyre_page_title_bar_bg_color',''),(3302,1693,'pyre_page_title','yes'),(3303,1693,'pyre_slider_type','no'),(3304,1693,'pyre_slider','0'),(3305,1693,'pyre_wooslider','0'),(3306,1693,'pyre_flexslider','0'),(3307,1693,'pyre_revslider','0'),(3308,1693,'pyre_fallback',''),(3309,1693,'pyre_sidebar_position','right'),(3310,1693,'pyre_page_bg_color',''),(3311,1693,'pyre_page_bg',''),(3312,1693,'pyre_page_bg_full','no'),(3313,1693,'pyre_page_bg_repeat','repeat'),(3314,1693,'pyre_page_title_bar_bg',''),(3315,1693,'_wp_page_template','100-width.php'),(3316,1693,'pyre_full_width','no'),(3317,1693,'pyre_elasticslider','0'),(3318,1693,'pyre_slider_position','default'),(3319,1693,'pyre_display_header','yes'),(3320,1693,'pyre_transparent_header','default'),(3321,1693,'pyre_displayed_menu','default'),(3322,1693,'pyre_display_footer','default'),(3323,1693,'pyre_display_copyright','default'),(3324,1693,'pyre_main_top_padding',''),(3325,1693,'pyre_main_bottom_padding','0px'),(3326,1693,'pyre_hundredp_padding',''),(3327,1693,'pyre_portfolio_excerpt',''),(3328,1693,'pyre_portfolio_full_width','yes'),(3329,1693,'pyre_portfolio_sidebar_position','default'),(3330,1693,'pyre_portfolio_filters','yes'),(3331,1693,'pyre_page_bg_layout','default'),(3332,1693,'pyre_wide_page_bg',''),(3333,1693,'pyre_wide_page_bg_color',''),(3334,1693,'pyre_wide_page_bg_full','no'),(3335,1693,'pyre_wide_page_bg_repeat','repeat'),(3336,1693,'pyre_header_bg',''),(3337,1693,'pyre_header_bg_color',''),(3338,1693,'pyre_header_bg_full','no'),(3339,1693,'pyre_header_bg_repeat','repeat'),(3340,1693,'pyre_page_title_text','yes'),(3341,1693,'pyre_page_title_custom_text',''),(3342,1693,'pyre_page_title_custom_subheader',''),(3343,1693,'pyre_page_title_height',''),(3344,1693,'pyre_page_title_bar_bg_retina',''),(3345,1693,'pyre_page_title_bar_bg_full','default'),(3346,1693,'pyre_page_title_bg_parallax','default'),(3347,1693,'slide_template','default'),(3348,1693,'fusion_builder_status','active'),(3349,1693,'pyre_portfolio_content_length','default'),(3350,1693,'pyre_portfolio_text_layout','default'),(3351,1693,'pyre_portfolio_featured_image_size','default'),(3352,1693,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:9856;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1409847000;}'),(3353,1693,'fusion_builder_content',''),(3354,1693,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3355,1693,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3356,1693,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3357,1693,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3358,2291,'pyre_page_title','yes'),(3359,2291,'pyre_slider_type','no'),(3360,2291,'pyre_slider','0'),(3361,2291,'pyre_wooslider','0'),(3362,2291,'pyre_flexslider','0'),(3363,2291,'pyre_revslider','0'),(3364,2291,'pyre_fallback',''),(3365,2291,'pyre_full_width','no'),(3366,2291,'pyre_sidebar_position','left'),(3367,2291,'pyre_page_bg_color',''),(3368,2291,'pyre_page_bg',''),(3369,2291,'pyre_page_bg_full','no'),(3370,2291,'pyre_page_bg_repeat','repeat'),(3371,2291,'pyre_page_title_bar_bg',''),(3372,2291,'_wp_page_template','default'),(3373,2291,'pyre_elasticslider','0'),(3374,2291,'pyre_page_title_bar_bg_color',''),(3375,2291,'avada_post_views_count','24'),(3376,2291,'pyre_portfolio_excerpt',''),(3377,2291,'pyre_portfolio_full_width','yes'),(3378,2291,'pyre_portfolio_sidebar_position','default'),(3379,2291,'pyre_portfolio_filters','yes'),(3380,2291,'pyre_page_bg_layout','default'),(3381,2291,'pyre_wide_page_bg',''),(3382,2291,'pyre_wide_page_bg_color',''),(3383,2291,'pyre_wide_page_bg_full','no'),(3384,2291,'pyre_wide_page_bg_repeat','repeat'),(3385,2291,'pyre_header_bg',''),(3386,2291,'pyre_header_bg_color',''),(3387,2291,'pyre_header_bg_full','no'),(3388,2291,'pyre_header_bg_repeat','repeat'),(3389,2291,'pyre_page_title_text','yes'),(3390,2291,'pyre_page_title_bar_bg_retina',''),(3391,2291,'pyre_page_title_bar_bg_full','no'),(3392,2291,'pyre_image_rollover_icons','linkzoom'),(3393,2291,'pyre_link_icon_url',''),(3394,2291,'pyre_page_title_bar_bg',''),(3395,2291,'pyre_full_width','no'),(3396,2291,'pyre_fallback',''),(3397,2291,'pyre_revslider','0'),(3398,2291,'pyre_flexslider','0'),(3399,2291,'pyre_wooslider','0'),(3400,2291,'pyre_slider','0'),(3401,2291,'pyre_slider_type','no'),(3402,2291,'pyre_page_title','yes'),(3403,2291,'pyre_page_bg_repeat','repeat'),(3404,2291,'pyre_page_bg_full','no'),(3405,2291,'pyre_page_bg_color',''),(3406,2291,'pyre_page_bg',''),(3407,2291,'pyre_sidebar_position','left'),(3408,2291,'_wp_page_template','default'),(3409,2291,'pyre_elasticslider','0'),(3410,2291,'pyre_page_title_bar_bg_color',''),(3411,2291,'pyre_page_title_custom_text',''),(3412,2291,'pyre_page_title_custom_subheader',''),(3413,2291,'pyre_page_title_height',''),(3414,2291,'pyre_page_title_bg_parallax','default'),(3415,2291,'slide_template','default'),(3416,2291,'pyre_slider_position','default'),(3417,2291,'pyre_display_header','yes'),(3418,2291,'pyre_transparent_header','default'),(3419,2291,'pyre_displayed_menu','default'),(3420,2291,'pyre_display_footer','default'),(3421,2291,'pyre_display_copyright','default'),(3422,2291,'pyre_main_top_padding',''),(3423,2291,'pyre_main_bottom_padding',''),(3424,2291,'pyre_hundredp_padding',''),(3425,2291,'fusion_builder_status','active'),(3426,2291,'pyre_portfolio_content_length','default'),(3427,2291,'pyre_portfolio_text_layout','default'),(3428,2291,'pyre_portfolio_featured_image_size','default'),(3429,2291,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3430,2291,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(3431,2291,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3432,2291,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3433,2300,'pyre_page_title','no'),(3434,2300,'pyre_slider_type','rev'),(3435,2300,'pyre_slider','0'),(3436,2300,'pyre_wooslider','0'),(3437,2300,'pyre_flexslider','0'),(3438,2300,'pyre_revslider','Avada_Full_Width'),(3439,2300,'pyre_fallback',''),(3440,2300,'pyre_full_width','no'),(3441,2300,'pyre_sidebar_position','right'),(3442,2300,'pyre_page_bg_color',''),(3443,2300,'pyre_page_bg','http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/06/page_bkgd8.jpg'),(3444,2300,'pyre_page_bg_full','yes'),(3445,2300,'pyre_page_bg_repeat','repeat'),(3446,2300,'pyre_page_title_bar_bg',''),(3447,2300,'_wp_page_template','default'),(3448,2300,'pyre_elasticslider','0'),(3449,2300,'pyre_page_title_bar_bg_color',''),(3450,2300,'avada_post_views_count','111'),(3451,2300,'pyre_portfolio_excerpt',''),(3452,2300,'pyre_portfolio_full_width','yes'),(3453,2300,'pyre_portfolio_sidebar_position','default'),(3454,2300,'pyre_portfolio_filters','yes'),(3455,2300,'pyre_page_bg_layout','boxed'),(3456,2300,'pyre_wide_page_bg',''),(3457,2300,'pyre_wide_page_bg_color',''),(3458,2300,'pyre_wide_page_bg_full','no'),(3459,2300,'pyre_wide_page_bg_repeat','repeat'),(3460,2300,'pyre_header_bg',''),(3461,2300,'pyre_header_bg_color',''),(3462,2300,'pyre_header_bg_full','no'),(3463,2300,'pyre_header_bg_repeat','repeat'),(3464,2300,'pyre_page_title_text','yes'),(3465,2300,'pyre_page_title_bar_bg_retina',''),(3466,2300,'pyre_page_title_bar_bg_full','no'),(3467,2300,'pyre_image_rollover_icons','linkzoom'),(3468,2300,'pyre_link_icon_url',''),(3469,2300,'avada_post_views_count','0'),(3470,2300,'pyre_elasticslider','0'),(3471,2300,'pyre_page_title_bar_bg_color',''),(3472,2300,'pyre_page_title','no'),(3473,2300,'pyre_slider_type','rev'),(3474,2300,'pyre_slider','0'),(3475,2300,'pyre_wooslider','0'),(3476,2300,'pyre_flexslider','0'),(3477,2300,'pyre_revslider','Avada_Full_Width'),(3478,2300,'pyre_fallback',''),(3479,2300,'pyre_full_width','no'),(3480,2300,'pyre_sidebar_position','right'),(3481,2300,'pyre_page_bg_color',''),(3482,2300,'pyre_page_bg','http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/06/page_bkgd8.jpg'),(3483,2300,'pyre_page_bg_full','yes'),(3484,2300,'pyre_page_bg_repeat','repeat'),(3485,2300,'pyre_page_title_bar_bg',''),(3486,2300,'_wp_page_template','default'),(3487,2300,'slide_template','default'),(3488,2300,'pyre_slider_position','default'),(3489,2300,'pyre_display_header','yes'),(3490,2300,'pyre_transparent_header','default'),(3491,2300,'pyre_displayed_menu','default'),(3492,2300,'pyre_display_footer','default'),(3493,2300,'pyre_display_copyright','default'),(3494,2300,'pyre_main_top_padding',''),(3495,2300,'pyre_main_bottom_padding',''),(3496,2300,'pyre_hundredp_padding',''),(3497,2300,'pyre_page_title_custom_text',''),(3498,2300,'pyre_page_title_custom_subheader',''),(3499,2300,'pyre_page_title_height',''),(3500,2300,'pyre_page_title_bg_parallax','default'),(3501,2300,'fusion_builder_status','inactive'),(3502,2300,'pyre_portfolio_content_length','default'),(3503,2300,'pyre_portfolio_text_layout','default'),(3504,2300,'pyre_portfolio_featured_image_size','default'),(3505,2300,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3506,2300,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3507,2300,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3508,2300,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3509,2318,'pyre_page_title','no'),(3510,2318,'pyre_slider_type','rev'),(3511,2318,'pyre_slider','0'),(3512,2318,'pyre_wooslider','0'),(3513,2318,'pyre_flexslider','0'),(3514,2318,'pyre_revslider','Avada_Full_Width'),(3515,2318,'pyre_fallback',''),(3516,2318,'pyre_full_width','no'),(3517,2318,'pyre_sidebar_position','right'),(3518,2318,'pyre_page_bg_color',''),(3519,2318,'pyre_page_bg',''),(3520,2318,'pyre_page_bg_full','no'),(3521,2318,'pyre_page_bg_repeat','repeat'),(3522,2318,'pyre_page_title_bar_bg',''),(3523,2318,'_wp_page_template','default'),(3524,2318,'pyre_elasticslider','0'),(3525,2318,'pyre_page_title_bar_bg_color',''),(3526,2318,'avada_post_views_count','81'),(3527,2318,'pyre_portfolio_excerpt',''),(3528,2318,'pyre_portfolio_full_width','yes'),(3529,2318,'pyre_portfolio_sidebar_position','default'),(3530,2318,'pyre_portfolio_filters','yes'),(3531,2318,'pyre_page_bg_layout','default'),(3532,2318,'pyre_wide_page_bg',''),(3533,2318,'pyre_wide_page_bg_color',''),(3534,2318,'pyre_wide_page_bg_full','no'),(3535,2318,'pyre_wide_page_bg_repeat','repeat'),(3536,2318,'pyre_header_bg',''),(3537,2318,'pyre_header_bg_color',''),(3538,2318,'pyre_header_bg_full','no'),(3539,2318,'pyre_header_bg_repeat','repeat'),(3540,2318,'pyre_page_title_text','yes'),(3541,2318,'pyre_page_title_bar_bg_retina',''),(3542,2318,'pyre_page_title_bar_bg_full','no'),(3543,2318,'pyre_image_rollover_icons','linkzoom'),(3544,2318,'pyre_link_icon_url',''),(3545,2318,'slide_template','default'),(3546,2318,'pyre_slider_position','default'),(3547,2318,'pyre_display_header','yes'),(3548,2318,'pyre_transparent_header','default'),(3549,2318,'pyre_displayed_menu','default'),(3550,2318,'pyre_display_footer','default'),(3551,2318,'pyre_display_copyright','default'),(3552,2318,'pyre_main_top_padding',''),(3553,2318,'pyre_main_bottom_padding',''),(3554,2318,'pyre_hundredp_padding',''),(3555,2318,'pyre_page_title_custom_text',''),(3556,2318,'pyre_page_title_custom_subheader',''),(3557,2318,'pyre_page_title_height',''),(3558,2318,'pyre_page_title_bg_parallax','default'),(3559,2318,'fusion_builder_status','active'),(3560,2318,'pyre_portfolio_content_length','default'),(3561,2318,'pyre_portfolio_text_layout','default'),(3562,2318,'pyre_portfolio_featured_image_size','default'),(3563,2318,'pyre_show_first_featured_image','no'),(3564,2318,'pyre_header_100_width','default'),(3565,2318,'pyre_header_bg_opacity',''),(3566,2318,'pyre_footer_100_width','default'),(3567,2318,'pyre_portfolio_width_100','no'),(3568,2318,'pyre_portfolio_column_spacing',''),(3569,2318,'pyre_page_title_text_alignment','default'),(3570,2318,'pyre_page_title_text_size',''),(3571,2318,'pyre_page_title_custom_subheader_text_size',''),(3572,2318,'pyre_page_title_font_color',''),(3573,2318,'pyre_page_title_breadcrumbs_search_bar','default'),(3574,2318,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3575,2318,'sbg_selected_sidebar_replacement','a:1:{i:0;s:17:\"Home Page Sidebar\";}'),(3576,2318,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3577,2318,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3578,2367,'pyre_page_title','no'),(3579,2367,'pyre_slider_type','rev'),(3580,2367,'pyre_slider','0'),(3581,2367,'pyre_wooslider','0'),(3582,2367,'pyre_flexslider','0'),(3583,2367,'pyre_revslider','Avada_Full_Width'),(3584,2367,'pyre_fallback',''),(3585,2367,'pyre_full_width','no'),(3586,2367,'pyre_sidebar_position','right'),(3587,2367,'pyre_page_bg_color',''),(3588,2367,'pyre_page_bg',''),(3589,2367,'pyre_page_bg_full','no'),(3590,2367,'pyre_page_bg_repeat','repeat'),(3591,2367,'pyre_page_title_bar_bg',''),(3592,2367,'_wp_page_template','default'),(3593,2367,'pyre_elasticslider','0'),(3594,2367,'pyre_page_title_bar_bg_color',''),(3595,2367,'avada_post_views_count','76'),(3596,2367,'pyre_portfolio_excerpt',''),(3597,2367,'pyre_portfolio_full_width','yes'),(3598,2367,'pyre_portfolio_sidebar_position','default'),(3599,2367,'pyre_portfolio_filters','yes'),(3600,2367,'pyre_page_bg_layout','default'),(3601,2367,'pyre_wide_page_bg',''),(3602,2367,'pyre_wide_page_bg_color',''),(3603,2367,'pyre_wide_page_bg_full','no'),(3604,2367,'pyre_wide_page_bg_repeat','repeat'),(3605,2367,'pyre_header_bg',''),(3606,2367,'pyre_header_bg_color',''),(3607,2367,'pyre_header_bg_full','no'),(3608,2367,'pyre_header_bg_repeat','repeat'),(3609,2367,'pyre_page_title_text','yes'),(3610,2367,'pyre_page_title_bar_bg_retina',''),(3611,2367,'pyre_page_title_bar_bg_full','no'),(3612,2367,'pyre_image_rollover_icons','linkzoom'),(3613,2367,'pyre_link_icon_url',''),(3614,2367,'avada_post_views_count','0'),(3615,2367,'pyre_page_title','no'),(3616,2367,'pyre_slider_type','rev'),(3617,2367,'pyre_slider','0'),(3618,2367,'pyre_wooslider','0'),(3619,2367,'pyre_flexslider','0'),(3620,2367,'pyre_revslider','Avada_Full_Width'),(3621,2367,'pyre_fallback',''),(3622,2367,'pyre_full_width','no'),(3623,2367,'pyre_sidebar_position','right'),(3624,2367,'pyre_page_bg_color',''),(3625,2367,'pyre_page_bg',''),(3626,2367,'pyre_page_bg_full','no'),(3627,2367,'pyre_page_bg_repeat','repeat'),(3628,2367,'pyre_page_title_bar_bg',''),(3629,2367,'_wp_page_template','default'),(3630,2367,'pyre_elasticslider','0'),(3631,2367,'pyre_page_title_bar_bg_color',''),(3632,2367,'slide_template','default'),(3633,2367,'pyre_slider_position','default'),(3634,2367,'pyre_display_header','yes'),(3635,2367,'pyre_transparent_header','default'),(3636,2367,'pyre_displayed_menu','default'),(3637,2367,'pyre_display_footer','default'),(3638,2367,'pyre_display_copyright','default'),(3639,2367,'pyre_main_top_padding',''),(3640,2367,'pyre_main_bottom_padding','0px'),(3641,2367,'pyre_hundredp_padding',''),(3642,2367,'pyre_page_title_custom_text',''),(3643,2367,'pyre_page_title_custom_subheader',''),(3644,2367,'pyre_page_title_height',''),(3645,2367,'pyre_page_title_bg_parallax','default'),(3646,2367,'fusion_builder_status','active'),(3647,2367,'pyre_portfolio_content_length','default'),(3648,2367,'pyre_portfolio_text_layout','default'),(3649,2367,'pyre_portfolio_featured_image_size','default'),(3650,2367,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3651,2367,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3652,2367,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3653,2367,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3654,2398,'pyre_page_title','no'),(3655,2398,'pyre_slider_type','rev'),(3656,2398,'pyre_slider','0'),(3657,2398,'pyre_wooslider','0'),(3658,2398,'pyre_flexslider','0'),(3659,2398,'pyre_revslider','Avada_Full_Width'),(3660,2398,'pyre_fallback',''),(3661,2398,'pyre_full_width','no'),(3662,2398,'pyre_sidebar_position','right'),(3663,2398,'pyre_page_bg_color',''),(3664,2398,'pyre_page_bg',''),(3665,2398,'pyre_page_bg_full','no'),(3666,2398,'pyre_page_bg_repeat','repeat'),(3667,2398,'pyre_page_title_bar_bg',''),(3668,2398,'_wp_page_template','100-width.php'),(3669,2398,'pyre_page_title_bar_bg_color',''),(3670,2398,'pyre_elasticslider','0'),(3671,2398,'avada_post_views_count','70'),(3672,2398,'pyre_portfolio_excerpt',''),(3673,2398,'pyre_portfolio_full_width','yes'),(3674,2398,'pyre_portfolio_sidebar_position','default'),(3675,2398,'pyre_portfolio_filters','yes'),(3676,2398,'pyre_page_bg_layout','default'),(3677,2398,'pyre_wide_page_bg',''),(3678,2398,'pyre_wide_page_bg_color',''),(3679,2398,'pyre_wide_page_bg_full','no'),(3680,2398,'pyre_wide_page_bg_repeat','repeat'),(3681,2398,'pyre_header_bg',''),(3682,2398,'pyre_header_bg_color',''),(3683,2398,'pyre_header_bg_full','no'),(3684,2398,'pyre_header_bg_repeat','repeat'),(3685,2398,'pyre_page_title_text','yes'),(3686,2398,'pyre_page_title_bar_bg_retina',''),(3687,2398,'pyre_page_title_bar_bg_full','no'),(3688,2398,'pyre_image_rollover_icons','linkzoom'),(3689,2398,'pyre_link_icon_url',''),(3690,2398,'avada_post_views_count','0'),(3691,2398,'pyre_page_title','no'),(3692,2398,'pyre_slider_type','rev'),(3693,2398,'pyre_slider','0'),(3694,2398,'pyre_wooslider','0'),(3695,2398,'pyre_flexslider','0'),(3696,2398,'pyre_revslider','Avada_Full_Width'),(3697,2398,'pyre_fallback',''),(3698,2398,'pyre_full_width','no'),(3699,2398,'pyre_sidebar_position','right'),(3700,2398,'pyre_page_bg_color',''),(3701,2398,'pyre_page_bg',''),(3702,2398,'pyre_page_bg_full','no'),(3703,2398,'pyre_page_bg_repeat','repeat'),(3704,2398,'pyre_page_title_bar_bg',''),(3705,2398,'_wp_page_template','100-width.php'),(3706,2398,'pyre_page_title_bar_bg_color',''),(3707,2398,'pyre_elasticslider','0'),(3708,2398,'slide_template','default'),(3709,2398,'pyre_slider_position','default'),(3710,2398,'pyre_display_header','yes'),(3711,2398,'pyre_transparent_header','default'),(3712,2398,'pyre_displayed_menu','default'),(3713,2398,'pyre_display_footer','default'),(3714,2398,'pyre_display_copyright','default'),(3715,2398,'pyre_main_top_padding',''),(3716,2398,'pyre_main_bottom_padding','0px'),(3717,2398,'pyre_hundredp_padding',''),(3718,2398,'pyre_page_title_custom_text',''),(3719,2398,'pyre_page_title_custom_subheader',''),(3720,2398,'pyre_page_title_height',''),(3721,2398,'pyre_page_title_bg_parallax','default'),(3722,2398,'fusion_builder_status','active'),(3723,2398,'pyre_portfolio_featured_image_size','default'),(3724,2398,'pyre_portfolio_content_length','default'),(3725,2398,'pyre_portfolio_text_layout','default'),(3726,2398,'pyre_show_first_featured_image','no'),(3727,2398,'pyre_header_100_width','default'),(3728,2398,'pyre_header_bg_opacity',''),(3729,2398,'pyre_footer_100_width','default'),(3730,2398,'pyre_portfolio_width_100','no'),(3731,2398,'pyre_portfolio_column_spacing',''),(3732,2398,'pyre_page_title_text_alignment','default'),(3733,2398,'pyre_page_title_text_size',''),(3734,2398,'pyre_page_title_custom_subheader_text_size',''),(3735,2398,'pyre_page_title_font_color',''),(3736,2398,'pyre_page_title_breadcrumbs_search_bar','default'),(3737,2398,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3738,2398,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(3739,2398,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3740,2398,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3741,2466,'pyre_page_title','yes'),(3742,2466,'pyre_slider_type','no'),(3743,2466,'pyre_slider','0'),(3744,2466,'pyre_wooslider','0'),(3745,2466,'pyre_flexslider','0'),(3746,2466,'pyre_revslider','0'),(3747,2466,'pyre_fallback',''),(3748,2466,'pyre_full_width','no'),(3749,2466,'pyre_sidebar_position','right'),(3750,2466,'pyre_page_bg_color',''),(3751,2466,'pyre_page_bg',''),(3752,2466,'pyre_page_bg_full','no'),(3753,2466,'pyre_page_bg_repeat','repeat'),(3754,2466,'pyre_page_title_bar_bg',''),(3755,2466,'_wp_page_template','faqs.php'),(3756,2466,'pyre_page_title_bar_bg_color',''),(3757,2466,'avada_post_views_count','68'),(3758,2466,'pyre_page_title_bar_bg_color',''),(3759,2466,'pyre_page_title','yes'),(3760,2466,'pyre_slider_type','no'),(3761,2466,'pyre_slider','0'),(3762,2466,'pyre_wooslider','0'),(3763,2466,'pyre_flexslider','0'),(3764,2466,'pyre_revslider','0'),(3765,2466,'pyre_fallback',''),(3766,2466,'pyre_full_width','no'),(3767,2466,'pyre_sidebar_position','right'),(3768,2466,'pyre_page_bg_color',''),(3769,2466,'pyre_page_bg',''),(3770,2466,'pyre_page_bg_full','no'),(3771,2466,'pyre_page_bg_repeat','repeat'),(3772,2466,'pyre_page_title_bar_bg',''),(3773,2466,'_wp_page_template','faqs.php'),(3774,2466,'pyre_elasticslider','0'),(3775,2466,'pyre_portfolio_excerpt',''),(3776,2466,'pyre_portfolio_full_width','yes'),(3777,2466,'pyre_portfolio_sidebar_position','default'),(3778,2466,'pyre_portfolio_filters','yes'),(3779,2466,'pyre_page_bg_layout','default'),(3780,2466,'pyre_wide_page_bg',''),(3781,2466,'pyre_wide_page_bg_color',''),(3782,2466,'pyre_wide_page_bg_full','no'),(3783,2466,'pyre_wide_page_bg_repeat','repeat'),(3784,2466,'pyre_header_bg',''),(3785,2466,'pyre_header_bg_color',''),(3786,2466,'pyre_header_bg_full','no'),(3787,2466,'pyre_header_bg_repeat','repeat'),(3788,2466,'pyre_page_title_text','yes'),(3789,2466,'pyre_page_title_custom_text',''),(3790,2466,'pyre_page_title_custom_subheader',''),(3791,2466,'pyre_page_title_height',''),(3792,2466,'pyre_page_title_bar_bg_retina',''),(3793,2466,'pyre_page_title_bar_bg_full','default'),(3794,2466,'pyre_page_title_bg_parallax','default'),(3795,2466,'pyre_image_rollover_icons','linkzoom'),(3796,2466,'pyre_link_icon_url',''),(3797,2466,'slide_template','default'),(3798,2466,'fusion_builder_status','active'),(3799,2466,'pyre_slider_position','default'),(3800,2466,'pyre_main_top_padding',''),(3801,2466,'pyre_main_bottom_padding',''),(3802,2466,'pyre_hundredp_padding',''),(3803,2466,'pyre_display_header','yes'),(3804,2466,'pyre_transparent_header','default'),(3805,2466,'pyre_displayed_menu','default'),(3806,2466,'pyre_display_footer','default'),(3807,2466,'pyre_display_copyright','default'),(3808,2466,'pyre_portfolio_content_length','default'),(3809,2466,'pyre_portfolio_text_layout','default'),(3810,2466,'pyre_portfolio_featured_image_size','default'),(3811,2466,'pyre_show_first_featured_image','no'),(3812,2466,'pyre_header_100_width','default'),(3813,2466,'pyre_header_bg_opacity',''),(3814,2466,'pyre_footer_100_width','default'),(3815,2466,'pyre_portfolio_width_100','no'),(3816,2466,'pyre_portfolio_column_spacing',''),(3817,2466,'pyre_page_title_text_alignment','default'),(3818,2466,'pyre_page_title_text_size',''),(3819,2466,'pyre_page_title_custom_subheader_text_size',''),(3820,2466,'pyre_page_title_font_color',''),(3821,2466,'pyre_page_title_breadcrumbs_search_bar','default'),(3822,2466,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3823,2466,'sbg_selected_sidebar_replacement','a:1:{i:0;s:3:\"FAQ\";}'),(3824,2466,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3825,2466,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3826,2660,'pyre_page_title','no'),(3827,2660,'pyre_slider_type','flex'),(3828,2660,'pyre_slider','0'),(3829,2660,'pyre_wooslider','final_full_screen'),(3830,2660,'pyre_flexslider','0'),(3831,2660,'pyre_revslider','0'),(3832,2660,'pyre_fallback',''),(3833,2660,'pyre_full_width','no'),(3834,2660,'pyre_sidebar_position','right'),(3835,2660,'pyre_page_bg_color',''),(3836,2660,'pyre_page_bg',''),(3837,2660,'pyre_page_bg_full','no'),(3838,2660,'pyre_page_bg_repeat','repeat'),(3839,2660,'pyre_page_title_bar_bg',''),(3840,2660,'pyre_page_title_bar_bg_color',''),(3841,2660,'_wp_page_template','100-width.php'),(3842,2660,'pyre_elasticslider','0'),(3843,2660,'avada_post_views_count','68'),(3844,2660,'pyre_portfolio_excerpt',''),(3845,2660,'pyre_portfolio_full_width','yes'),(3846,2660,'pyre_portfolio_sidebar_position','default'),(3847,2660,'pyre_portfolio_filters','yes'),(3848,2660,'pyre_page_bg_layout','default'),(3849,2660,'pyre_wide_page_bg',''),(3850,2660,'pyre_wide_page_bg_color',''),(3851,2660,'pyre_wide_page_bg_full','no'),(3852,2660,'pyre_wide_page_bg_repeat','repeat'),(3853,2660,'pyre_header_bg',''),(3854,2660,'pyre_header_bg_color',''),(3855,2660,'pyre_header_bg_full','no'),(3856,2660,'pyre_header_bg_repeat','repeat'),(3857,2660,'pyre_page_title_text','yes'),(3858,2660,'pyre_page_title_bar_bg_retina',''),(3859,2660,'pyre_page_title_bar_bg_full','no'),(3860,2660,'pyre_image_rollover_icons','linkzoom'),(3861,2660,'pyre_link_icon_url',''),(3862,2660,'pyre_page_bg_color',''),(3863,2660,'avada_post_views_count','0'),(3864,2660,'pyre_sidebar_position','right'),(3865,2660,'pyre_full_width','no'),(3866,2660,'pyre_fallback',''),(3867,2660,'pyre_revslider','0'),(3868,2660,'pyre_flexslider','0'),(3869,2660,'pyre_wooslider','final_full_screen'),(3870,2660,'pyre_slider','0'),(3871,2660,'pyre_slider_type','flex'),(3872,2660,'pyre_page_title','no'),(3873,2660,'pyre_page_bg',''),(3874,2660,'pyre_page_bg_full','no'),(3875,2660,'pyre_page_bg_repeat','repeat'),(3876,2660,'pyre_page_title_bar_bg',''),(3877,2660,'pyre_page_title_bar_bg_color',''),(3878,2660,'_wp_page_template','100-width.php'),(3879,2660,'pyre_elasticslider','0'),(3880,2660,'slide_template','default'),(3881,2660,'pyre_slider_position','default'),(3882,2660,'pyre_display_header','yes'),(3883,2660,'pyre_transparent_header','default'),(3884,2660,'pyre_displayed_menu','default'),(3885,2660,'pyre_display_footer','default'),(3886,2660,'pyre_display_copyright','default'),(3887,2660,'pyre_main_top_padding','0px'),(3888,2660,'pyre_main_bottom_padding','0px'),(3889,2660,'pyre_hundredp_padding',''),(3890,2660,'pyre_page_title_custom_text',''),(3891,2660,'pyre_page_title_custom_subheader',''),(3892,2660,'pyre_page_title_height',''),(3893,2660,'pyre_page_title_bg_parallax','default'),(3894,2660,'fusion_builder_status','active'),(3895,2660,'pyre_portfolio_content_length','default'),(3896,2660,'pyre_portfolio_text_layout','default'),(3897,2660,'pyre_portfolio_featured_image_size','default'),(3898,2660,'pyre_show_first_featured_image','no'),(3899,2660,'pyre_header_100_width','default'),(3900,2660,'pyre_header_bg_opacity',''),(3901,2660,'pyre_footer_100_width','default'),(3902,2660,'pyre_portfolio_width_100','no'),(3903,2660,'pyre_portfolio_column_spacing',''),(3904,2660,'pyre_page_title_text_alignment','default'),(3905,2660,'pyre_page_title_text_size',''),(3906,2660,'pyre_page_title_custom_subheader_text_size',''),(3907,2660,'pyre_page_title_font_color',''),(3908,2660,'pyre_page_title_breadcrumbs_search_bar','default'),(3909,2660,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3910,2660,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(3911,2660,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3912,2660,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3913,2712,'pyre_page_title','yes'),(3914,2712,'pyre_slider_type','no'),(3915,2712,'pyre_slider','0'),(3916,2712,'pyre_wooslider','0'),(3917,2712,'pyre_flexslider','0'),(3918,2712,'pyre_revslider','0'),(3919,2712,'pyre_fallback',''),(3920,2712,'pyre_full_width','no'),(3921,2712,'pyre_sidebar_position','right'),(3922,2712,'pyre_page_bg_color',''),(3923,2712,'pyre_page_bg',''),(3924,2712,'pyre_page_bg_full','no'),(3925,2712,'pyre_page_bg_repeat','repeat'),(3926,2712,'pyre_page_title_bar_bg',''),(3927,2712,'pyre_page_title_bar_bg_color',''),(3928,2712,'_wp_page_template','default'),(3929,2712,'pyre_elasticslider','0'),(3930,2712,'avada_post_views_count','62'),(3931,2712,'pyre_portfolio_excerpt',''),(3932,2712,'pyre_portfolio_full_width','yes'),(3933,2712,'pyre_portfolio_sidebar_position','default'),(3934,2712,'pyre_portfolio_filters','yes'),(3935,2712,'pyre_page_bg_layout','default'),(3936,2712,'pyre_wide_page_bg',''),(3937,2712,'pyre_wide_page_bg_color',''),(3938,2712,'pyre_wide_page_bg_full','no'),(3939,2712,'pyre_wide_page_bg_repeat','repeat'),(3940,2712,'pyre_header_bg',''),(3941,2712,'pyre_header_bg_color',''),(3942,2712,'pyre_header_bg_full','no'),(3943,2712,'pyre_header_bg_repeat','repeat'),(3944,2712,'pyre_page_title_text','yes'),(3945,2712,'pyre_page_title_bar_bg_retina',''),(3946,2712,'pyre_page_title_bar_bg_full','no'),(3947,2712,'pyre_image_rollover_icons','linkzoom'),(3948,2712,'pyre_link_icon_url',''),(3949,2712,'avada_post_views_count','0'),(3950,2712,'pyre_page_title','yes'),(3951,2712,'pyre_slider_type','no'),(3952,2712,'pyre_slider','0'),(3953,2712,'pyre_wooslider','0'),(3954,2712,'pyre_flexslider','0'),(3955,2712,'pyre_revslider','0'),(3956,2712,'pyre_fallback',''),(3957,2712,'pyre_full_width','no'),(3958,2712,'pyre_sidebar_position','right'),(3959,2712,'pyre_page_bg_color',''),(3960,2712,'pyre_page_bg',''),(3961,2712,'pyre_page_bg_full','no'),(3962,2712,'pyre_page_bg_repeat','repeat'),(3963,2712,'pyre_page_title_bar_bg',''),(3964,2712,'pyre_page_title_bar_bg_color',''),(3965,2712,'_wp_page_template','default'),(3966,2712,'pyre_elasticslider','0'),(3967,2712,'slide_template','default'),(3968,2712,'pyre_slider_position','default'),(3969,2712,'pyre_display_header','yes'),(3970,2712,'pyre_transparent_header','default'),(3971,2712,'pyre_displayed_menu','default'),(3972,2712,'pyre_display_footer','default'),(3973,2712,'pyre_display_copyright','default'),(3974,2712,'pyre_main_top_padding',''),(3975,2712,'pyre_main_bottom_padding',''),(3976,2712,'pyre_hundredp_padding',''),(3977,2712,'pyre_page_title_custom_text',''),(3978,2712,'pyre_page_title_custom_subheader',''),(3979,2712,'pyre_page_title_height',''),(3980,2712,'pyre_page_title_bg_parallax','default'),(3981,2712,'fusion_builder_status','active'),(3982,2712,'pyre_portfolio_content_length','default'),(3983,2712,'pyre_portfolio_text_layout','default'),(3984,2712,'pyre_portfolio_featured_image_size','default'),(3985,2712,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3986,2712,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(3987,2712,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3988,2712,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(3989,2745,'pyre_page_title','no'),(3990,2745,'pyre_slider_type','no'),(3991,2745,'pyre_slider','0'),(3992,2745,'pyre_wooslider','0'),(3993,2745,'pyre_flexslider','0'),(3994,2745,'pyre_revslider','0'),(3995,2745,'pyre_fallback',''),(3996,2745,'pyre_full_width','no'),(3997,2745,'pyre_sidebar_position','left'),(3998,2745,'pyre_page_bg_color',''),(3999,2745,'pyre_page_bg',''),(4000,2745,'pyre_page_bg_full','no'),(4001,2745,'pyre_page_bg_repeat','repeat'),(4002,2745,'pyre_page_title_bar_bg',''),(4003,2745,'pyre_page_title_bar_bg_color',''),(4004,2745,'_wp_page_template','100-width.php'),(4005,2745,'pyre_elasticslider','0'),(4006,2745,'avada_post_views_count','64'),(4007,2745,'pyre_portfolio_excerpt',''),(4008,2745,'pyre_portfolio_full_width','yes'),(4009,2745,'pyre_portfolio_sidebar_position','default'),(4010,2745,'pyre_portfolio_filters','yes'),(4011,2745,'pyre_page_bg_layout','default'),(4012,2745,'pyre_wide_page_bg',''),(4013,2745,'pyre_wide_page_bg_color',''),(4014,2745,'pyre_wide_page_bg_full','no'),(4015,2745,'pyre_wide_page_bg_repeat','repeat'),(4016,2745,'pyre_header_bg',''),(4017,2745,'pyre_header_bg_color',''),(4018,2745,'pyre_header_bg_full','no'),(4019,2745,'pyre_header_bg_repeat','repeat'),(4020,2745,'pyre_page_title_text','yes'),(4021,2745,'pyre_page_title_bar_bg_retina',''),(4022,2745,'pyre_page_title_bar_bg_full','no'),(4023,2745,'pyre_image_rollover_icons','linkzoom'),(4024,2745,'pyre_link_icon_url',''),(4025,2745,'avada_post_views_count','0'),(4026,2745,'pyre_page_title','no'),(4027,2745,'pyre_slider_type','no'),(4028,2745,'pyre_slider','0'),(4029,2745,'pyre_wooslider','0'),(4030,2745,'pyre_flexslider','0'),(4031,2745,'pyre_revslider','0'),(4032,2745,'pyre_fallback',''),(4033,2745,'pyre_full_width','no'),(4034,2745,'pyre_sidebar_position','left'),(4035,2745,'pyre_page_bg_color',''),(4036,2745,'pyre_page_bg',''),(4037,2745,'pyre_page_bg_full','no'),(4038,2745,'pyre_page_bg_repeat','repeat'),(4039,2745,'pyre_page_title_bar_bg',''),(4040,2745,'pyre_page_title_bar_bg_color',''),(4041,2745,'_wp_page_template','100-width.php'),(4042,2745,'pyre_elasticslider','0'),(4043,2745,'slide_template','default'),(4044,2745,'pyre_slider_position','default'),(4045,2745,'pyre_display_header','yes'),(4046,2745,'pyre_transparent_header','default'),(4047,2745,'pyre_displayed_menu','default'),(4048,2745,'pyre_display_footer','default'),(4049,2745,'pyre_display_copyright','default'),(4050,2745,'pyre_main_top_padding','0px'),(4051,2745,'pyre_main_bottom_padding','0px'),(4052,2745,'pyre_hundredp_padding',''),(4053,2745,'pyre_page_title_custom_text',''),(4054,2745,'pyre_page_title_custom_subheader',''),(4055,2745,'pyre_page_title_height',''),(4056,2745,'pyre_page_title_bg_parallax','default'),(4057,2745,'fusion_builder_status','active'),(4058,2745,'pyre_portfolio_content_length','default'),(4059,2745,'pyre_portfolio_text_layout','default'),(4060,2745,'pyre_portfolio_featured_image_size','default'),(4061,2745,'pyre_show_first_featured_image','no'),(4062,2745,'pyre_header_100_width','default'),(4063,2745,'pyre_header_bg_opacity','0'),(4064,2745,'pyre_footer_100_width','default'),(4065,2745,'pyre_portfolio_width_100','no'),(4066,2745,'pyre_portfolio_column_spacing',''),(4067,2745,'pyre_page_title_text_alignment','default'),(4068,2745,'pyre_page_title_text_size',''),(4069,2745,'pyre_page_title_custom_subheader_text_size',''),(4070,2745,'pyre_page_title_font_color',''),(4071,2745,'pyre_page_title_breadcrumbs_search_bar','default'),(4072,2745,'pyre_avada_rev_styles','default'),(4073,2745,'pyre_sidebar_bg_color',''),(4074,2745,'pyre_page_title_100_width','default'),(4075,2745,'pyre_page_title_mobile_height',''),(4076,2745,'pyre_page_title_bar_borders_color',''),(4077,2745,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4078,2745,'sbg_selected_sidebar_replacement','a:1:{i:0;s:17:\"Home Page Sidebar\";}'),(4079,2745,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4080,2745,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4081,2776,'pyre_page_title','yes'),(4082,2776,'pyre_slider_type','no'),(4083,2776,'pyre_slider','0'),(4084,2776,'pyre_wooslider','0'),(4085,2776,'pyre_flexslider','0'),(4086,2776,'pyre_revslider','0'),(4087,2776,'pyre_fallback',''),(4088,2776,'pyre_full_width','no'),(4089,2776,'pyre_sidebar_position','right'),(4090,2776,'pyre_page_bg_color',''),(4091,2776,'pyre_page_bg',''),(4092,2776,'pyre_page_bg_full','no'),(4093,2776,'pyre_page_bg_repeat','repeat'),(4094,2776,'pyre_page_title_bar_bg',''),(4095,2776,'pyre_page_title_bar_bg_color',''),(4096,2776,'_wp_page_template','default'),(4097,2776,'pyre_elasticslider','0'),(4098,2776,'avada_post_views_count','85'),(4099,2776,'pyre_portfolio_excerpt',''),(4100,2776,'pyre_portfolio_full_width','yes'),(4101,2776,'pyre_portfolio_sidebar_position','default'),(4102,2776,'pyre_portfolio_filters','yes'),(4103,2776,'pyre_page_bg_layout','default'),(4104,2776,'pyre_wide_page_bg',''),(4105,2776,'pyre_wide_page_bg_color',''),(4106,2776,'pyre_wide_page_bg_full','no'),(4107,2776,'pyre_wide_page_bg_repeat','repeat'),(4108,2776,'pyre_header_bg',''),(4109,2776,'pyre_header_bg_color',''),(4110,2776,'pyre_header_bg_full','no'),(4111,2776,'pyre_header_bg_repeat','repeat'),(4112,2776,'pyre_page_title_text','yes'),(4113,2776,'pyre_page_title_bar_bg_retina',''),(4114,2776,'pyre_page_title_bar_bg_full','no'),(4115,2776,'pyre_image_rollover_icons','linkzoom'),(4116,2776,'pyre_link_icon_url',''),(4117,2776,'pyre_page_title_bar_bg_color',''),(4118,2776,'pyre_page_title_bar_bg',''),(4119,2776,'pyre_page_bg_repeat','repeat'),(4120,2776,'pyre_page_bg_full','no'),(4121,2776,'pyre_page_bg',''),(4122,2776,'pyre_page_bg_color',''),(4123,2776,'pyre_sidebar_position','right'),(4124,2776,'pyre_full_width','no'),(4125,2776,'pyre_fallback',''),(4126,2776,'pyre_revslider','0'),(4127,2776,'pyre_flexslider','0'),(4128,2776,'pyre_wooslider','0'),(4129,2776,'pyre_slider','0'),(4130,2776,'pyre_slider_type','no'),(4131,2776,'pyre_page_title','yes'),(4132,2776,'_wp_page_template','default'),(4133,2776,'pyre_elasticslider','0'),(4134,2776,'slide_template','default'),(4135,2776,'pyre_main_top_padding',''),(4136,2776,'pyre_main_bottom_padding',''),(4137,2776,'pyre_hundredp_padding',''),(4138,2776,'pyre_page_title_custom_text',''),(4139,2776,'pyre_page_title_custom_subheader',''),(4140,2776,'pyre_page_title_height',''),(4141,2776,'pyre_page_title_bg_parallax','default'),(4142,2776,'pyre_slider_position','default'),(4143,2776,'pyre_display_header','yes'),(4144,2776,'pyre_transparent_header','default'),(4145,2776,'pyre_displayed_menu','default'),(4146,2776,'pyre_display_footer','default'),(4147,2776,'pyre_display_copyright','default'),(4148,2776,'fusion_builder_status','active'),(4149,2776,'pyre_portfolio_content_length','default'),(4150,2776,'pyre_portfolio_text_layout','default'),(4151,2776,'pyre_portfolio_featured_image_size','default'),(4152,2776,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4153,2776,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4154,2776,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4155,2776,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4156,2803,'pyre_page_title','yes'),(4157,2803,'pyre_slider_type','no'),(4158,2803,'pyre_slider','0'),(4159,2803,'pyre_wooslider','0'),(4160,2803,'pyre_flexslider','0'),(4161,2803,'pyre_revslider','0'),(4162,2803,'pyre_fallback',''),(4163,2803,'pyre_full_width','no'),(4164,2803,'pyre_sidebar_position','right'),(4165,2803,'pyre_page_bg_color',''),(4166,2803,'pyre_page_bg',''),(4167,2803,'pyre_page_bg_full','no'),(4168,2803,'pyre_page_bg_repeat','repeat'),(4169,2803,'pyre_page_title_bar_bg',''),(4170,2803,'pyre_page_title_bar_bg_color',''),(4171,2803,'_wp_page_template','default'),(4172,2803,'pyre_elasticslider','0'),(4173,2803,'avada_post_views_count','72'),(4174,2803,'pyre_portfolio_excerpt',''),(4175,2803,'pyre_portfolio_full_width','yes'),(4176,2803,'pyre_portfolio_sidebar_position','default'),(4177,2803,'pyre_portfolio_filters','yes'),(4178,2803,'pyre_page_bg_layout','default'),(4179,2803,'pyre_wide_page_bg',''),(4180,2803,'pyre_wide_page_bg_color',''),(4181,2803,'pyre_wide_page_bg_full','no'),(4182,2803,'pyre_wide_page_bg_repeat','repeat'),(4183,2803,'pyre_header_bg',''),(4184,2803,'pyre_header_bg_color',''),(4185,2803,'pyre_header_bg_full','no'),(4186,2803,'pyre_header_bg_repeat','repeat'),(4187,2803,'pyre_page_title_text','yes'),(4188,2803,'pyre_page_title_bar_bg_retina',''),(4189,2803,'pyre_page_title_bar_bg_full','no'),(4190,2803,'pyre_image_rollover_icons','linkzoom'),(4191,2803,'pyre_link_icon_url',''),(4192,2803,'pyre_page_title','yes'),(4193,2803,'pyre_slider_type','no'),(4194,2803,'pyre_slider','0'),(4195,2803,'pyre_wooslider','0'),(4196,2803,'pyre_flexslider','0'),(4197,2803,'pyre_revslider','0'),(4198,2803,'pyre_fallback',''),(4199,2803,'pyre_full_width','no'),(4200,2803,'pyre_sidebar_position','right'),(4201,2803,'pyre_page_bg_color',''),(4202,2803,'pyre_page_bg',''),(4203,2803,'pyre_page_bg_full','no'),(4204,2803,'pyre_page_bg_repeat','repeat'),(4205,2803,'pyre_page_title_bar_bg',''),(4206,2803,'pyre_page_title_bar_bg_color',''),(4207,2803,'_wp_page_template','default'),(4208,2803,'pyre_elasticslider','0'),(4209,2803,'slide_template','default'),(4210,2803,'pyre_main_top_padding',''),(4211,2803,'pyre_main_bottom_padding','0px'),(4212,2803,'pyre_hundredp_padding',''),(4213,2803,'pyre_page_title_custom_text',''),(4214,2803,'pyre_page_title_custom_subheader',''),(4215,2803,'pyre_page_title_height',''),(4216,2803,'pyre_page_title_bg_parallax','default'),(4217,2803,'pyre_slider_position','default'),(4218,2803,'pyre_display_header','yes'),(4219,2803,'pyre_transparent_header','default'),(4220,2803,'pyre_displayed_menu','default'),(4221,2803,'pyre_display_footer','default'),(4222,2803,'pyre_display_copyright','default'),(4223,2803,'fusion_builder_status','active'),(4224,2803,'pyre_portfolio_content_length','default'),(4225,2803,'pyre_portfolio_text_layout','default'),(4226,2803,'pyre_portfolio_featured_image_size','default'),(4227,2803,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4228,2803,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4229,2803,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4230,2803,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4231,3073,'pyre_page_title','no'),(4232,3073,'pyre_slider_type','no'),(4233,3073,'pyre_slider','0'),(4234,3073,'pyre_wooslider','0'),(4235,3073,'pyre_flexslider','0'),(4236,3073,'pyre_revslider','0'),(4237,3073,'pyre_fallback',''),(4238,3073,'pyre_full_width','no'),(4239,3073,'pyre_sidebar_position','right'),(4240,3073,'pyre_page_bg_color',''),(4241,3073,'pyre_page_bg','http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/06/wood_bkgd.jpg'),(4242,3073,'pyre_page_bg_full','no'),(4243,3073,'pyre_page_bg_repeat','repeat'),(4244,3073,'pyre_page_title_bar_bg',''),(4245,3073,'pyre_page_title_bar_bg_color',''),(4246,3073,'_wp_page_template','default'),(4247,3073,'pyre_elasticslider','0'),(4248,3073,'avada_post_views_count','82'),(4249,3073,'pyre_portfolio_excerpt',''),(4250,3073,'pyre_portfolio_full_width','yes'),(4251,3073,'pyre_portfolio_sidebar_position','default'),(4252,3073,'pyre_portfolio_filters','yes'),(4253,3073,'pyre_page_bg_layout','boxed'),(4254,3073,'pyre_wide_page_bg',''),(4255,3073,'pyre_wide_page_bg_color',''),(4256,3073,'pyre_wide_page_bg_full','no'),(4257,3073,'pyre_wide_page_bg_repeat','repeat'),(4258,3073,'pyre_header_bg',''),(4259,3073,'pyre_header_bg_color',''),(4260,3073,'pyre_header_bg_full','no'),(4261,3073,'pyre_header_bg_repeat','repeat'),(4262,3073,'pyre_page_title_text','yes'),(4263,3073,'pyre_page_title_bar_bg_retina',''),(4264,3073,'pyre_page_title_bar_bg_full','no'),(4265,3073,'pyre_image_rollover_icons','linkzoom'),(4266,3073,'pyre_link_icon_url',''),(4267,3073,'avada_post_views_count','0'),(4268,3073,'pyre_page_title','no'),(4269,3073,'pyre_slider_type','no'),(4270,3073,'pyre_slider','0'),(4271,3073,'pyre_wooslider','0'),(4272,3073,'pyre_flexslider','0'),(4273,3073,'pyre_revslider','0'),(4274,3073,'pyre_fallback',''),(4275,3073,'pyre_full_width','no'),(4276,3073,'pyre_sidebar_position','right'),(4277,3073,'pyre_page_bg_color',''),(4278,3073,'pyre_page_bg','http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/06/wood_bkgd.jpg'),(4279,3073,'pyre_page_bg_full','no'),(4280,3073,'pyre_page_bg_repeat','repeat'),(4281,3073,'pyre_page_title_bar_bg',''),(4282,3073,'pyre_page_title_bar_bg_color',''),(4283,3073,'_wp_page_template','default'),(4284,3073,'pyre_elasticslider','0'),(4285,3073,'slide_template','default'),(4286,3073,'pyre_slider_position','default'),(4287,3073,'pyre_display_header','yes'),(4288,3073,'pyre_transparent_header','default'),(4289,3073,'pyre_displayed_menu','default'),(4290,3073,'pyre_display_footer','default'),(4291,3073,'pyre_display_copyright','default'),(4292,3073,'pyre_main_top_padding','0px'),(4293,3073,'pyre_main_bottom_padding','0px'),(4294,3073,'pyre_hundredp_padding',''),(4295,3073,'pyre_page_title_custom_text',''),(4296,3073,'pyre_page_title_custom_subheader',''),(4297,3073,'pyre_page_title_height',''),(4298,3073,'pyre_page_title_bg_parallax','default'),(4299,3073,'fusion_builder_status','active'),(4300,3073,'pyre_portfolio_content_length','default'),(4301,3073,'pyre_portfolio_text_layout','default'),(4302,3073,'pyre_portfolio_featured_image_size','default'),(4303,3073,'pyre_show_first_featured_image','no'),(4304,3073,'pyre_header_100_width','default'),(4305,3073,'pyre_header_bg_opacity',''),(4306,3073,'pyre_footer_100_width','default'),(4307,3073,'pyre_portfolio_width_100','no'),(4308,3073,'pyre_portfolio_column_spacing',''),(4309,3073,'pyre_page_title_text_alignment','default'),(4310,3073,'pyre_page_title_text_size',''),(4311,3073,'pyre_page_title_custom_subheader_text_size',''),(4312,3073,'pyre_page_title_font_color',''),(4313,3073,'pyre_page_title_breadcrumbs_search_bar','default'),(4314,3073,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4315,3073,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4316,3073,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4317,3073,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4318,3089,'pyre_page_title','no'),(4319,3089,'pyre_slider_type','elastic'),(4320,3089,'pyre_slider','0'),(4321,3089,'pyre_wooslider','0'),(4322,3089,'pyre_flexslider','0'),(4323,3089,'pyre_revslider','0'),(4324,3089,'pyre_elasticslider','group1'),(4325,3089,'pyre_fallback',''),(4326,3089,'pyre_full_width','no'),(4327,3089,'pyre_sidebar_position','right'),(4328,3089,'pyre_page_bg_color',''),(4329,3089,'pyre_page_bg',''),(4330,3089,'pyre_page_bg_full','no'),(4331,3089,'pyre_page_bg_repeat','repeat'),(4332,3089,'pyre_page_title_bar_bg',''),(4333,3089,'pyre_page_title_bar_bg_color',''),(4334,3089,'_wp_page_template','default'),(4335,3089,'avada_post_views_count','50'),(4336,3089,'pyre_portfolio_excerpt',''),(4337,3089,'pyre_portfolio_full_width','yes'),(4338,3089,'pyre_portfolio_sidebar_position','default'),(4339,3089,'pyre_portfolio_filters','yes'),(4340,3089,'pyre_page_bg_layout','default'),(4341,3089,'pyre_wide_page_bg',''),(4342,3089,'pyre_wide_page_bg_color',''),(4343,3089,'pyre_wide_page_bg_full','no'),(4344,3089,'pyre_wide_page_bg_repeat','repeat'),(4345,3089,'pyre_header_bg',''),(4346,3089,'pyre_header_bg_color',''),(4347,3089,'pyre_header_bg_full','no'),(4348,3089,'pyre_header_bg_repeat','repeat'),(4349,3089,'pyre_page_title_text','yes'),(4350,3089,'pyre_page_title_bar_bg_retina',''),(4351,3089,'pyre_page_title_bar_bg_full','no'),(4352,3089,'pyre_image_rollover_icons','linkzoom'),(4353,3089,'pyre_link_icon_url',''),(4354,3089,'pyre_page_title','no'),(4355,3089,'pyre_slider_type','elastic'),(4356,3089,'pyre_slider','0'),(4357,3089,'pyre_wooslider','0'),(4358,3089,'pyre_flexslider','0'),(4359,3089,'pyre_revslider','0'),(4360,3089,'pyre_elasticslider','group1'),(4361,3089,'pyre_fallback',''),(4362,3089,'pyre_full_width','no'),(4363,3089,'pyre_sidebar_position','right'),(4364,3089,'pyre_page_bg_color',''),(4365,3089,'pyre_page_bg',''),(4366,3089,'pyre_page_bg_full','no'),(4367,3089,'pyre_page_bg_repeat','repeat'),(4368,3089,'pyre_page_title_bar_bg',''),(4369,3089,'pyre_page_title_bar_bg_color',''),(4370,3089,'_wp_page_template','default'),(4371,3089,'slide_template','default'),(4372,3089,'pyre_main_top_padding',''),(4373,3089,'pyre_main_bottom_padding',''),(4374,3089,'pyre_hundredp_padding',''),(4375,3089,'pyre_page_title_custom_text',''),(4376,3089,'pyre_page_title_custom_subheader',''),(4377,3089,'pyre_page_title_height',''),(4378,3089,'pyre_page_title_bg_parallax','default'),(4379,3089,'pyre_slider_position','default'),(4380,3089,'pyre_display_header','yes'),(4381,3089,'pyre_transparent_header','default'),(4382,3089,'pyre_displayed_menu','default'),(4383,3089,'pyre_display_footer','default'),(4384,3089,'pyre_display_copyright','default'),(4385,3089,'fusion_builder_status','active'),(4386,3089,'pyre_portfolio_content_length','default'),(4387,3089,'pyre_portfolio_text_layout','default'),(4388,3089,'pyre_portfolio_featured_image_size','default'),(4389,3089,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4390,3089,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4391,3089,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4392,3089,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4393,3474,'pyre_page_title','yes'),(4394,3474,'pyre_slider_type','no'),(4395,3474,'pyre_slider','0'),(4396,3474,'pyre_wooslider','0'),(4397,3474,'pyre_flexslider','0'),(4398,3474,'pyre_revslider','0'),(4399,3474,'pyre_elasticslider','0'),(4400,3474,'pyre_fallback',''),(4401,3474,'pyre_full_width','no'),(4402,3474,'pyre_sidebar_position','left'),(4403,3474,'pyre_page_bg_color',''),(4404,3474,'pyre_page_bg',''),(4405,3474,'pyre_page_bg_full','no'),(4406,3474,'pyre_page_bg_repeat','repeat'),(4407,3474,'pyre_page_title_bar_bg',''),(4408,3474,'pyre_page_title_bar_bg_color',''),(4409,3474,'_wp_page_template','side-navigation.php'),(4410,3474,'pyre_portfolio_excerpt',''),(4411,3474,'pyre_portfolio_full_width','yes'),(4412,3474,'pyre_portfolio_sidebar_position','right'),(4413,3474,'avada_post_views_count','65'),(4414,3474,'pyre_portfolio_filters','yes'),(4415,3474,'pyre_page_bg_layout','default'),(4416,3474,'pyre_wide_page_bg',''),(4417,3474,'pyre_wide_page_bg_color',''),(4418,3474,'pyre_wide_page_bg_full','no'),(4419,3474,'pyre_wide_page_bg_repeat','repeat'),(4420,3474,'pyre_header_bg',''),(4421,3474,'pyre_header_bg_color',''),(4422,3474,'pyre_header_bg_full','no'),(4423,3474,'pyre_header_bg_repeat','repeat'),(4424,3474,'pyre_page_title_text','yes'),(4425,3474,'pyre_page_title_bar_bg_retina',''),(4426,3474,'pyre_page_title_bar_bg_full','no'),(4427,3474,'pyre_image_rollover_icons','linkzoom'),(4428,3474,'pyre_link_icon_url',''),(4429,3474,'pyre_page_title_bar_bg_color',''),(4430,3474,'pyre_page_title_bar_bg',''),(4431,3474,'pyre_page_bg_repeat','repeat'),(4432,3474,'pyre_page_bg_full','no'),(4433,3474,'pyre_page_bg',''),(4434,3474,'pyre_page_bg_color',''),(4435,3474,'pyre_sidebar_position','left'),(4436,3474,'pyre_full_width','no'),(4437,3474,'pyre_fallback',''),(4438,3474,'pyre_elasticslider','0'),(4439,3474,'pyre_revslider','0'),(4440,3474,'pyre_flexslider','0'),(4441,3474,'pyre_wooslider','0'),(4442,3474,'pyre_slider','0'),(4443,3474,'pyre_slider_type','no'),(4444,3474,'pyre_page_title','yes'),(4445,3474,'pyre_portfolio_excerpt',''),(4446,3474,'pyre_portfolio_full_width','yes'),(4447,3474,'pyre_portfolio_sidebar_position','right'),(4448,3474,'_wp_page_template','side-navigation.php'),(4449,3474,'pyre_page_title_custom_text',''),(4450,3474,'pyre_page_title_custom_subheader',''),(4451,3474,'pyre_page_title_height',''),(4452,3474,'pyre_page_title_bg_parallax','default'),(4453,3474,'slide_template','default'),(4454,3474,'fusion_builder_status','active'),(4455,3474,'pyre_slider_position','default'),(4456,3474,'pyre_main_top_padding',''),(4457,3474,'pyre_main_bottom_padding',''),(4458,3474,'pyre_hundredp_padding',''),(4459,3474,'pyre_display_header','yes'),(4460,3474,'pyre_transparent_header','default'),(4461,3474,'pyre_displayed_menu','default'),(4462,3474,'pyre_display_footer','default'),(4463,3474,'pyre_display_copyright','default'),(4464,3474,'pyre_portfolio_content_length','default'),(4465,3474,'pyre_portfolio_text_layout','default'),(4466,3474,'pyre_portfolio_featured_image_size','default'),(4467,3474,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4468,3474,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4469,3474,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4470,3474,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4471,3492,'pyre_page_title','no'),(4472,3492,'pyre_slider_type','flex'),(4473,3492,'pyre_slider','0'),(4474,3492,'pyre_wooslider','final_full_width'),(4475,3492,'pyre_flexslider','0'),(4476,3492,'pyre_revslider','0'),(4477,3492,'pyre_elasticslider','0'),(4478,3492,'pyre_fallback',''),(4479,3492,'pyre_full_width','no'),(4480,3492,'pyre_sidebar_position','right'),(4481,3492,'pyre_page_bg_color',''),(4482,3492,'pyre_page_bg',''),(4483,3492,'pyre_page_bg_full','no'),(4484,3492,'pyre_page_bg_repeat','repeat'),(4485,3492,'pyre_page_title_bar_bg',''),(4486,3492,'pyre_page_title_bar_bg_color',''),(4487,3492,'_wp_page_template','100-width.php'),(4488,3492,'avada_post_views_count','62'),(4489,3492,'pyre_portfolio_excerpt',''),(4490,3492,'pyre_portfolio_full_width','yes'),(4491,3492,'pyre_portfolio_sidebar_position','default'),(4492,3492,'pyre_portfolio_filters','yes'),(4493,3492,'pyre_page_bg_layout','default'),(4494,3492,'pyre_wide_page_bg',''),(4495,3492,'pyre_wide_page_bg_color',''),(4496,3492,'pyre_wide_page_bg_full','no'),(4497,3492,'pyre_wide_page_bg_repeat','repeat'),(4498,3492,'pyre_header_bg',''),(4499,3492,'pyre_header_bg_color',''),(4500,3492,'pyre_header_bg_full','no'),(4501,3492,'pyre_header_bg_repeat','repeat'),(4502,3492,'pyre_page_title_text','yes'),(4503,3492,'pyre_page_title_bar_bg_retina',''),(4504,3492,'pyre_page_title_bar_bg_full','no'),(4505,3492,'pyre_image_rollover_icons','linkzoom'),(4506,3492,'pyre_link_icon_url',''),(4507,3492,'slide_template','default'),(4508,3492,'pyre_slider_position','default'),(4509,3492,'pyre_display_header','yes'),(4510,3492,'pyre_transparent_header','default'),(4511,3492,'pyre_displayed_menu','default'),(4512,3492,'pyre_display_footer','default'),(4513,3492,'pyre_display_copyright','default'),(4514,3492,'pyre_main_top_padding',''),(4515,3492,'pyre_main_bottom_padding','0px'),(4516,3492,'pyre_hundredp_padding',''),(4517,3492,'pyre_page_title_custom_text',''),(4518,3492,'pyre_page_title_custom_subheader',''),(4519,3492,'pyre_page_title_height',''),(4520,3492,'pyre_page_title_bg_parallax','default'),(4521,3492,'fusion_builder_status','active'),(4522,3492,'pyre_portfolio_content_length','default'),(4523,3492,'pyre_portfolio_text_layout','default'),(4524,3492,'pyre_portfolio_featured_image_size','default'),(4525,3492,'pyre_show_first_featured_image','no'),(4526,3492,'pyre_header_100_width','default'),(4527,3492,'pyre_header_bg_opacity',''),(4528,3492,'pyre_footer_100_width','default'),(4529,3492,'pyre_portfolio_width_100','no'),(4530,3492,'pyre_portfolio_column_spacing',''),(4531,3492,'pyre_page_title_text_alignment','default'),(4532,3492,'pyre_page_title_text_size',''),(4533,3492,'pyre_page_title_custom_subheader_text_size',''),(4534,3492,'pyre_page_title_font_color',''),(4535,3492,'pyre_page_title_breadcrumbs_search_bar','default'),(4536,3492,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4537,3492,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(4538,3492,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4539,3492,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4540,3494,'pyre_page_title','no'),(4541,3494,'pyre_slider_type','no'),(4542,3494,'pyre_slider','0'),(4543,3494,'pyre_wooslider','0'),(4544,3494,'pyre_flexslider','0'),(4545,3494,'pyre_revslider','0'),(4546,3494,'pyre_elasticslider','0'),(4547,3494,'pyre_fallback',''),(4548,3494,'pyre_full_width','no'),(4549,3494,'pyre_sidebar_position','right'),(4550,3494,'pyre_page_bg_color',''),(4551,3494,'pyre_page_bg',''),(4552,3494,'pyre_page_bg_full','no'),(4553,3494,'pyre_page_bg_repeat','repeat'),(4554,3494,'pyre_page_title_bar_bg',''),(4555,3494,'pyre_page_title_bar_bg_color',''),(4556,3494,'_wp_page_template','100-width.php'),(4557,3494,'avada_post_views_count','58'),(4558,3494,'pyre_portfolio_excerpt',''),(4559,3494,'pyre_portfolio_full_width','yes'),(4560,3494,'pyre_portfolio_sidebar_position','default'),(4561,3494,'pyre_portfolio_filters','yes'),(4562,3494,'pyre_page_bg_layout','default'),(4563,3494,'pyre_wide_page_bg',''),(4564,3494,'pyre_wide_page_bg_color',''),(4565,3494,'pyre_wide_page_bg_full','no'),(4566,3494,'pyre_wide_page_bg_repeat','repeat'),(4567,3494,'pyre_header_bg',''),(4568,3494,'pyre_header_bg_color',''),(4569,3494,'pyre_header_bg_full','no'),(4570,3494,'pyre_header_bg_repeat','repeat'),(4571,3494,'pyre_page_title_text','yes'),(4572,3494,'pyre_page_title_bar_bg_retina',''),(4573,3494,'pyre_page_title_bar_bg_full','no'),(4574,3494,'pyre_image_rollover_icons','linkzoom'),(4575,3494,'pyre_link_icon_url',''),(4576,3494,'pyre_page_title_custom_text',''),(4577,3494,'pyre_page_title_custom_subheader',''),(4578,3494,'pyre_page_title_height',''),(4579,3494,'pyre_page_title_bg_parallax','default'),(4580,3494,'slide_template','default'),(4581,3494,'pyre_slider_position','default'),(4582,3494,'pyre_display_header','yes'),(4583,3494,'pyre_transparent_header','default'),(4584,3494,'pyre_displayed_menu','default'),(4585,3494,'pyre_display_footer','default'),(4586,3494,'pyre_display_copyright','default'),(4587,3494,'pyre_main_top_padding','0px'),(4588,3494,'pyre_main_bottom_padding','0px'),(4589,3494,'pyre_hundredp_padding',''),(4590,3494,'fusion_builder_status','active'),(4591,3494,'pyre_portfolio_content_length','default'),(4592,3494,'pyre_portfolio_text_layout','default'),(4593,3494,'pyre_portfolio_featured_image_size','default'),(4594,3494,'pyre_show_first_featured_image','no'),(4595,3494,'pyre_header_100_width','default'),(4596,3494,'pyre_header_bg_opacity',''),(4597,3494,'pyre_footer_100_width','default'),(4598,3494,'pyre_portfolio_width_100','no'),(4599,3494,'pyre_portfolio_column_spacing',''),(4600,3494,'pyre_page_title_text_alignment','default'),(4601,3494,'pyre_page_title_text_size',''),(4602,3494,'pyre_page_title_custom_subheader_text_size',''),(4603,3494,'pyre_page_title_font_color',''),(4604,3494,'pyre_page_title_breadcrumbs_search_bar','default'),(4605,3494,'pyre_avada_rev_styles','default'),(4606,3494,'pyre_sidebar_bg_color',''),(4607,3494,'pyre_page_title_100_width','default'),(4608,3494,'pyre_page_title_mobile_height',''),(4609,3494,'pyre_page_title_bar_borders_color',''),(4610,3494,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4611,3494,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(4612,3494,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4613,3494,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4614,3496,'pyre_page_title','yes'),(4615,3496,'pyre_slider_type','no'),(4616,3496,'pyre_slider','0'),(4617,3496,'pyre_wooslider','0'),(4618,3496,'pyre_flexslider','0'),(4619,3496,'pyre_revslider','0'),(4620,3496,'pyre_elasticslider','0'),(4621,3496,'pyre_fallback',''),(4622,3496,'pyre_full_width','no'),(4623,3496,'pyre_sidebar_position','right'),(4624,3496,'pyre_page_bg_color',''),(4625,3496,'pyre_page_bg',''),(4626,3496,'pyre_page_bg_full','no'),(4627,3496,'pyre_page_bg_repeat','repeat'),(4628,3496,'pyre_page_title_bar_bg',''),(4629,3496,'pyre_page_title_bar_bg_color',''),(4630,3496,'_wp_page_template','default'),(4631,3496,'avada_post_views_count','95'),(4632,3496,'pyre_portfolio_excerpt',''),(4633,3496,'pyre_portfolio_full_width','yes'),(4634,3496,'pyre_portfolio_sidebar_position','default'),(4635,3496,'pyre_portfolio_filters','yes'),(4636,3496,'pyre_page_bg_layout','default'),(4637,3496,'pyre_wide_page_bg',''),(4638,3496,'pyre_wide_page_bg_color',''),(4639,3496,'pyre_wide_page_bg_full','no'),(4640,3496,'pyre_wide_page_bg_repeat','repeat'),(4641,3496,'pyre_header_bg',''),(4642,3496,'pyre_header_bg_color',''),(4643,3496,'pyre_header_bg_full','no'),(4644,3496,'pyre_header_bg_repeat','repeat'),(4645,3496,'pyre_page_title_text','yes'),(4646,3496,'pyre_page_title_bar_bg_retina',''),(4647,3496,'pyre_page_title_bar_bg_full','no'),(4648,3496,'pyre_image_rollover_icons','linkzoom'),(4649,3496,'pyre_link_icon_url',''),(4650,3496,'pyre_page_title','yes'),(4651,3496,'pyre_slider_type','no'),(4652,3496,'pyre_slider','0'),(4653,3496,'pyre_wooslider','0'),(4654,3496,'pyre_flexslider','0'),(4655,3496,'pyre_revslider','0'),(4656,3496,'pyre_elasticslider','0'),(4657,3496,'pyre_fallback',''),(4658,3496,'pyre_full_width','no'),(4659,3496,'pyre_sidebar_position','right'),(4660,3496,'pyre_page_bg_color',''),(4661,3496,'pyre_page_bg',''),(4662,3496,'pyre_page_bg_full','no'),(4663,3496,'pyre_page_bg_repeat','repeat'),(4664,3496,'pyre_page_title_bar_bg',''),(4665,3496,'pyre_page_title_bar_bg_color',''),(4666,3496,'_wp_page_template','default'),(4667,3496,'slide_template','default'),(4668,3496,'pyre_slider_position','default'),(4669,3496,'pyre_display_header','yes'),(4670,3496,'pyre_transparent_header','default'),(4671,3496,'pyre_displayed_menu','default'),(4672,3496,'pyre_display_footer','default'),(4673,3496,'pyre_display_copyright','default'),(4674,3496,'pyre_main_top_padding',''),(4675,3496,'pyre_main_bottom_padding',''),(4676,3496,'pyre_hundredp_padding',''),(4677,3496,'pyre_page_title_custom_text',''),(4678,3496,'pyre_page_title_custom_subheader',''),(4679,3496,'pyre_page_title_height',''),(4680,3496,'pyre_page_title_bg_parallax','default'),(4681,3496,'fusion_builder_status','active'),(4682,3496,'pyre_portfolio_content_length','default'),(4683,3496,'pyre_portfolio_text_layout','default'),(4684,3496,'pyre_portfolio_featured_image_size','default'),(4685,3496,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4686,3496,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4687,3496,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4688,3496,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4689,3524,'pyre_page_title','yes'),(4690,3524,'pyre_slider_type','no'),(4691,3524,'pyre_slider','0'),(4692,3524,'pyre_wooslider','0'),(4693,3524,'pyre_flexslider','0'),(4694,3524,'pyre_revslider','0'),(4695,3524,'pyre_elasticslider','0'),(4696,3524,'pyre_fallback',''),(4697,3524,'pyre_full_width','no'),(4698,3524,'pyre_sidebar_position','right'),(4699,3524,'pyre_portfolio_excerpt',''),(4700,3524,'pyre_portfolio_full_width','yes'),(4701,3524,'pyre_portfolio_sidebar_position','right'),(4702,3524,'pyre_page_bg_color',''),(4703,3524,'pyre_page_bg',''),(4704,3524,'pyre_page_bg_full','no'),(4705,3524,'pyre_page_bg_repeat','repeat'),(4706,3524,'pyre_page_title_bar_bg',''),(4707,3524,'pyre_page_title_bar_bg_color',''),(4708,3524,'_wp_page_template','portfolio-one-column-text.php'),(4709,3524,'avada_post_views_count','62'),(4710,3524,'pyre_page_title','yes'),(4711,3524,'pyre_slider_type','no'),(4712,3524,'pyre_slider','0'),(4713,3524,'pyre_wooslider','0'),(4714,3524,'pyre_flexslider','0'),(4715,3524,'pyre_revslider','0'),(4716,3524,'pyre_elasticslider','0'),(4717,3524,'pyre_fallback',''),(4718,3524,'pyre_full_width','no'),(4719,3524,'pyre_sidebar_position','right'),(4720,3524,'pyre_portfolio_excerpt',''),(4721,3524,'pyre_portfolio_full_width','yes'),(4722,3524,'pyre_portfolio_sidebar_position','right'),(4723,3524,'pyre_page_bg_color',''),(4724,3524,'pyre_page_bg',''),(4725,3524,'pyre_page_bg_full','no'),(4726,3524,'pyre_page_bg_repeat','repeat'),(4727,3524,'pyre_page_title_bar_bg',''),(4728,3524,'pyre_page_title_bar_bg_color',''),(4729,3524,'_wp_page_template','portfolio-one-column-text.php'),(4730,3524,'fusion_builder_status','inactive'),(4731,3524,'pyre_slider_position','default'),(4732,3524,'pyre_main_top_padding',''),(4733,3524,'pyre_main_bottom_padding',''),(4734,3524,'pyre_hundredp_padding',''),(4735,3524,'pyre_display_header','yes'),(4736,3524,'pyre_header_bg',''),(4737,3524,'pyre_header_bg_color',''),(4738,3524,'pyre_header_bg_full','no'),(4739,3524,'pyre_header_bg_repeat','repeat'),(4740,3524,'pyre_transparent_header','default'),(4741,3524,'pyre_displayed_menu','default'),(4742,3524,'pyre_display_footer','default'),(4743,3524,'pyre_display_copyright','default'),(4744,3524,'pyre_page_bg_layout','default'),(4745,3524,'pyre_wide_page_bg',''),(4746,3524,'pyre_wide_page_bg_color',''),(4747,3524,'pyre_wide_page_bg_full','no'),(4748,3524,'pyre_wide_page_bg_repeat','repeat'),(4749,3524,'pyre_portfolio_filters','yes'),(4750,3524,'pyre_portfolio_featured_image_size','default'),(4751,3524,'pyre_page_title_text','yes'),(4752,3524,'pyre_page_title_custom_text',''),(4753,3524,'pyre_page_title_custom_subheader',''),(4754,3524,'pyre_page_title_height',''),(4755,3524,'pyre_page_title_bar_bg_retina',''),(4756,3524,'pyre_page_title_bar_bg_full','default'),(4757,3524,'pyre_page_title_bg_parallax','default'),(4758,3524,'slide_template','default'),(4759,3524,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(4760,3524,'pyre_portfolio_content_length','default'),(4761,3524,'pyre_portfolio_text_layout','default'),(4762,3524,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4763,3524,'sbg_selected_sidebar_replacement','a:1:{i:0;s:9:\"Portfolio\";}'),(4764,3524,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4765,3524,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4766,3526,'pyre_page_title','yes'),(4767,3526,'pyre_slider_type','no'),(4768,3526,'pyre_slider','0'),(4769,3526,'pyre_wooslider','0'),(4770,3526,'pyre_flexslider','0'),(4771,3526,'pyre_revslider','0'),(4772,3526,'pyre_elasticslider','0'),(4773,3526,'pyre_fallback',''),(4774,3526,'pyre_full_width','no'),(4775,3526,'pyre_sidebar_position','right'),(4776,3526,'pyre_portfolio_excerpt','40'),(4777,3526,'pyre_portfolio_full_width','yes'),(4778,3526,'pyre_portfolio_sidebar_position','right'),(4779,3526,'pyre_page_bg_color',''),(4780,3526,'pyre_page_bg',''),(4781,3526,'pyre_page_bg_full','no'),(4782,3526,'pyre_page_bg_repeat','repeat'),(4783,3526,'pyre_page_title_bar_bg',''),(4784,3526,'pyre_page_title_bar_bg_color',''),(4785,3526,'_wp_page_template','portfolio-two-column-text.php'),(4786,3526,'avada_post_views_count','52'),(4787,3526,'pyre_portfolio_filters','yes'),(4788,3526,'pyre_page_bg_layout','default'),(4789,3526,'pyre_wide_page_bg',''),(4790,3526,'pyre_wide_page_bg_color',''),(4791,3526,'pyre_wide_page_bg_full','no'),(4792,3526,'pyre_wide_page_bg_repeat','repeat'),(4793,3526,'pyre_header_bg',''),(4794,3526,'pyre_header_bg_color',''),(4795,3526,'pyre_header_bg_full','no'),(4796,3526,'pyre_header_bg_repeat','repeat'),(4797,3526,'pyre_page_title_text','yes'),(4798,3526,'pyre_page_title_bar_bg_retina',''),(4799,3526,'pyre_page_title_bar_bg_full','no'),(4800,3526,'pyre_image_rollover_icons','linkzoom'),(4801,3526,'pyre_link_icon_url',''),(4802,3526,'pyre_page_title','yes'),(4803,3526,'pyre_slider_type','no'),(4804,3526,'pyre_slider','0'),(4805,3526,'pyre_wooslider','0'),(4806,3526,'pyre_flexslider','0'),(4807,3526,'pyre_revslider','0'),(4808,3526,'pyre_elasticslider','0'),(4809,3526,'pyre_fallback',''),(4810,3526,'pyre_full_width','no'),(4811,3526,'pyre_sidebar_position','right'),(4812,3526,'pyre_portfolio_excerpt','40'),(4813,3526,'pyre_portfolio_full_width','yes'),(4814,3526,'pyre_portfolio_sidebar_position','right'),(4815,3526,'pyre_page_bg_color',''),(4816,3526,'pyre_page_bg',''),(4817,3526,'pyre_page_bg_full','no'),(4818,3526,'pyre_page_bg_repeat','repeat'),(4819,3526,'pyre_page_title_bar_bg',''),(4820,3526,'pyre_page_title_bar_bg_color',''),(4821,3526,'_wp_page_template','portfolio-two-column-text.php'),(4822,3526,'slide_template','default'),(4823,3526,'fusion_builder_status','active'),(4824,3526,'pyre_slider_position','default'),(4825,3526,'pyre_main_top_padding',''),(4826,3526,'pyre_main_bottom_padding',''),(4827,3526,'pyre_hundredp_padding',''),(4828,3526,'pyre_display_header','yes'),(4829,3526,'pyre_transparent_header','default'),(4830,3526,'pyre_displayed_menu','default'),(4831,3526,'pyre_display_footer','default'),(4832,3526,'pyre_display_copyright','default'),(4833,3526,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(4834,3526,'pyre_portfolio_featured_image_size','default'),(4835,3526,'pyre_page_title_custom_text',''),(4836,3526,'pyre_page_title_custom_subheader',''),(4837,3526,'pyre_page_title_height',''),(4838,3526,'pyre_page_title_bg_parallax','default'),(4839,3526,'pyre_portfolio_content_length','default'),(4840,3526,'pyre_portfolio_text_layout','default'),(4841,3526,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4842,3526,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4843,3526,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4844,3526,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4845,3528,'pyre_page_title','yes'),(4846,3528,'pyre_slider_type','no'),(4847,3528,'pyre_slider','0'),(4848,3528,'pyre_wooslider','0'),(4849,3528,'pyre_flexslider','0'),(4850,3528,'pyre_revslider','0'),(4851,3528,'pyre_elasticslider','0'),(4852,3528,'pyre_fallback',''),(4853,3528,'pyre_full_width','no'),(4854,3528,'pyre_sidebar_position','right'),(4855,3528,'pyre_portfolio_excerpt','32'),(4856,3528,'pyre_portfolio_full_width','yes'),(4857,3528,'pyre_portfolio_sidebar_position','right'),(4858,3528,'pyre_page_bg_color',''),(4859,3528,'pyre_page_bg',''),(4860,3528,'pyre_page_bg_full','no'),(4861,3528,'pyre_page_bg_repeat','repeat'),(4862,3528,'pyre_page_title_bar_bg',''),(4863,3528,'pyre_page_title_bar_bg_color',''),(4864,3528,'_wp_page_template','portfolio-three-column-text.php'),(4865,3528,'avada_post_views_count','51'),(4866,3528,'pyre_portfolio_filters','yes'),(4867,3528,'pyre_page_bg_layout','default'),(4868,3528,'pyre_wide_page_bg',''),(4869,3528,'pyre_wide_page_bg_color',''),(4870,3528,'pyre_wide_page_bg_full','no'),(4871,3528,'pyre_wide_page_bg_repeat','repeat'),(4872,3528,'pyre_header_bg',''),(4873,3528,'pyre_header_bg_color',''),(4874,3528,'pyre_header_bg_full','no'),(4875,3528,'pyre_header_bg_repeat','repeat'),(4876,3528,'pyre_page_title_text','yes'),(4877,3528,'pyre_page_title_bar_bg_retina',''),(4878,3528,'pyre_page_title_bar_bg_full','no'),(4879,3528,'pyre_image_rollover_icons','linkzoom'),(4880,3528,'pyre_link_icon_url',''),(4881,3528,'pyre_page_title','yes'),(4882,3528,'pyre_slider_type','no'),(4883,3528,'pyre_slider','0'),(4884,3528,'pyre_wooslider','0'),(4885,3528,'pyre_flexslider','0'),(4886,3528,'pyre_revslider','0'),(4887,3528,'pyre_elasticslider','0'),(4888,3528,'pyre_fallback',''),(4889,3528,'pyre_full_width','no'),(4890,3528,'pyre_sidebar_position','right'),(4891,3528,'pyre_portfolio_excerpt','32'),(4892,3528,'pyre_portfolio_full_width','yes'),(4893,3528,'pyre_portfolio_sidebar_position','right'),(4894,3528,'pyre_page_bg_color',''),(4895,3528,'pyre_page_bg',''),(4896,3528,'pyre_page_bg_full','no'),(4897,3528,'pyre_page_bg_repeat','repeat'),(4898,3528,'pyre_page_title_bar_bg',''),(4899,3528,'pyre_page_title_bar_bg_color',''),(4900,3528,'_wp_page_template','portfolio-three-column-text.php'),(4901,3528,'slide_template','default'),(4902,3528,'fusion_builder_status','inactive'),(4903,3528,'pyre_slider_position','default'),(4904,3528,'pyre_main_top_padding',''),(4905,3528,'pyre_main_bottom_padding',''),(4906,3528,'pyre_hundredp_padding',''),(4907,3528,'pyre_display_header','yes'),(4908,3528,'pyre_transparent_header','default'),(4909,3528,'pyre_displayed_menu','default'),(4910,3528,'pyre_display_footer','default'),(4911,3528,'pyre_display_copyright','default'),(4912,3528,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(4913,3528,'pyre_portfolio_featured_image_size','default'),(4914,3528,'pyre_page_title_custom_text',''),(4915,3528,'pyre_page_title_custom_subheader',''),(4916,3528,'pyre_page_title_height',''),(4917,3528,'pyre_page_title_bg_parallax','default'),(4918,3528,'pyre_portfolio_content_length','default'),(4919,3528,'pyre_portfolio_text_layout','default'),(4920,3528,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(4921,3528,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(4922,3528,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(4923,3528,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(4924,3530,'pyre_page_title','yes'),(4925,3530,'pyre_slider_type','no'),(4926,3530,'pyre_slider','0'),(4927,3530,'pyre_wooslider','0'),(4928,3530,'pyre_flexslider','0'),(4929,3530,'pyre_revslider','0'),(4930,3530,'pyre_elasticslider','0'),(4931,3530,'pyre_fallback',''),(4932,3530,'pyre_full_width','no'),(4933,3530,'pyre_sidebar_position','right'),(4934,3530,'pyre_portfolio_excerpt','15'),(4935,3530,'pyre_portfolio_full_width','yes'),(4936,3530,'pyre_portfolio_sidebar_position','right'),(4937,3530,'pyre_page_bg_color',''),(4938,3530,'pyre_page_bg',''),(4939,3530,'pyre_page_bg_full','no'),(4940,3530,'pyre_page_bg_repeat','repeat'),(4941,3530,'pyre_page_title_bar_bg',''),(4942,3530,'pyre_page_title_bar_bg_color',''),(4943,3530,'_wp_page_template','portfolio-four-column-text.php'),(4944,3530,'avada_post_views_count','59'),(4945,3530,'pyre_portfolio_filters','yes'),(4946,3530,'pyre_page_bg_layout','default'),(4947,3530,'pyre_wide_page_bg',''),(4948,3530,'pyre_wide_page_bg_color',''),(4949,3530,'pyre_wide_page_bg_full','no'),(4950,3530,'pyre_wide_page_bg_repeat','repeat'),(4951,3530,'pyre_header_bg',''),(4952,3530,'pyre_header_bg_color',''),(4953,3530,'pyre_header_bg_full','no'),(4954,3530,'pyre_header_bg_repeat','repeat'),(4955,3530,'pyre_page_title_text','yes'),(4956,3530,'pyre_page_title_bar_bg_retina',''),(4957,3530,'pyre_page_title_bar_bg_full','no'),(4958,3530,'pyre_image_rollover_icons','linkzoom'),(4959,3530,'pyre_link_icon_url',''),(4960,3530,'pyre_page_title','yes'),(4961,3530,'pyre_slider_type','no'),(4962,3530,'pyre_slider','0'),(4963,3530,'pyre_wooslider','0'),(4964,3530,'pyre_flexslider','0'),(4965,3530,'pyre_revslider','0'),(4966,3530,'pyre_elasticslider','0'),(4967,3530,'pyre_fallback',''),(4968,3530,'pyre_full_width','no'),(4969,3530,'pyre_sidebar_position','right'),(4970,3530,'pyre_portfolio_excerpt','15'),(4971,3530,'pyre_portfolio_full_width','yes'),(4972,3530,'pyre_portfolio_sidebar_position','right'),(4973,3530,'pyre_page_bg_color',''),(4974,3530,'pyre_page_bg',''),(4975,3530,'pyre_page_bg_full','no'),(4976,3530,'pyre_page_bg_repeat','repeat'),(4977,3530,'pyre_page_title_bar_bg',''),(4978,3530,'pyre_page_title_bar_bg_color',''),(4979,3530,'_wp_page_template','portfolio-four-column-text.php'),(4980,3530,'slide_template','default'),(4981,3530,'fusion_builder_status','inactive'),(4982,3530,'pyre_slider_position','default'),(4983,3530,'pyre_main_top_padding',''),(4984,3530,'pyre_main_bottom_padding',''),(4985,3530,'pyre_hundredp_padding',''),(4986,3530,'pyre_display_header','yes'),(4987,3530,'pyre_transparent_header','default'),(4988,3530,'pyre_displayed_menu','default'),(4989,3530,'pyre_display_footer','default'),(4990,3530,'pyre_display_copyright','default'),(4991,3530,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(4992,3530,'pyre_portfolio_featured_image_size','default'),(4993,3530,'pyre_page_title_custom_text',''),(4994,3530,'pyre_page_title_custom_subheader',''),(4995,3530,'pyre_page_title_height',''),(4996,3530,'pyre_page_title_bg_parallax','default'),(4997,3530,'pyre_portfolio_content_length','default'),(4998,3530,'pyre_portfolio_text_layout','default'),(4999,3530,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5000,3530,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5001,3530,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5002,3530,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5003,3610,'pyre_page_title','no'),(5004,3610,'pyre_page_title_text','yes'),(5005,3610,'pyre_slider_type','rev'),(5006,3610,'pyre_slider','0'),(5007,3610,'pyre_wooslider','0'),(5008,3610,'pyre_flexslider','0'),(5009,3610,'pyre_revslider','Avada_Full_Width'),(5010,3610,'pyre_elasticslider','0'),(5011,3610,'pyre_fallback',''),(5012,3610,'pyre_full_width','no'),(5013,3610,'pyre_sidebar_position','default'),(5014,3610,'pyre_portfolio_excerpt',''),(5015,3610,'pyre_portfolio_full_width','yes'),(5016,3610,'pyre_portfolio_sidebar_position','default'),(5017,3610,'pyre_portfolio_filters','yes'),(5018,3610,'pyre_page_bg_color',''),(5019,3610,'pyre_page_bg',''),(5020,3610,'pyre_page_bg_full','no'),(5021,3610,'pyre_page_bg_repeat','repeat'),(5022,3610,'pyre_page_title_bar_bg',''),(5023,3610,'pyre_page_title_bar_bg_retina',''),(5024,3610,'pyre_page_title_bar_bg_color',''),(5025,3610,'pyre_image_rollover_icons','linkzoom'),(5026,3610,'pyre_link_icon_url',''),(5027,3610,'_wp_page_template','100-width.php'),(5028,3610,'avada_post_views_count','494'),(5029,3610,'pyre_page_bg_layout','default'),(5030,3610,'pyre_wide_page_bg',''),(5031,3610,'pyre_wide_page_bg_color',''),(5032,3610,'pyre_wide_page_bg_full','no'),(5033,3610,'pyre_wide_page_bg_repeat','repeat'),(5034,3610,'pyre_header_bg',''),(5035,3610,'pyre_header_bg_color',''),(5036,3610,'pyre_header_bg_full','no'),(5037,3610,'pyre_header_bg_repeat','repeat'),(5038,3610,'pyre_page_title_bar_bg_full','no'),(5039,3610,'pyre_page_title_custom_text',''),(5040,3610,'pyre_page_title_custom_subheader',''),(5041,3610,'pyre_page_title_height',''),(5042,3610,'pyre_page_title_bg_parallax','default'),(5043,3610,'avada_post_views_count','13'),(5044,3610,'_wp_page_template','100-width.php'),(5045,3610,'pyre_link_icon_url',''),(5046,3610,'pyre_image_rollover_icons','linkzoom'),(5047,3610,'pyre_page_title_bar_bg_color',''),(5048,3610,'pyre_page_title_bar_bg_retina',''),(5049,3610,'pyre_page_title_bar_bg',''),(5050,3610,'pyre_page_bg_repeat','repeat'),(5051,3610,'pyre_page_bg_full','no'),(5052,3610,'pyre_page_bg',''),(5053,3610,'pyre_page_bg_color',''),(5054,3610,'pyre_portfolio_filters','yes'),(5055,3610,'pyre_portfolio_sidebar_position','default'),(5056,3610,'pyre_portfolio_full_width','yes'),(5057,3610,'pyre_portfolio_excerpt',''),(5058,3610,'pyre_sidebar_position','default'),(5059,3610,'pyre_full_width','no'),(5060,3610,'pyre_fallback',''),(5061,3610,'pyre_elasticslider','0'),(5062,3610,'pyre_revslider','Avada_Full_Width'),(5063,3610,'pyre_wooslider','0'),(5064,3610,'pyre_flexslider','0'),(5065,3610,'pyre_page_title','no'),(5066,3610,'pyre_page_title_text','yes'),(5067,3610,'pyre_slider_type','rev'),(5068,3610,'pyre_slider','0'),(5069,3610,'slide_template','default'),(5070,3610,'pyre_main_top_padding',''),(5071,3610,'pyre_main_bottom_padding','0px'),(5072,3610,'pyre_hundredp_padding',''),(5073,3610,'pyre_slider_position','default'),(5074,3610,'pyre_display_header','yes'),(5075,3610,'pyre_transparent_header','default'),(5076,3610,'pyre_displayed_menu','default'),(5077,3610,'pyre_display_footer','default'),(5078,3610,'pyre_display_copyright','default'),(5079,3610,'fusion_builder_status','active'),(5080,3610,'pyre_portfolio_content_length','default'),(5081,3610,'pyre_portfolio_text_layout','default'),(5082,3610,'pyre_portfolio_featured_image_size','default'),(5083,3610,'pyre_show_first_featured_image','no'),(5084,3610,'pyre_header_100_width','default'),(5085,3610,'pyre_header_bg_opacity',''),(5086,3610,'pyre_footer_100_width','default'),(5087,3610,'pyre_portfolio_width_100','no'),(5088,3610,'pyre_portfolio_column_spacing',''),(5089,3610,'pyre_page_title_text_alignment','default'),(5090,3610,'pyre_page_title_text_size',''),(5091,3610,'pyre_page_title_custom_subheader_text_size',''),(5092,3610,'pyre_page_title_font_color',''),(5093,3610,'pyre_page_title_breadcrumbs_search_bar','default'),(5094,3610,'pyre_avada_rev_styles','default'),(5095,3610,'pyre_sidebar_bg_color',''),(5096,3610,'pyre_page_title_100_width','default'),(5097,3610,'pyre_page_title_mobile_height',''),(5098,3610,'pyre_page_title_bar_borders_color',''),(5099,3610,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5100,3610,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5101,3610,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5102,3610,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5103,3628,'pyre_page_title','no'),(5104,3628,'pyre_page_title_text','yes'),(5105,3628,'pyre_slider_type','rev'),(5106,3628,'pyre_slider','0'),(5107,3628,'pyre_wooslider','0'),(5108,3628,'pyre_flexslider','0'),(5109,3628,'pyre_revslider','Avada_Full_Width'),(5110,3628,'pyre_elasticslider','0'),(5111,3628,'pyre_fallback',''),(5112,3628,'pyre_full_width','no'),(5113,3628,'pyre_sidebar_position','default'),(5114,3628,'pyre_portfolio_excerpt',''),(5115,3628,'pyre_portfolio_full_width','yes'),(5116,3628,'pyre_portfolio_sidebar_position','default'),(5117,3628,'pyre_portfolio_filters','yes'),(5118,3628,'pyre_page_bg_color',''),(5119,3628,'pyre_page_bg',''),(5120,3628,'pyre_page_bg_full','no'),(5121,3628,'pyre_page_bg_repeat','repeat'),(5122,3628,'pyre_page_title_bar_bg',''),(5123,3628,'pyre_page_title_bar_bg_retina',''),(5124,3628,'pyre_page_title_bar_bg_color',''),(5125,3628,'pyre_image_rollover_icons','linkzoom'),(5126,3628,'pyre_link_icon_url',''),(5127,3628,'_wp_page_template','100-width.php'),(5128,3628,'avada_post_views_count','66'),(5129,3628,'pyre_page_bg_layout','default'),(5130,3628,'pyre_wide_page_bg',''),(5131,3628,'pyre_wide_page_bg_color',''),(5132,3628,'pyre_wide_page_bg_full','no'),(5133,3628,'pyre_wide_page_bg_repeat','repeat'),(5134,3628,'pyre_header_bg',''),(5135,3628,'pyre_header_bg_color',''),(5136,3628,'pyre_header_bg_full','no'),(5137,3628,'pyre_header_bg_repeat','repeat'),(5138,3628,'pyre_page_title_bar_bg_full','no'),(5139,3628,'avada_post_views_count','1'),(5140,3628,'pyre_page_title','no'),(5141,3628,'pyre_page_title_text','yes'),(5142,3628,'pyre_slider_type','rev'),(5143,3628,'pyre_slider','0'),(5144,3628,'pyre_wooslider','0'),(5145,3628,'pyre_flexslider','0'),(5146,3628,'pyre_revslider','Avada_Full_Width'),(5147,3628,'pyre_elasticslider','0'),(5148,3628,'pyre_fallback',''),(5149,3628,'pyre_full_width','no'),(5150,3628,'pyre_sidebar_position','default'),(5151,3628,'pyre_portfolio_excerpt',''),(5152,3628,'pyre_portfolio_full_width','yes'),(5153,3628,'pyre_portfolio_sidebar_position','default'),(5154,3628,'pyre_portfolio_filters','yes'),(5155,3628,'pyre_page_bg_color',''),(5156,3628,'pyre_page_bg',''),(5157,3628,'pyre_page_bg_full','no'),(5158,3628,'pyre_page_bg_repeat','repeat'),(5159,3628,'pyre_page_title_bar_bg',''),(5160,3628,'pyre_page_title_bar_bg_retina',''),(5161,3628,'pyre_page_title_bar_bg_color',''),(5162,3628,'pyre_image_rollover_icons','linkzoom'),(5163,3628,'pyre_link_icon_url',''),(5164,3628,'_wp_page_template','100-width.php'),(5165,3628,'slide_template','default'),(5166,3628,'pyre_slider_position','default'),(5167,3628,'pyre_display_header','yes'),(5168,3628,'pyre_transparent_header','default'),(5169,3628,'pyre_displayed_menu','default'),(5170,3628,'pyre_display_footer','default'),(5171,3628,'pyre_display_copyright','default'),(5172,3628,'pyre_main_top_padding','40px'),(5173,3628,'pyre_main_bottom_padding','20px'),(5174,3628,'pyre_hundredp_padding',''),(5175,3628,'pyre_page_title_custom_text',''),(5176,3628,'pyre_page_title_custom_subheader',''),(5177,3628,'pyre_page_title_height',''),(5178,3628,'pyre_page_title_bg_parallax','default'),(5179,3628,'fusion_builder_status','active'),(5180,3628,'pyre_portfolio_content_length','default'),(5181,3628,'pyre_portfolio_text_layout','default'),(5182,3628,'pyre_portfolio_featured_image_size','default'),(5183,3628,'pyre_show_first_featured_image','no'),(5184,3628,'pyre_header_100_width','default'),(5185,3628,'pyre_header_bg_opacity',''),(5186,3628,'pyre_footer_100_width','default'),(5187,3628,'pyre_portfolio_width_100','no'),(5188,3628,'pyre_portfolio_column_spacing',''),(5189,3628,'pyre_page_title_text_alignment','default'),(5190,3628,'pyre_page_title_text_size',''),(5191,3628,'pyre_page_title_custom_subheader_text_size',''),(5192,3628,'pyre_page_title_font_color',''),(5193,3628,'pyre_page_title_breadcrumbs_search_bar','default'),(5194,3628,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5195,3628,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5196,3628,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5197,3628,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5198,3638,'pyre_page_title','no'),(5199,3638,'pyre_page_title_text','yes'),(5200,3638,'pyre_slider_type','no'),(5201,3638,'pyre_slider','0'),(5202,3638,'pyre_wooslider','0'),(5203,3638,'pyre_flexslider','0'),(5204,3638,'pyre_revslider','0'),(5205,3638,'pyre_elasticslider','0'),(5206,3638,'pyre_fallback',''),(5207,3638,'pyre_full_width','no'),(5208,3638,'pyre_sidebar_position','default'),(5209,3638,'pyre_portfolio_excerpt',''),(5210,3638,'pyre_portfolio_full_width','yes'),(5211,3638,'pyre_portfolio_sidebar_position','default'),(5212,3638,'pyre_portfolio_filters','yes'),(5213,3638,'pyre_page_bg_color',''),(5214,3638,'pyre_page_bg',''),(5215,3638,'pyre_page_bg_full','no'),(5216,3638,'pyre_page_bg_repeat','repeat'),(5217,3638,'pyre_page_title_bar_bg',''),(5218,3638,'pyre_page_title_bar_bg_retina',''),(5219,3638,'pyre_page_title_bar_bg_color',''),(5220,3638,'pyre_image_rollover_icons','linkzoom'),(5221,3638,'pyre_link_icon_url',''),(5222,3638,'_wp_page_template','100-width.php'),(5223,3638,'avada_post_views_count','76'),(5224,3638,'pyre_page_bg_layout','default'),(5225,3638,'pyre_wide_page_bg',''),(5226,3638,'pyre_wide_page_bg_color',''),(5227,3638,'pyre_wide_page_bg_full','no'),(5228,3638,'pyre_wide_page_bg_repeat','repeat'),(5229,3638,'pyre_header_bg',''),(5230,3638,'pyre_header_bg_color',''),(5231,3638,'pyre_header_bg_full','no'),(5232,3638,'pyre_header_bg_repeat','repeat'),(5233,3638,'pyre_page_title_bar_bg_full','no'),(5234,3638,'avada_post_views_count','1'),(5235,3638,'pyre_page_title','no'),(5236,3638,'pyre_page_title_text','yes'),(5237,3638,'pyre_slider_type','no'),(5238,3638,'pyre_slider','0'),(5239,3638,'pyre_wooslider','0'),(5240,3638,'pyre_flexslider','0'),(5241,3638,'pyre_revslider','0'),(5242,3638,'pyre_elasticslider','0'),(5243,3638,'pyre_fallback',''),(5244,3638,'pyre_full_width','no'),(5245,3638,'pyre_sidebar_position','default'),(5246,3638,'pyre_portfolio_excerpt',''),(5247,3638,'pyre_portfolio_full_width','yes'),(5248,3638,'pyre_portfolio_sidebar_position','default'),(5249,3638,'pyre_portfolio_filters','yes'),(5250,3638,'pyre_page_bg_color',''),(5251,3638,'pyre_page_bg',''),(5252,3638,'pyre_page_bg_full','no'),(5253,3638,'pyre_page_bg_repeat','repeat'),(5254,3638,'pyre_page_title_bar_bg',''),(5255,3638,'pyre_page_title_bar_bg_retina',''),(5256,3638,'pyre_page_title_bar_bg_color',''),(5257,3638,'pyre_image_rollover_icons','linkzoom'),(5258,3638,'pyre_link_icon_url',''),(5259,3638,'_wp_page_template','100-width.php'),(5260,3638,'slide_template','default'),(5261,3638,'pyre_slider_position','default'),(5262,3638,'pyre_display_header','yes'),(5263,3638,'pyre_transparent_header','default'),(5264,3638,'pyre_displayed_menu','default'),(5265,3638,'pyre_display_footer','default'),(5266,3638,'pyre_display_copyright','default'),(5267,3638,'pyre_main_top_padding','0px'),(5268,3638,'pyre_main_bottom_padding',''),(5269,3638,'pyre_hundredp_padding',''),(5270,3638,'pyre_page_title_custom_text',''),(5271,3638,'pyre_page_title_custom_subheader',''),(5272,3638,'pyre_page_title_height',''),(5273,3638,'pyre_page_title_bg_parallax','default'),(5274,3638,'fusion_builder_status','active'),(5275,3638,'pyre_portfolio_content_length','default'),(5276,3638,'pyre_portfolio_text_layout','default'),(5277,3638,'pyre_portfolio_featured_image_size','default'),(5278,3638,'pyre_show_first_featured_image','no'),(5279,3638,'pyre_header_100_width','default'),(5280,3638,'pyre_header_bg_opacity',''),(5281,3638,'pyre_footer_100_width','default'),(5282,3638,'pyre_portfolio_width_100','no'),(5283,3638,'pyre_portfolio_column_spacing',''),(5284,3638,'pyre_page_title_text_alignment','default'),(5285,3638,'pyre_page_title_text_size',''),(5286,3638,'pyre_page_title_custom_subheader_text_size',''),(5287,3638,'pyre_page_title_font_color',''),(5288,3638,'pyre_page_title_breadcrumbs_search_bar','default'),(5289,3638,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5290,3638,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5291,3638,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5292,3638,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5293,3652,'pyre_page_title','no'),(5294,3652,'pyre_page_title_text','yes'),(5295,3652,'pyre_slider_type','flex'),(5296,3652,'pyre_slider','0'),(5297,3652,'pyre_wooslider','final_full_width'),(5298,3652,'pyre_flexslider','0'),(5299,3652,'pyre_revslider','0'),(5300,3652,'pyre_elasticslider','0'),(5301,3652,'pyre_fallback',''),(5302,3652,'pyre_full_width','no'),(5303,3652,'pyre_sidebar_position','default'),(5304,3652,'pyre_portfolio_excerpt',''),(5305,3652,'pyre_portfolio_full_width','yes'),(5306,3652,'pyre_portfolio_sidebar_position','default'),(5307,3652,'pyre_portfolio_filters','yes'),(5308,3652,'pyre_page_bg_color',''),(5309,3652,'pyre_page_bg',''),(5310,3652,'pyre_page_bg_full','no'),(5311,3652,'pyre_page_bg_repeat','repeat'),(5312,3652,'pyre_page_title_bar_bg',''),(5313,3652,'pyre_page_title_bar_bg_retina',''),(5314,3652,'pyre_page_title_bar_bg_color',''),(5315,3652,'pyre_image_rollover_icons','linkzoom'),(5316,3652,'pyre_link_icon_url',''),(5317,3652,'_wp_page_template','default'),(5318,3652,'avada_post_views_count','158'),(5319,3652,'avada_post_views_count','0'),(5320,3652,'pyre_page_title','no'),(5321,3652,'pyre_page_title_text','yes'),(5322,3652,'pyre_slider_type','flex'),(5323,3652,'pyre_slider','0'),(5324,3652,'pyre_wooslider','final_full_width'),(5325,3652,'pyre_flexslider','0'),(5326,3652,'pyre_revslider','0'),(5327,3652,'pyre_elasticslider','0'),(5328,3652,'pyre_fallback',''),(5329,3652,'pyre_full_width','no'),(5330,3652,'pyre_sidebar_position','default'),(5331,3652,'pyre_portfolio_excerpt',''),(5332,3652,'pyre_portfolio_full_width','yes'),(5333,3652,'pyre_portfolio_sidebar_position','default'),(5334,3652,'pyre_portfolio_filters','yes'),(5335,3652,'pyre_page_bg_color',''),(5336,3652,'pyre_page_bg',''),(5337,3652,'pyre_page_bg_full','no'),(5338,3652,'pyre_page_bg_repeat','repeat'),(5339,3652,'pyre_page_title_bar_bg',''),(5340,3652,'pyre_page_title_bar_bg_retina',''),(5341,3652,'pyre_page_title_bar_bg_color',''),(5342,3652,'pyre_image_rollover_icons','linkzoom'),(5343,3652,'pyre_link_icon_url',''),(5344,3652,'_wp_page_template','default'),(5345,3652,'slide_template','default'),(5346,3652,'pyre_slider_position','default'),(5347,3652,'pyre_display_header','yes'),(5348,3652,'pyre_transparent_header','default'),(5349,3652,'pyre_displayed_menu','default'),(5350,3652,'pyre_display_footer','default'),(5351,3652,'pyre_display_copyright','default'),(5352,3652,'pyre_main_top_padding',''),(5353,3652,'pyre_main_bottom_padding',''),(5354,3652,'pyre_hundredp_padding',''),(5355,3652,'pyre_page_bg_layout','default'),(5356,3652,'pyre_wide_page_bg',''),(5357,3652,'pyre_wide_page_bg_color',''),(5358,3652,'pyre_wide_page_bg_full','no'),(5359,3652,'pyre_wide_page_bg_repeat','repeat'),(5360,3652,'pyre_header_bg',''),(5361,3652,'pyre_header_bg_color',''),(5362,3652,'pyre_header_bg_full','no'),(5363,3652,'pyre_header_bg_repeat','repeat'),(5364,3652,'pyre_page_title_custom_text',''),(5365,3652,'pyre_page_title_custom_subheader',''),(5366,3652,'pyre_page_title_height',''),(5367,3652,'pyre_page_title_bar_bg_full','default'),(5368,3652,'pyre_page_title_bg_parallax','default'),(5369,3652,'fusion_builder_status','active'),(5370,3652,'pyre_portfolio_content_length','default'),(5371,3652,'pyre_portfolio_text_layout','default'),(5372,3652,'pyre_portfolio_featured_image_size','default'),(5373,3652,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5374,3652,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5375,3652,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5376,3652,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5377,3655,'pyre_page_title','no'),(5378,3655,'pyre_page_title_text','yes'),(5379,3655,'pyre_slider_type','rev'),(5380,3655,'pyre_slider','0'),(5381,3655,'pyre_wooslider','0'),(5382,3655,'pyre_flexslider','0'),(5383,3655,'pyre_revslider','Avada_Full_Width'),(5384,3655,'pyre_elasticslider','0'),(5385,3655,'pyre_fallback',''),(5386,3655,'pyre_full_width','no'),(5387,3655,'pyre_sidebar_position','default'),(5388,3655,'pyre_portfolio_excerpt',''),(5389,3655,'pyre_portfolio_full_width','yes'),(5390,3655,'pyre_portfolio_sidebar_position','default'),(5391,3655,'pyre_portfolio_filters','yes'),(5392,3655,'pyre_page_bg_color',''),(5393,3655,'pyre_page_bg',''),(5394,3655,'pyre_page_bg_full','no'),(5395,3655,'pyre_page_bg_repeat','repeat'),(5396,3655,'pyre_page_title_bar_bg',''),(5397,3655,'pyre_page_title_bar_bg_retina',''),(5398,3655,'pyre_page_title_bar_bg_color',''),(5399,3655,'pyre_image_rollover_icons','linkzoom'),(5400,3655,'pyre_link_icon_url',''),(5401,3655,'_wp_page_template','100-width.php'),(5402,3655,'avada_post_views_count','105'),(5403,3655,'pyre_page_title','no'),(5404,3655,'pyre_page_title_text','yes'),(5405,3655,'pyre_slider_type','rev'),(5406,3655,'pyre_slider','0'),(5407,3655,'pyre_wooslider','0'),(5408,3655,'pyre_flexslider','0'),(5409,3655,'pyre_revslider','Avada_Full_Width'),(5410,3655,'pyre_elasticslider','0'),(5411,3655,'pyre_fallback',''),(5412,3655,'pyre_full_width','no'),(5413,3655,'pyre_sidebar_position','default'),(5414,3655,'pyre_portfolio_excerpt',''),(5415,3655,'pyre_portfolio_full_width','yes'),(5416,3655,'pyre_portfolio_sidebar_position','default'),(5417,3655,'pyre_portfolio_filters','yes'),(5418,3655,'pyre_page_bg_color',''),(5419,3655,'pyre_page_bg',''),(5420,3655,'pyre_page_bg_full','no'),(5421,3655,'pyre_page_bg_repeat','repeat'),(5422,3655,'pyre_page_title_bar_bg',''),(5423,3655,'pyre_page_title_bar_bg_retina',''),(5424,3655,'pyre_page_title_bar_bg_color',''),(5425,3655,'pyre_image_rollover_icons','linkzoom'),(5426,3655,'pyre_link_icon_url',''),(5427,3655,'_wp_page_template','100-width.php'),(5428,3655,'slide_template','default'),(5429,3655,'pyre_slider_position','default'),(5430,3655,'pyre_display_header','yes'),(5431,3655,'pyre_transparent_header','default'),(5432,3655,'pyre_displayed_menu','default'),(5433,3655,'pyre_display_footer','default'),(5434,3655,'pyre_display_copyright','default'),(5435,3655,'pyre_main_top_padding','0px'),(5436,3655,'pyre_main_bottom_padding','0px'),(5437,3655,'pyre_hundredp_padding',''),(5438,3655,'pyre_page_bg_layout','default'),(5439,3655,'pyre_wide_page_bg',''),(5440,3655,'pyre_wide_page_bg_color',''),(5441,3655,'pyre_wide_page_bg_full','no'),(5442,3655,'pyre_wide_page_bg_repeat','repeat'),(5443,3655,'pyre_header_bg',''),(5444,3655,'pyre_header_bg_color',''),(5445,3655,'pyre_header_bg_full','no'),(5446,3655,'pyre_header_bg_repeat','repeat'),(5447,3655,'pyre_page_title_custom_text',''),(5448,3655,'pyre_page_title_custom_subheader',''),(5449,3655,'pyre_page_title_height',''),(5450,3655,'pyre_page_title_bar_bg_full','default'),(5451,3655,'pyre_page_title_bg_parallax','default'),(5452,3655,'fusion_builder_status','active'),(5453,3655,'pyre_portfolio_content_length','default'),(5454,3655,'pyre_portfolio_text_layout','default'),(5455,3655,'pyre_portfolio_featured_image_size','default'),(5456,3655,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5457,3655,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5458,3655,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5459,3655,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5460,3658,'pyre_page_title','yes'),(5461,3658,'pyre_page_title_text','yes'),(5462,3658,'pyre_slider_type','no'),(5463,3658,'pyre_slider','0'),(5464,3658,'pyre_wooslider','0'),(5465,3658,'pyre_flexslider','0'),(5466,3658,'pyre_revslider','0'),(5467,3658,'pyre_elasticslider','0'),(5468,3658,'pyre_fallback',''),(5469,3658,'pyre_full_width','no'),(5470,3658,'pyre_sidebar_position','default'),(5471,3658,'pyre_portfolio_excerpt',''),(5472,3658,'pyre_portfolio_full_width','yes'),(5473,3658,'pyre_portfolio_sidebar_position','default'),(5474,3658,'pyre_portfolio_filters','yes'),(5475,3658,'pyre_page_bg_color',''),(5476,3658,'pyre_page_bg',''),(5477,3658,'pyre_page_bg_full','no'),(5478,3658,'pyre_page_bg_repeat','repeat'),(5479,3658,'pyre_page_title_bar_bg',''),(5480,3658,'pyre_page_title_bar_bg_retina',''),(5481,3658,'pyre_page_title_bar_bg_color',''),(5482,3658,'pyre_image_rollover_icons','linkzoom'),(5483,3658,'pyre_link_icon_url',''),(5484,3658,'_wp_page_template','default'),(5485,3658,'avada_post_views_count','93'),(5486,3658,'pyre_page_bg_layout','default'),(5487,3658,'pyre_wide_page_bg',''),(5488,3658,'pyre_wide_page_bg_color',''),(5489,3658,'pyre_wide_page_bg_full','no'),(5490,3658,'pyre_wide_page_bg_repeat','repeat'),(5491,3658,'pyre_header_bg',''),(5492,3658,'pyre_header_bg_color',''),(5493,3658,'pyre_header_bg_full','no'),(5494,3658,'pyre_header_bg_repeat','repeat'),(5495,3658,'pyre_page_title_bar_bg_full','no'),(5496,3658,'pyre_page_title','yes'),(5497,3658,'pyre_page_title_text','yes'),(5498,3658,'pyre_slider_type','no'),(5499,3658,'pyre_slider','0'),(5500,3658,'pyre_wooslider','0'),(5501,3658,'pyre_flexslider','0'),(5502,3658,'pyre_revslider','0'),(5503,3658,'pyre_elasticslider','0'),(5504,3658,'pyre_fallback',''),(5505,3658,'pyre_full_width','no'),(5506,3658,'pyre_sidebar_position','default'),(5507,3658,'pyre_portfolio_excerpt',''),(5508,3658,'pyre_portfolio_full_width','yes'),(5509,3658,'pyre_portfolio_sidebar_position','default'),(5510,3658,'pyre_portfolio_filters','yes'),(5511,3658,'pyre_page_bg_color',''),(5512,3658,'pyre_page_bg',''),(5513,3658,'pyre_page_bg_full','no'),(5514,3658,'pyre_page_bg_repeat','repeat'),(5515,3658,'pyre_page_title_bar_bg',''),(5516,3658,'pyre_page_title_bar_bg_retina',''),(5517,3658,'pyre_page_title_bar_bg_color',''),(5518,3658,'pyre_image_rollover_icons','linkzoom'),(5519,3658,'pyre_link_icon_url',''),(5520,3658,'_wp_page_template','default'),(5521,3658,'slide_template','default'),(5522,3658,'pyre_slider_position','default'),(5523,3658,'pyre_display_header','yes'),(5524,3658,'pyre_transparent_header','default'),(5525,3658,'pyre_displayed_menu','default'),(5526,3658,'pyre_display_footer','default'),(5527,3658,'pyre_display_copyright','default'),(5528,3658,'pyre_main_top_padding',''),(5529,3658,'pyre_main_bottom_padding',''),(5530,3658,'pyre_hundredp_padding',''),(5531,3658,'pyre_page_title_custom_text',''),(5532,3658,'pyre_page_title_custom_subheader',''),(5533,3658,'pyre_page_title_height',''),(5534,3658,'pyre_page_title_bg_parallax','default'),(5535,3658,'fusion_builder_status','active'),(5536,3658,'pyre_portfolio_content_length','default'),(5537,3658,'pyre_portfolio_text_layout','default'),(5538,3658,'pyre_portfolio_featured_image_size','default'),(5539,3658,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5540,3658,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5541,3658,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5542,3658,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5543,3660,'pyre_page_title','no'),(5544,3660,'pyre_page_title_text','yes'),(5545,3660,'pyre_slider_type','flex'),(5546,3660,'pyre_slider','0'),(5547,3660,'pyre_wooslider','final_full_width'),(5548,3660,'pyre_flexslider','0'),(5549,3660,'pyre_revslider','0'),(5550,3660,'pyre_elasticslider','0'),(5551,3660,'pyre_fallback',''),(5552,3660,'pyre_full_width','no'),(5553,3660,'pyre_sidebar_position','default'),(5554,3660,'pyre_portfolio_excerpt',''),(5555,3660,'pyre_portfolio_full_width','yes'),(5556,3660,'pyre_portfolio_sidebar_position','default'),(5557,3660,'pyre_portfolio_filters','yes'),(5558,3660,'pyre_page_bg_color',''),(5559,3660,'pyre_page_bg',''),(5560,3660,'pyre_page_bg_full','no'),(5561,3660,'pyre_page_bg_repeat','repeat'),(5562,3660,'pyre_page_title_bar_bg',''),(5563,3660,'pyre_page_title_bar_bg_retina',''),(5564,3660,'pyre_page_title_bar_bg_color',''),(5565,3660,'pyre_image_rollover_icons','linkzoom'),(5566,3660,'pyre_link_icon_url',''),(5567,3660,'_wp_page_template','default'),(5568,3660,'avada_post_views_count','53'),(5569,3660,'pyre_page_title','no'),(5570,3660,'pyre_page_title_text','yes'),(5571,3660,'pyre_slider_type','flex'),(5572,3660,'pyre_slider','0'),(5573,3660,'pyre_wooslider','final_full_width'),(5574,3660,'pyre_flexslider','0'),(5575,3660,'pyre_revslider','0'),(5576,3660,'pyre_elasticslider','0'),(5577,3660,'pyre_fallback',''),(5578,3660,'pyre_full_width','no'),(5579,3660,'pyre_sidebar_position','default'),(5580,3660,'pyre_portfolio_excerpt',''),(5581,3660,'pyre_portfolio_full_width','yes'),(5582,3660,'pyre_portfolio_sidebar_position','default'),(5583,3660,'pyre_portfolio_filters','yes'),(5584,3660,'pyre_page_bg_color',''),(5585,3660,'pyre_page_bg',''),(5586,3660,'pyre_page_bg_full','no'),(5587,3660,'pyre_page_bg_repeat','repeat'),(5588,3660,'pyre_page_title_bar_bg',''),(5589,3660,'pyre_page_title_bar_bg_retina',''),(5590,3660,'pyre_page_title_bar_bg_color',''),(5591,3660,'pyre_image_rollover_icons','linkzoom'),(5592,3660,'pyre_link_icon_url',''),(5593,3660,'_wp_page_template','default'),(5594,3660,'pyre_slider_position','default'),(5595,3660,'pyre_display_header','yes'),(5596,3660,'pyre_transparent_header','default'),(5597,3660,'pyre_displayed_menu','default'),(5598,3660,'pyre_display_footer','default'),(5599,3660,'pyre_display_copyright','default'),(5600,3660,'pyre_main_top_padding',''),(5601,3660,'pyre_main_bottom_padding',''),(5602,3660,'pyre_hundredp_padding',''),(5603,3660,'pyre_page_bg_layout','default'),(5604,3660,'pyre_wide_page_bg',''),(5605,3660,'pyre_wide_page_bg_color',''),(5606,3660,'pyre_wide_page_bg_full','no'),(5607,3660,'pyre_wide_page_bg_repeat','repeat'),(5608,3660,'pyre_header_bg',''),(5609,3660,'pyre_header_bg_color',''),(5610,3660,'pyre_header_bg_full','no'),(5611,3660,'pyre_header_bg_repeat','repeat'),(5612,3660,'pyre_page_title_custom_text',''),(5613,3660,'pyre_page_title_custom_subheader',''),(5614,3660,'pyre_page_title_height',''),(5615,3660,'pyre_page_title_bar_bg_full','default'),(5616,3660,'pyre_page_title_bg_parallax','default'),(5617,3660,'slide_template','default'),(5618,3660,'fusion_builder_status','active'),(5619,3660,'pyre_portfolio_content_length','default'),(5620,3660,'pyre_portfolio_text_layout','default'),(5621,3660,'pyre_portfolio_featured_image_size','default'),(5622,3660,'pyre_show_first_featured_image','no'),(5623,3660,'pyre_header_100_width','default'),(5624,3660,'pyre_header_bg_opacity',''),(5625,3660,'pyre_footer_100_width','default'),(5626,3660,'pyre_portfolio_width_100','no'),(5627,3660,'pyre_portfolio_column_spacing',''),(5628,3660,'pyre_page_title_text_alignment','default'),(5629,3660,'pyre_page_title_text_size',''),(5630,3660,'pyre_page_title_custom_subheader_text_size',''),(5631,3660,'pyre_page_title_font_color',''),(5632,3660,'pyre_page_title_breadcrumbs_search_bar','default'),(5633,3660,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5634,3660,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5635,3660,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5636,3660,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5637,3662,'pyre_page_title','no'),(5638,3662,'pyre_page_title_text','yes'),(5639,3662,'pyre_slider_type','rev'),(5640,3662,'pyre_slider','0'),(5641,3662,'pyre_wooslider','0'),(5642,3662,'pyre_flexslider','0'),(5643,3662,'pyre_revslider','Avada_Full_Width'),(5644,3662,'pyre_elasticslider','0'),(5645,3662,'pyre_fallback',''),(5646,3662,'pyre_full_width','no'),(5647,3662,'pyre_sidebar_position','default'),(5648,3662,'pyre_portfolio_excerpt',''),(5649,3662,'pyre_portfolio_full_width','yes'),(5650,3662,'pyre_portfolio_sidebar_position','default'),(5651,3662,'pyre_portfolio_filters','yes'),(5652,3662,'pyre_page_bg_color',''),(5653,3662,'pyre_page_bg',''),(5654,3662,'pyre_page_bg_full','no'),(5655,3662,'pyre_page_bg_repeat','repeat'),(5656,3662,'pyre_page_title_bar_bg',''),(5657,3662,'pyre_page_title_bar_bg_retina',''),(5658,3662,'pyre_page_title_bar_bg_color',''),(5659,3662,'pyre_image_rollover_icons','linkzoom'),(5660,3662,'pyre_link_icon_url',''),(5661,3662,'_wp_page_template','100-width.php'),(5662,3662,'avada_post_views_count','64'),(5663,3662,'pyre_page_bg_layout','default'),(5664,3662,'pyre_wide_page_bg',''),(5665,3662,'pyre_wide_page_bg_color',''),(5666,3662,'pyre_wide_page_bg_full','no'),(5667,3662,'pyre_wide_page_bg_repeat','repeat'),(5668,3662,'pyre_header_bg',''),(5669,3662,'pyre_header_bg_color',''),(5670,3662,'pyre_header_bg_full','no'),(5671,3662,'pyre_header_bg_repeat','repeat'),(5672,3662,'pyre_page_title_bar_bg_full','no'),(5673,3662,'slide_template','default'),(5674,3662,'pyre_slider_position','default'),(5675,3662,'pyre_display_header','yes'),(5676,3662,'pyre_transparent_header','default'),(5677,3662,'pyre_displayed_menu','default'),(5678,3662,'pyre_display_footer','default'),(5679,3662,'pyre_display_copyright','default'),(5680,3662,'pyre_main_top_padding','0px'),(5681,3662,'pyre_main_bottom_padding',''),(5682,3662,'pyre_hundredp_padding',''),(5683,3662,'pyre_page_title_custom_text',''),(5684,3662,'pyre_page_title_custom_subheader',''),(5685,3662,'pyre_page_title_height',''),(5686,3662,'pyre_page_title_bg_parallax','default'),(5687,3662,'fusion_builder_status','active'),(5688,3662,'pyre_portfolio_content_length','default'),(5689,3662,'pyre_portfolio_text_layout','default'),(5690,3662,'pyre_portfolio_featured_image_size','default'),(5691,3662,'pyre_show_first_featured_image','no'),(5692,3662,'pyre_header_100_width','default'),(5693,3662,'pyre_header_bg_opacity',''),(5694,3662,'pyre_footer_100_width','default'),(5695,3662,'pyre_portfolio_width_100','no'),(5696,3662,'pyre_portfolio_column_spacing',''),(5697,3662,'pyre_page_title_text_alignment','default'),(5698,3662,'pyre_page_title_text_size',''),(5699,3662,'pyre_page_title_custom_subheader_text_size',''),(5700,3662,'pyre_page_title_font_color',''),(5701,3662,'pyre_page_title_breadcrumbs_search_bar','default'),(5702,3662,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5703,3662,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(5704,3662,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5705,3662,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5706,3678,'pyre_page_title','yes'),(5707,3678,'pyre_page_title_text','yes'),(5708,3678,'pyre_slider_type','no'),(5709,3678,'pyre_slider','0'),(5710,3678,'pyre_wooslider','0'),(5711,3678,'pyre_flexslider','0'),(5712,3678,'pyre_revslider','0'),(5713,3678,'pyre_elasticslider','0'),(5714,3678,'pyre_fallback',''),(5715,3678,'pyre_full_width','no'),(5716,3678,'pyre_sidebar_position','default'),(5717,3678,'pyre_portfolio_excerpt',''),(5718,3678,'pyre_portfolio_full_width','yes'),(5719,3678,'pyre_portfolio_sidebar_position','default'),(5720,3678,'pyre_portfolio_filters','yes'),(5721,3678,'pyre_page_bg_color',''),(5722,3678,'pyre_page_bg',''),(5723,3678,'pyre_page_bg_full','no'),(5724,3678,'pyre_page_bg_repeat','repeat'),(5725,3678,'pyre_page_title_bar_bg',''),(5726,3678,'pyre_page_title_bar_bg_retina',''),(5727,3678,'pyre_page_title_bar_bg_color',''),(5728,3678,'pyre_image_rollover_icons','linkzoom'),(5729,3678,'pyre_link_icon_url',''),(5730,3678,'_wp_page_template','default'),(5731,3678,'avada_post_views_count','75'),(5732,3678,'pyre_page_bg_layout','default'),(5733,3678,'pyre_wide_page_bg',''),(5734,3678,'pyre_wide_page_bg_color',''),(5735,3678,'pyre_wide_page_bg_full','no'),(5736,3678,'pyre_wide_page_bg_repeat','repeat'),(5737,3678,'pyre_header_bg',''),(5738,3678,'pyre_header_bg_color',''),(5739,3678,'pyre_header_bg_full','no'),(5740,3678,'pyre_header_bg_repeat','repeat'),(5741,3678,'pyre_page_title_bar_bg_full','no'),(5742,3678,'pyre_page_title','yes'),(5743,3678,'pyre_page_title_text','yes'),(5744,3678,'pyre_slider_type','no'),(5745,3678,'pyre_slider','0'),(5746,3678,'pyre_wooslider','0'),(5747,3678,'pyre_page_title_bar_bg',''),(5748,3678,'pyre_page_title_bar_bg_retina',''),(5749,3678,'pyre_page_title_bar_bg_color',''),(5750,3678,'pyre_image_rollover_icons','linkzoom'),(5751,3678,'pyre_link_icon_url',''),(5752,3678,'pyre_flexslider','0'),(5753,3678,'pyre_revslider','0'),(5754,3678,'pyre_elasticslider','0'),(5755,3678,'pyre_fallback',''),(5756,3678,'pyre_full_width','no'),(5757,3678,'pyre_sidebar_position','default'),(5758,3678,'pyre_portfolio_excerpt',''),(5759,3678,'pyre_portfolio_full_width','yes'),(5760,3678,'pyre_portfolio_sidebar_position','default'),(5761,3678,'pyre_portfolio_filters','yes'),(5762,3678,'pyre_page_bg_color',''),(5763,3678,'pyre_page_bg',''),(5764,3678,'pyre_page_bg_full','no'),(5765,3678,'pyre_page_bg_repeat','repeat'),(5766,3678,'_wp_page_template','default'),(5767,3678,'slide_template','default'),(5768,3678,'pyre_slider_position','default'),(5769,3678,'pyre_display_header','yes'),(5770,3678,'pyre_transparent_header','default'),(5771,3678,'pyre_displayed_menu','default'),(5772,3678,'pyre_display_footer','default'),(5773,3678,'pyre_display_copyright','default'),(5774,3678,'pyre_main_top_padding',''),(5775,3678,'pyre_main_bottom_padding','0px'),(5776,3678,'pyre_hundredp_padding',''),(5777,3678,'pyre_page_title_custom_text',''),(5778,3678,'pyre_page_title_custom_subheader',''),(5779,3678,'pyre_page_title_height',''),(5780,3678,'pyre_page_title_bg_parallax','default'),(5781,3678,'fusion_builder_status','active'),(5782,3678,'pyre_portfolio_content_length','default'),(5783,3678,'pyre_portfolio_text_layout','default'),(5784,3678,'pyre_portfolio_featured_image_size','default'),(5785,3678,'pyre_show_first_featured_image','no'),(5786,3678,'pyre_header_100_width','default'),(5787,3678,'pyre_header_bg_opacity',''),(5788,3678,'pyre_footer_100_width','default'),(5789,3678,'pyre_portfolio_width_100','no'),(5790,3678,'pyre_portfolio_column_spacing',''),(5791,3678,'pyre_page_title_text_alignment','default'),(5792,3678,'pyre_page_title_text_size',''),(5793,3678,'pyre_page_title_custom_subheader_text_size',''),(5794,3678,'pyre_page_title_font_color',''),(5795,3678,'pyre_page_title_breadcrumbs_search_bar','default'),(5796,3678,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5797,3678,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5798,3678,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5799,3678,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5800,4204,'pyre_page_title','yes'),(5801,4204,'pyre_slider_type','no'),(5802,4204,'pyre_slider','0'),(5803,4204,'pyre_wooslider','0'),(5804,4204,'pyre_flexslider','0'),(5805,4204,'pyre_revslider','0'),(5806,4204,'pyre_elasticslider','0'),(5807,4204,'pyre_fallback',''),(5808,4204,'pyre_full_width','no'),(5809,4204,'pyre_sidebar_position','right'),(5810,4204,'pyre_portfolio_excerpt',''),(5811,4204,'pyre_portfolio_full_width','yes'),(5812,4204,'pyre_portfolio_sidebar_position','right'),(5813,4204,'pyre_page_bg_color',''),(5814,4204,'pyre_page_bg',''),(5815,4204,'pyre_page_bg_full','no'),(5816,4204,'pyre_page_bg_repeat','repeat'),(5817,4204,'pyre_page_title_bar_bg',''),(5818,4204,'pyre_page_title_bar_bg_color',''),(5819,4204,'_wp_page_template','default'),(5820,4204,'slide_template','default'),(5821,4204,'pyre_slider_position','default'),(5822,4204,'pyre_display_header','yes'),(5823,4204,'pyre_transparent_header','default'),(5824,4204,'pyre_displayed_menu','default'),(5825,4204,'pyre_display_footer','default'),(5826,4204,'pyre_display_copyright','default'),(5827,4204,'pyre_main_top_padding',''),(5828,4204,'pyre_main_bottom_padding',''),(5829,4204,'pyre_hundredp_padding',''),(5830,4204,'pyre_portfolio_filters','yes'),(5831,4204,'pyre_page_bg_layout','default'),(5832,4204,'pyre_wide_page_bg',''),(5833,4204,'pyre_wide_page_bg_color',''),(5834,4204,'pyre_wide_page_bg_full','no'),(5835,4204,'pyre_wide_page_bg_repeat','repeat'),(5836,4204,'pyre_header_bg',''),(5837,4204,'pyre_header_bg_color',''),(5838,4204,'pyre_header_bg_full','no'),(5839,4204,'pyre_header_bg_repeat','repeat'),(5840,4204,'pyre_page_title_text','yes'),(5841,4204,'pyre_page_title_custom_text',''),(5842,4204,'pyre_page_title_custom_subheader',''),(5843,4204,'pyre_page_title_height',''),(5844,4204,'pyre_page_title_bar_bg_retina',''),(5845,4204,'pyre_page_title_bar_bg_full','default'),(5846,4204,'pyre_page_title_bg_parallax','default'),(5847,4204,'fusion_builder_status','active'),(5848,4204,'pyre_portfolio_content_length','default'),(5849,4204,'pyre_portfolio_text_layout','default'),(5850,4204,'pyre_portfolio_featured_image_size','default'),(5851,4204,'pyre_show_first_featured_image','no'),(5852,4204,'pyre_header_100_width','default'),(5853,4204,'pyre_header_bg_opacity',''),(5854,4204,'pyre_footer_100_width','default'),(5855,4204,'pyre_portfolio_width_100','no'),(5856,4204,'pyre_portfolio_column_spacing',''),(5857,4204,'pyre_page_title_text_alignment','default'),(5858,4204,'pyre_page_title_text_size',''),(5859,4204,'pyre_page_title_custom_subheader_text_size',''),(5860,4204,'pyre_page_title_font_color',''),(5861,4204,'pyre_page_title_breadcrumbs_search_bar','default'),(5862,4204,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5863,4204,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5864,4204,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5865,4204,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5866,3697,'_wp_page_template','default'),(5867,3697,'pyre_page_title','yes'),(5868,3697,'pyre_page_title_text','yes'),(5869,3697,'pyre_slider_type','no'),(5870,3697,'pyre_slider','0'),(5871,3697,'pyre_wooslider','0'),(5872,3697,'pyre_flexslider','0'),(5873,3697,'pyre_revslider','0'),(5874,3697,'pyre_elasticslider','0'),(5875,3697,'pyre_fallback',''),(5876,3697,'pyre_full_width','no'),(5877,3697,'pyre_sidebar_position','default'),(5878,3697,'pyre_portfolio_excerpt',''),(5879,3697,'pyre_portfolio_full_width','yes'),(5880,3697,'pyre_portfolio_sidebar_position','default'),(5881,3697,'pyre_portfolio_filters','yes'),(5882,3697,'pyre_page_bg_color',''),(5883,3697,'pyre_page_bg',''),(5884,3697,'pyre_page_bg_full','no'),(5885,3697,'pyre_page_bg_repeat','repeat'),(5886,3697,'pyre_page_title_bar_bg',''),(5887,3697,'pyre_page_title_bar_bg_retina',''),(5888,3697,'pyre_page_title_bar_bg_color',''),(5889,3697,'pyre_image_rollover_icons','linkzoom'),(5890,3697,'pyre_link_icon_url',''),(5891,3697,'avada_post_views_count','171'),(5892,3697,'pyre_page_bg_layout','default'),(5893,3697,'pyre_wide_page_bg',''),(5894,3697,'pyre_wide_page_bg_color',''),(5895,3697,'pyre_wide_page_bg_full','no'),(5896,3697,'pyre_wide_page_bg_repeat','repeat'),(5897,3697,'pyre_header_bg',''),(5898,3697,'pyre_header_bg_color',''),(5899,3697,'pyre_header_bg_full','no'),(5900,3697,'pyre_header_bg_repeat','repeat'),(5901,3697,'pyre_page_title_bar_bg_full','no'),(5902,3697,'pyre_page_title','yes'),(5903,3697,'pyre_page_bg_layout','default'),(5904,3697,'pyre_wide_page_bg',''),(5905,3697,'pyre_wide_page_bg_color',''),(5906,3697,'pyre_wide_page_bg_full','no'),(5907,3697,'pyre_wide_page_bg_repeat','repeat'),(5908,3697,'pyre_header_bg',''),(5909,3697,'pyre_header_bg_color',''),(5910,3697,'pyre_header_bg_full','no'),(5911,3697,'pyre_header_bg_repeat','repeat'),(5912,3697,'pyre_page_title_bar_bg_full','no'),(5913,3697,'avada_post_views_count','18'),(5914,3697,'pyre_page_title_text','yes'),(5915,3697,'pyre_slider_type','no'),(5916,3697,'_wp_page_template','default'),(5917,3697,'pyre_wooslider','0'),(5918,3697,'pyre_flexslider','0'),(5919,3697,'pyre_revslider','0'),(5920,3697,'pyre_elasticslider','0'),(5921,3697,'pyre_fallback',''),(5922,3697,'pyre_full_width','no'),(5923,3697,'pyre_sidebar_position','default'),(5924,3697,'pyre_portfolio_excerpt',''),(5925,3697,'pyre_portfolio_full_width','yes'),(5926,3697,'pyre_portfolio_sidebar_position','default'),(5927,3697,'pyre_portfolio_filters','yes'),(5928,3697,'pyre_page_bg_color',''),(5929,3697,'pyre_page_bg',''),(5930,3697,'pyre_page_bg_full','no'),(5931,3697,'pyre_page_bg_repeat','repeat'),(5932,3697,'pyre_page_title_bar_bg',''),(5933,3697,'pyre_page_title_bar_bg_retina',''),(5934,3697,'pyre_page_title_bar_bg_color',''),(5935,3697,'pyre_image_rollover_icons','linkzoom'),(5936,3697,'pyre_link_icon_url',''),(5937,3697,'pyre_slider','0'),(5938,3697,'slide_template','default'),(5939,3697,'fusion_builder_status','active'),(5940,3697,'pyre_slider_position','default'),(5941,3697,'pyre_main_top_padding',''),(5942,3697,'pyre_main_bottom_padding',''),(5943,3697,'pyre_hundredp_padding',''),(5944,3697,'pyre_display_header','yes'),(5945,3697,'pyre_transparent_header','default'),(5946,3697,'pyre_displayed_menu','default'),(5947,3697,'pyre_display_footer','default'),(5948,3697,'pyre_display_copyright','default'),(5949,3697,'pyre_portfolio_content_length','default'),(5950,3697,'pyre_portfolio_text_layout','default'),(5951,3697,'pyre_portfolio_featured_image_size','default'),(5952,3697,'pyre_page_title_custom_text',''),(5953,3697,'pyre_page_title_custom_subheader',''),(5954,3697,'pyre_page_title_height',''),(5955,3697,'pyre_page_title_bg_parallax','default'),(5956,3697,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(5957,3697,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(5958,3697,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(5959,3697,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(5960,3698,'_wp_page_template','default'),(5961,3698,'pyre_page_title','yes'),(5962,3698,'pyre_page_title_text','yes'),(5963,3698,'pyre_slider_type','no'),(5964,3698,'pyre_slider','0'),(5965,3698,'pyre_wooslider','0'),(5966,3698,'pyre_flexslider','0'),(5967,3698,'pyre_revslider','0'),(5968,3698,'pyre_elasticslider','0'),(5969,3698,'pyre_fallback',''),(5970,3698,'pyre_full_width','no'),(5971,3698,'pyre_sidebar_position','default'),(5972,3698,'pyre_portfolio_excerpt',''),(5973,3698,'pyre_portfolio_full_width','yes'),(5974,3698,'pyre_portfolio_sidebar_position','default'),(5975,3698,'pyre_portfolio_filters','yes'),(5976,3698,'pyre_page_bg_color',''),(5977,3698,'pyre_page_bg',''),(5978,3698,'pyre_page_bg_full','no'),(5979,3698,'pyre_page_bg_repeat','repeat'),(5980,3698,'pyre_page_title_bar_bg',''),(5981,3698,'pyre_page_title_bar_bg_retina',''),(5982,3698,'pyre_page_title_bar_bg_color',''),(5983,3698,'pyre_image_rollover_icons','linkzoom'),(5984,3698,'pyre_link_icon_url',''),(5985,3698,'avada_post_views_count','125'),(5986,3698,'pyre_page_bg_layout','default'),(5987,3698,'pyre_wide_page_bg',''),(5988,3698,'pyre_wide_page_bg_color',''),(5989,3698,'pyre_wide_page_bg_full','no'),(5990,3698,'pyre_wide_page_bg_repeat','repeat'),(5991,3698,'pyre_header_bg',''),(5992,3698,'pyre_header_bg_color',''),(5993,3698,'pyre_header_bg_full','no'),(5994,3698,'pyre_header_bg_repeat','repeat'),(5995,3698,'pyre_page_title_bar_bg_full','no'),(5996,3698,'pyre_page_title_bar_bg_full','no'),(5997,3698,'pyre_header_bg_repeat','repeat'),(5998,3698,'avada_post_views_count','3'),(5999,3698,'pyre_page_bg_layout','default'),(6000,3698,'pyre_wide_page_bg',''),(6001,3698,'pyre_wide_page_bg_color',''),(6002,3698,'pyre_wide_page_bg_full','no'),(6003,3698,'pyre_wide_page_bg_repeat','repeat'),(6004,3698,'pyre_header_bg',''),(6005,3698,'pyre_header_bg_color',''),(6006,3698,'pyre_header_bg_full','no'),(6007,3698,'pyre_fallback',''),(6008,3698,'pyre_full_width','no'),(6009,3698,'pyre_sidebar_position','default'),(6010,3698,'pyre_portfolio_excerpt',''),(6011,3698,'pyre_portfolio_full_width','yes'),(6012,3698,'pyre_portfolio_sidebar_position','default'),(6013,3698,'pyre_portfolio_filters','yes'),(6014,3698,'pyre_page_bg_color',''),(6015,3698,'pyre_page_bg',''),(6016,3698,'pyre_page_bg_full','no'),(6017,3698,'pyre_page_bg_repeat','repeat'),(6018,3698,'pyre_page_title_bar_bg',''),(6019,3698,'pyre_page_title_bar_bg_retina',''),(6020,3698,'pyre_page_title_bar_bg_color',''),(6021,3698,'pyre_image_rollover_icons','linkzoom'),(6022,3698,'pyre_link_icon_url',''),(6023,3698,'pyre_elasticslider','0'),(6024,3698,'pyre_revslider','0'),(6025,3698,'pyre_flexslider','0'),(6026,3698,'pyre_wooslider','0'),(6027,3698,'pyre_slider','0'),(6028,3698,'_wp_page_template','default'),(6029,3698,'pyre_page_title','yes'),(6030,3698,'pyre_page_title_text','yes'),(6031,3698,'pyre_slider_type','no'),(6032,3698,'slide_template','default'),(6033,3698,'fusion_builder_status','active'),(6034,3698,'pyre_slider_position','default'),(6035,3698,'pyre_main_top_padding',''),(6036,3698,'pyre_main_bottom_padding',''),(6037,3698,'pyre_hundredp_padding',''),(6038,3698,'pyre_display_header','yes'),(6039,3698,'pyre_transparent_header','default'),(6040,3698,'pyre_displayed_menu','default'),(6041,3698,'pyre_display_footer','default'),(6042,3698,'pyre_display_copyright','default'),(6043,3698,'pyre_portfolio_content_length','default'),(6044,3698,'pyre_portfolio_text_layout','default'),(6045,3698,'pyre_portfolio_featured_image_size','default'),(6046,3698,'pyre_page_title_custom_text',''),(6047,3698,'pyre_page_title_custom_subheader',''),(6048,3698,'pyre_page_title_height',''),(6049,3698,'pyre_page_title_bg_parallax','default'),(6050,3698,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6051,3698,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6052,3698,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6053,3698,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6054,3699,'_wp_page_template','default'),(6055,3699,'pyre_page_title','yes'),(6056,3699,'pyre_page_title_text','yes'),(6057,3699,'pyre_slider_type','no'),(6058,3699,'pyre_slider','0'),(6059,3699,'pyre_wooslider','0'),(6060,3699,'pyre_flexslider','0'),(6061,3699,'pyre_revslider','0'),(6062,3699,'pyre_elasticslider','0'),(6063,3699,'pyre_fallback',''),(6064,3699,'pyre_full_width','no'),(6065,3699,'pyre_sidebar_position','default'),(6066,3699,'pyre_portfolio_excerpt',''),(6067,3699,'pyre_portfolio_full_width','yes'),(6068,3699,'pyre_portfolio_sidebar_position','default'),(6069,3699,'pyre_portfolio_filters','yes'),(6070,3699,'pyre_page_bg_color',''),(6071,3699,'pyre_page_bg',''),(6072,3699,'pyre_page_bg_full','no'),(6073,3699,'pyre_page_bg_repeat','repeat'),(6074,3699,'pyre_page_title_bar_bg',''),(6075,3699,'pyre_page_title_bar_bg_retina',''),(6076,3699,'pyre_page_title_bar_bg_color',''),(6077,3699,'pyre_image_rollover_icons','linkzoom'),(6078,3699,'pyre_link_icon_url',''),(6079,3699,'avada_post_views_count','89'),(6080,3699,'pyre_page_bg_layout','default'),(6081,3699,'pyre_wide_page_bg',''),(6082,3699,'pyre_wide_page_bg_color',''),(6083,3699,'pyre_wide_page_bg_full','no'),(6084,3699,'pyre_wide_page_bg_repeat','repeat'),(6085,3699,'pyre_header_bg',''),(6086,3699,'pyre_header_bg_color',''),(6087,3699,'pyre_header_bg_full','no'),(6088,3699,'pyre_header_bg_repeat','repeat'),(6089,3699,'pyre_page_title_bar_bg_full','no'),(6090,3699,'pyre_page_title_bar_bg_full','no'),(6091,3699,'pyre_header_bg_repeat','repeat'),(6092,3699,'pyre_header_bg_full','no'),(6093,3699,'pyre_header_bg_color',''),(6094,3699,'pyre_header_bg',''),(6095,3699,'pyre_wide_page_bg_repeat','repeat'),(6096,3699,'pyre_wide_page_bg_full','no'),(6097,3699,'pyre_wide_page_bg_color',''),(6098,3699,'pyre_wide_page_bg',''),(6099,3699,'pyre_page_bg_layout','default'),(6100,3699,'avada_post_views_count','4'),(6101,3699,'_wp_page_template','default'),(6102,3699,'pyre_page_title','yes'),(6103,3699,'pyre_page_title_text','yes'),(6104,3699,'pyre_slider_type','no'),(6105,3699,'pyre_slider','0'),(6106,3699,'pyre_wooslider','0'),(6107,3699,'pyre_flexslider','0'),(6108,3699,'pyre_revslider','0'),(6109,3699,'pyre_elasticslider','0'),(6110,3699,'pyre_fallback',''),(6111,3699,'pyre_full_width','no'),(6112,3699,'pyre_sidebar_position','default'),(6113,3699,'pyre_portfolio_excerpt',''),(6114,3699,'pyre_portfolio_full_width','yes'),(6115,3699,'pyre_portfolio_sidebar_position','default'),(6116,3699,'pyre_portfolio_filters','yes'),(6117,3699,'pyre_page_bg_color',''),(6118,3699,'pyre_page_bg',''),(6119,3699,'pyre_page_bg_full','no'),(6120,3699,'pyre_page_bg_repeat','repeat'),(6121,3699,'pyre_page_title_bar_bg',''),(6122,3699,'pyre_page_title_bar_bg_retina',''),(6123,3699,'pyre_page_title_bar_bg_color',''),(6124,3699,'pyre_image_rollover_icons','linkzoom'),(6125,3699,'pyre_link_icon_url',''),(6126,3699,'slide_template','default'),(6127,3699,'fusion_builder_status','active'),(6128,3699,'pyre_slider_position','default'),(6129,3699,'pyre_main_top_padding',''),(6130,3699,'pyre_main_bottom_padding',''),(6131,3699,'pyre_hundredp_padding',''),(6132,3699,'pyre_display_header','yes'),(6133,3699,'pyre_transparent_header','default'),(6134,3699,'pyre_displayed_menu','default'),(6135,3699,'pyre_display_footer','default'),(6136,3699,'pyre_display_copyright','default'),(6137,3699,'pyre_portfolio_content_length','default'),(6138,3699,'pyre_portfolio_text_layout','default'),(6139,3699,'pyre_portfolio_featured_image_size','default'),(6140,3699,'pyre_page_title_custom_text',''),(6141,3699,'pyre_page_title_custom_subheader',''),(6142,3699,'pyre_page_title_height',''),(6143,3699,'pyre_page_title_bg_parallax','default'),(6144,3699,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6145,3699,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(6146,3699,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6147,3699,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6148,3700,'_wp_page_template','default'),(6149,3700,'pyre_page_title','yes'),(6150,3700,'pyre_page_title_text','yes'),(6151,3700,'pyre_slider_type','no'),(6152,3700,'pyre_slider','0'),(6153,3700,'pyre_wooslider','0'),(6154,3700,'pyre_flexslider','0'),(6155,3700,'pyre_revslider','0'),(6156,3700,'pyre_elasticslider','0'),(6157,3700,'pyre_fallback',''),(6158,3700,'pyre_full_width','no'),(6159,3700,'pyre_sidebar_position','default'),(6160,3700,'pyre_portfolio_excerpt',''),(6161,3700,'pyre_portfolio_full_width','yes'),(6162,3700,'pyre_portfolio_sidebar_position','default'),(6163,3700,'pyre_portfolio_filters','yes'),(6164,3700,'pyre_page_bg_color',''),(6165,3700,'pyre_page_bg',''),(6166,3700,'pyre_page_bg_full','no'),(6167,3700,'pyre_page_bg_repeat','repeat'),(6168,3700,'pyre_page_title_bar_bg',''),(6169,3700,'pyre_page_title_bar_bg_retina',''),(6170,3700,'pyre_page_title_bar_bg_color',''),(6171,3700,'pyre_image_rollover_icons','linkzoom'),(6172,3700,'pyre_link_icon_url',''),(6173,3700,'avada_post_views_count','61'),(6174,3700,'pyre_page_bg_layout','default'),(6175,3700,'pyre_wide_page_bg',''),(6176,3700,'pyre_wide_page_bg_color',''),(6177,3700,'pyre_wide_page_bg_full','no'),(6178,3700,'pyre_wide_page_bg_repeat','repeat'),(6179,3700,'pyre_header_bg',''),(6180,3700,'pyre_header_bg_color',''),(6181,3700,'pyre_header_bg_full','no'),(6182,3700,'pyre_header_bg_repeat','repeat'),(6183,3700,'pyre_page_title_bar_bg_full','no'),(6184,3700,'avada_post_views_count','2'),(6185,3700,'pyre_page_bg_layout','default'),(6186,3700,'pyre_wide_page_bg',''),(6187,3700,'pyre_wide_page_bg_color',''),(6188,3700,'pyre_wide_page_bg_full','no'),(6189,3700,'pyre_wide_page_bg_repeat','repeat'),(6190,3700,'pyre_header_bg',''),(6191,3700,'pyre_header_bg_color',''),(6192,3700,'pyre_header_bg_full','no'),(6193,3700,'pyre_header_bg_repeat','repeat'),(6194,3700,'pyre_page_title_bar_bg_full','no'),(6195,3700,'_wp_page_template','default'),(6196,3700,'pyre_page_title','yes'),(6197,3700,'pyre_page_title_text','yes'),(6198,3700,'pyre_slider_type','no'),(6199,3700,'pyre_slider','0'),(6200,3700,'pyre_wooslider','0'),(6201,3700,'pyre_flexslider','0'),(6202,3700,'pyre_revslider','0'),(6203,3700,'pyre_elasticslider','0'),(6204,3700,'pyre_fallback',''),(6205,3700,'pyre_full_width','no'),(6206,3700,'pyre_sidebar_position','default'),(6207,3700,'pyre_portfolio_excerpt',''),(6208,3700,'pyre_portfolio_full_width','yes'),(6209,3700,'pyre_portfolio_sidebar_position','default'),(6210,3700,'pyre_portfolio_filters','yes'),(6211,3700,'pyre_page_bg_color',''),(6212,3700,'pyre_page_bg',''),(6213,3700,'pyre_page_bg_full','no'),(6214,3700,'pyre_page_bg_repeat','repeat'),(6215,3700,'pyre_page_title_bar_bg',''),(6216,3700,'pyre_page_title_bar_bg_retina',''),(6217,3700,'pyre_page_title_bar_bg_color',''),(6218,3700,'pyre_image_rollover_icons','linkzoom'),(6219,3700,'pyre_link_icon_url',''),(6220,3700,'slide_template','default'),(6221,3700,'fusion_builder_status','active'),(6222,3700,'pyre_slider_position','default'),(6223,3700,'pyre_main_top_padding',''),(6224,3700,'pyre_main_bottom_padding',''),(6225,3700,'pyre_hundredp_padding',''),(6226,3700,'pyre_display_header','yes'),(6227,3700,'pyre_transparent_header','default'),(6228,3700,'pyre_displayed_menu','default'),(6229,3700,'pyre_display_footer','default'),(6230,3700,'pyre_display_copyright','default'),(6231,3700,'pyre_portfolio_content_length','default'),(6232,3700,'pyre_portfolio_text_layout','default'),(6233,3700,'pyre_portfolio_featured_image_size','default'),(6234,3700,'pyre_page_title_custom_text',''),(6235,3700,'pyre_page_title_custom_subheader',''),(6236,3700,'pyre_page_title_height',''),(6237,3700,'pyre_page_title_bg_parallax','default'),(6238,3700,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6239,3700,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(6240,3700,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6241,3700,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6242,3705,'pyre_page_title','no'),(6243,3705,'pyre_page_title_text','yes'),(6244,3705,'pyre_slider_type','flex'),(6245,3705,'pyre_slider','0'),(6246,3705,'pyre_wooslider','shortcode'),(6247,3705,'pyre_flexslider','0'),(6248,3705,'pyre_revslider','0'),(6249,3705,'pyre_elasticslider','0'),(6250,3705,'pyre_fallback',''),(6251,3705,'pyre_full_width','no'),(6252,3705,'pyre_sidebar_position','default'),(6253,3705,'pyre_portfolio_excerpt',''),(6254,3705,'pyre_portfolio_full_width','yes'),(6255,3705,'pyre_portfolio_sidebar_position','default'),(6256,3705,'pyre_portfolio_filters','yes'),(6257,3705,'pyre_page_bg_color',''),(6258,3705,'pyre_page_bg',''),(6259,3705,'pyre_page_bg_full','no'),(6260,3705,'pyre_page_bg_repeat','repeat'),(6261,3705,'pyre_page_title_bar_bg',''),(6262,3705,'pyre_page_title_bar_bg_retina',''),(6263,3705,'pyre_page_title_bar_bg_color',''),(6264,3705,'pyre_image_rollover_icons','linkzoom'),(6265,3705,'pyre_link_icon_url',''),(6266,3705,'_wp_page_template','100-width.php'),(6267,3705,'avada_post_views_count','92'),(6268,3705,'pyre_page_bg_layout','default'),(6269,3705,'pyre_wide_page_bg',''),(6270,3705,'pyre_wide_page_bg_color',''),(6271,3705,'pyre_wide_page_bg_full','no'),(6272,3705,'pyre_wide_page_bg_repeat','repeat'),(6273,3705,'pyre_header_bg',''),(6274,3705,'pyre_header_bg_color',''),(6275,3705,'pyre_header_bg_full','no'),(6276,3705,'pyre_header_bg_repeat','repeat'),(6277,3705,'pyre_page_title_bar_bg_full','no'),(6278,3705,'avada_post_views_count','0'),(6279,3705,'pyre_page_title','no'),(6280,3705,'pyre_page_title_text','yes'),(6281,3705,'pyre_slider_type','flex'),(6282,3705,'pyre_slider','0'),(6283,3705,'pyre_wooslider','shortcode'),(6284,3705,'pyre_flexslider','0'),(6285,3705,'pyre_revslider','0'),(6286,3705,'pyre_elasticslider','0'),(6287,3705,'pyre_fallback',''),(6288,3705,'pyre_full_width','no'),(6289,3705,'pyre_sidebar_position','default'),(6290,3705,'pyre_portfolio_excerpt',''),(6291,3705,'pyre_portfolio_full_width','yes'),(6292,3705,'pyre_portfolio_sidebar_position','default'),(6293,3705,'pyre_portfolio_filters','yes'),(6294,3705,'pyre_page_bg_color',''),(6295,3705,'pyre_page_bg',''),(6296,3705,'pyre_page_bg_full','no'),(6297,3705,'pyre_page_bg_repeat','repeat'),(6298,3705,'pyre_page_title_bar_bg',''),(6299,3705,'pyre_page_title_bar_bg_retina',''),(6300,3705,'pyre_page_title_bar_bg_color',''),(6301,3705,'pyre_image_rollover_icons','linkzoom'),(6302,3705,'pyre_link_icon_url',''),(6303,3705,'_wp_page_template','100-width.php'),(6304,3705,'pyre_page_title_custom_text',''),(6305,3705,'pyre_page_title_custom_subheader',''),(6306,3705,'pyre_page_title_height',''),(6307,3705,'pyre_page_title_bg_parallax','default'),(6308,3705,'slide_template','default'),(6309,3705,'pyre_slider_position','default'),(6310,3705,'pyre_display_header','yes'),(6311,3705,'pyre_transparent_header','default'),(6312,3705,'pyre_displayed_menu','default'),(6313,3705,'pyre_display_footer','default'),(6314,3705,'pyre_display_copyright','default'),(6315,3705,'pyre_main_top_padding',''),(6316,3705,'pyre_main_bottom_padding','0px'),(6317,3705,'pyre_hundredp_padding',''),(6318,3705,'fusion_builder_status','active'),(6319,3705,'pyre_portfolio_content_length','default'),(6320,3705,'pyre_portfolio_text_layout','default'),(6321,3705,'pyre_portfolio_featured_image_size','default'),(6322,3705,'pyre_show_first_featured_image','no'),(6323,3705,'pyre_header_100_width','default'),(6324,3705,'pyre_header_bg_opacity',''),(6325,3705,'pyre_footer_100_width','default'),(6326,3705,'pyre_portfolio_width_100','no'),(6327,3705,'pyre_portfolio_column_spacing',''),(6328,3705,'pyre_page_title_text_alignment','default'),(6329,3705,'pyre_page_title_text_size',''),(6330,3705,'pyre_page_title_custom_subheader_text_size',''),(6331,3705,'pyre_page_title_font_color',''),(6332,3705,'pyre_page_title_breadcrumbs_search_bar','default'),(6333,3705,'pyre_avada_rev_styles','default'),(6334,3705,'pyre_page_title_100_width','default'),(6335,3705,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6336,3705,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6337,3705,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6338,3705,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6339,3713,'pyre_page_title','no'),(6340,3713,'pyre_page_title_text','yes'),(6341,3713,'pyre_slider_type','no'),(6342,3713,'pyre_slider','0'),(6343,3713,'pyre_wooslider','0'),(6344,3713,'pyre_flexslider','0'),(6345,3713,'pyre_revslider','0'),(6346,3713,'pyre_elasticslider','0'),(6347,3713,'pyre_fallback',''),(6348,3713,'pyre_full_width','no'),(6349,3713,'pyre_sidebar_position','default'),(6350,3713,'pyre_portfolio_excerpt',''),(6351,3713,'pyre_portfolio_full_width','yes'),(6352,3713,'pyre_portfolio_sidebar_position','default'),(6353,3713,'pyre_portfolio_filters','yes'),(6354,3713,'pyre_page_bg_color',''),(6355,3713,'pyre_page_bg',''),(6356,3713,'pyre_page_bg_full','no'),(6357,3713,'pyre_page_bg_repeat','repeat'),(6358,3713,'pyre_page_title_bar_bg',''),(6359,3713,'pyre_page_title_bar_bg_retina',''),(6360,3713,'pyre_page_title_bar_bg_color',''),(6361,3713,'pyre_image_rollover_icons','linkzoom'),(6362,3713,'pyre_link_icon_url',''),(6363,3713,'_wp_page_template','100-width.php'),(6364,3713,'avada_post_views_count','51'),(6365,3713,'pyre_page_bg_layout','default'),(6366,3713,'pyre_wide_page_bg',''),(6367,3713,'pyre_wide_page_bg_color',''),(6368,3713,'pyre_wide_page_bg_full','no'),(6369,3713,'pyre_wide_page_bg_repeat','repeat'),(6370,3713,'pyre_header_bg',''),(6371,3713,'pyre_header_bg_color',''),(6372,3713,'pyre_header_bg_full','no'),(6373,3713,'pyre_header_bg_repeat','repeat'),(6374,3713,'pyre_page_title_bar_bg_full','no'),(6375,3713,'pyre_page_title','no'),(6376,3713,'pyre_page_title_text','yes'),(6377,3713,'pyre_slider_type','no'),(6378,3713,'pyre_slider','0'),(6379,3713,'pyre_wooslider','0'),(6380,3713,'pyre_flexslider','0'),(6381,3713,'pyre_revslider','0'),(6382,3713,'pyre_elasticslider','0'),(6383,3713,'pyre_fallback',''),(6384,3713,'pyre_full_width','no'),(6385,3713,'pyre_sidebar_position','default'),(6386,3713,'pyre_portfolio_excerpt',''),(6387,3713,'pyre_portfolio_full_width','yes'),(6388,3713,'pyre_portfolio_sidebar_position','default'),(6389,3713,'pyre_portfolio_filters','yes'),(6390,3713,'pyre_page_bg_color',''),(6391,3713,'pyre_page_bg',''),(6392,3713,'pyre_page_bg_full','no'),(6393,3713,'pyre_page_bg_repeat','repeat'),(6394,3713,'pyre_page_title_bar_bg',''),(6395,3713,'pyre_page_title_bar_bg_retina',''),(6396,3713,'pyre_page_title_bar_bg_color',''),(6397,3713,'pyre_image_rollover_icons','linkzoom'),(6398,3713,'pyre_link_icon_url',''),(6399,3713,'_wp_page_template','100-width.php'),(6400,3713,'slide_template','default'),(6401,3713,'pyre_slider_position','default'),(6402,3713,'pyre_display_header','yes'),(6403,3713,'pyre_transparent_header','default'),(6404,3713,'pyre_displayed_menu','default'),(6405,3713,'pyre_display_footer','default'),(6406,3713,'pyre_display_copyright','default'),(6407,3713,'pyre_main_top_padding','0px'),(6408,3713,'pyre_main_bottom_padding',''),(6409,3713,'pyre_hundredp_padding',''),(6410,3713,'pyre_page_title_custom_text',''),(6411,3713,'pyre_page_title_custom_subheader',''),(6412,3713,'pyre_page_title_height',''),(6413,3713,'pyre_page_title_bg_parallax','default'),(6414,3713,'fusion_builder_status','active'),(6415,3713,'pyre_portfolio_content_length','default'),(6416,3713,'pyre_portfolio_text_layout','default'),(6417,3713,'pyre_portfolio_featured_image_size','default'),(6418,3713,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6419,3713,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(6420,3713,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6421,3713,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6422,3717,'pyre_page_title','no'),(6423,3717,'pyre_page_title_text','yes'),(6424,3717,'pyre_slider_type','flex'),(6425,3717,'pyre_slider','0'),(6426,3717,'pyre_wooslider','shortcode'),(6427,3717,'pyre_flexslider','0'),(6428,3717,'pyre_revslider','0'),(6429,3717,'pyre_elasticslider','0'),(6430,3717,'pyre_fallback',''),(6431,3717,'pyre_full_width','no'),(6432,3717,'pyre_sidebar_position','default'),(6433,3717,'pyre_portfolio_excerpt',''),(6434,3717,'pyre_portfolio_full_width','yes'),(6435,3717,'pyre_portfolio_sidebar_position','default'),(6436,3717,'pyre_portfolio_filters','yes'),(6437,3717,'pyre_page_bg_color',''),(6438,3717,'pyre_page_bg',''),(6439,3717,'pyre_page_bg_full','no'),(6440,3717,'pyre_page_bg_repeat','repeat'),(6441,3717,'pyre_page_title_bar_bg',''),(6442,3717,'pyre_page_title_bar_bg_retina',''),(6443,3717,'pyre_page_title_bar_bg_color',''),(6444,3717,'pyre_image_rollover_icons','linkzoom'),(6445,3717,'pyre_link_icon_url',''),(6446,3717,'_wp_page_template','100-width.php'),(6447,3717,'avada_post_views_count','103'),(6448,3717,'pyre_page_bg_layout','default'),(6449,3717,'pyre_wide_page_bg',''),(6450,3717,'pyre_wide_page_bg_color',''),(6451,3717,'pyre_wide_page_bg_full','no'),(6452,3717,'pyre_wide_page_bg_repeat','repeat'),(6453,3717,'pyre_header_bg',''),(6454,3717,'pyre_header_bg_color',''),(6455,3717,'pyre_header_bg_full','no'),(6456,3717,'pyre_header_bg_repeat','repeat'),(6457,3717,'pyre_page_title_bar_bg_full','no'),(6458,3717,'slide_template','default'),(6459,3717,'pyre_slider_position','default'),(6460,3717,'pyre_display_header','yes'),(6461,3717,'pyre_transparent_header','default'),(6462,3717,'pyre_displayed_menu','default'),(6463,3717,'pyre_display_footer','default'),(6464,3717,'pyre_display_copyright','default'),(6465,3717,'pyre_main_top_padding',''),(6466,3717,'pyre_main_bottom_padding','0px'),(6467,3717,'pyre_hundredp_padding',''),(6468,3717,'pyre_page_title_custom_text',''),(6469,3717,'pyre_page_title_custom_subheader',''),(6470,3717,'pyre_page_title_height',''),(6471,3717,'pyre_page_title_bg_parallax','default'),(6472,3717,'fusion_builder_status','active'),(6473,3717,'pyre_portfolio_featured_image_size','default'),(6474,3717,'pyre_portfolio_content_length','default'),(6475,3717,'pyre_portfolio_text_layout','default'),(6476,3717,'pyre_avada_rev_styles','default'),(6477,3717,'pyre_show_first_featured_image','no'),(6478,3717,'pyre_header_100_width','default'),(6479,3717,'pyre_header_bg_opacity',''),(6480,3717,'pyre_footer_100_width','default'),(6481,3717,'pyre_portfolio_width_100','no'),(6482,3717,'pyre_portfolio_column_spacing',''),(6483,3717,'pyre_page_title_text_alignment','default'),(6484,3717,'pyre_page_title_100_width','default'),(6485,3717,'pyre_page_title_text_size',''),(6486,3717,'pyre_page_title_custom_subheader_text_size',''),(6487,3717,'pyre_page_title_font_color',''),(6488,3717,'pyre_page_title_breadcrumbs_search_bar','default'),(6489,3717,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6490,3717,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6491,3717,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6492,3717,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6493,3719,'pyre_page_title','no'),(6494,3719,'pyre_page_title_text','yes'),(6495,3719,'pyre_slider_type','flex'),(6496,3719,'pyre_slider','0'),(6497,3719,'pyre_wooslider','shortcode'),(6498,3719,'pyre_flexslider','0'),(6499,3719,'pyre_revslider','0'),(6500,3719,'pyre_elasticslider','0'),(6501,3719,'pyre_fallback',''),(6502,3719,'pyre_full_width','no'),(6503,3719,'pyre_sidebar_position','default'),(6504,3719,'pyre_portfolio_excerpt',''),(6505,3719,'pyre_portfolio_full_width','yes'),(6506,3719,'pyre_portfolio_sidebar_position','default'),(6507,3719,'pyre_portfolio_filters','yes'),(6508,3719,'pyre_page_bg_color',''),(6509,3719,'pyre_page_bg',''),(6510,3719,'pyre_page_bg_full','no'),(6511,3719,'pyre_page_bg_repeat','repeat'),(6512,3719,'pyre_page_title_bar_bg',''),(6513,3719,'pyre_page_title_bar_bg_retina',''),(6514,3719,'pyre_page_title_bar_bg_color',''),(6515,3719,'pyre_image_rollover_icons','linkzoom'),(6516,3719,'pyre_link_icon_url',''),(6517,3719,'_wp_page_template','100-width.php'),(6518,3719,'avada_post_views_count','66'),(6519,3719,'pyre_link_icon_url',''),(6520,3719,'_wp_page_template','100-width.php'),(6521,3719,'pyre_image_rollover_icons','linkzoom'),(6522,3719,'pyre_page_title_bar_bg_color',''),(6523,3719,'pyre_page_bg_repeat','repeat'),(6524,3719,'pyre_page_title_bar_bg',''),(6525,3719,'pyre_page_title_bar_bg_retina',''),(6526,3719,'pyre_page_bg_full','no'),(6527,3719,'pyre_page_bg',''),(6528,3719,'pyre_page_bg_color',''),(6529,3719,'pyre_portfolio_filters','yes'),(6530,3719,'pyre_portfolio_sidebar_position','default'),(6531,3719,'pyre_portfolio_full_width','yes'),(6532,3719,'pyre_portfolio_excerpt',''),(6533,3719,'pyre_sidebar_position','default'),(6534,3719,'pyre_page_title','no'),(6535,3719,'pyre_page_title_text','yes'),(6536,3719,'pyre_slider_type','flex'),(6537,3719,'pyre_slider','0'),(6538,3719,'pyre_wooslider','shortcode'),(6539,3719,'pyre_flexslider','0'),(6540,3719,'pyre_revslider','0'),(6541,3719,'pyre_elasticslider','0'),(6542,3719,'pyre_fallback',''),(6543,3719,'pyre_full_width','no'),(6544,3719,'slide_template','default'),(6545,3719,'pyre_slider_position','default'),(6546,3719,'pyre_display_header','yes'),(6547,3719,'pyre_transparent_header','default'),(6548,3719,'pyre_displayed_menu','default'),(6549,3719,'pyre_display_footer','default'),(6550,3719,'pyre_display_copyright','default'),(6551,3719,'pyre_main_top_padding',''),(6552,3719,'pyre_main_bottom_padding','0px'),(6553,3719,'pyre_hundredp_padding',''),(6554,3719,'pyre_page_bg_layout','default'),(6555,3719,'pyre_wide_page_bg',''),(6556,3719,'pyre_wide_page_bg_color',''),(6557,3719,'pyre_wide_page_bg_full','no'),(6558,3719,'pyre_wide_page_bg_repeat','repeat'),(6559,3719,'pyre_header_bg',''),(6560,3719,'pyre_header_bg_color',''),(6561,3719,'pyre_header_bg_full','no'),(6562,3719,'pyre_header_bg_repeat','repeat'),(6563,3719,'pyre_page_title_custom_text',''),(6564,3719,'pyre_page_title_custom_subheader',''),(6565,3719,'pyre_page_title_height',''),(6566,3719,'pyre_page_title_bar_bg_full','default'),(6567,3719,'pyre_page_title_bg_parallax','default'),(6568,3719,'fusion_builder_status','active'),(6569,3719,'pyre_portfolio_content_length','default'),(6570,3719,'pyre_portfolio_text_layout','default'),(6571,3719,'pyre_portfolio_featured_image_size','default'),(6572,3719,'pyre_avada_rev_styles','default'),(6573,3719,'pyre_show_first_featured_image','no'),(6574,3719,'pyre_header_100_width','default'),(6575,3719,'pyre_header_bg_opacity',''),(6576,3719,'pyre_footer_100_width','default'),(6577,3719,'pyre_portfolio_width_100','no'),(6578,3719,'pyre_portfolio_column_spacing',''),(6579,3719,'pyre_page_title_text_alignment','default'),(6580,3719,'pyre_page_title_100_width','default'),(6581,3719,'pyre_page_title_text_size',''),(6582,3719,'pyre_page_title_custom_subheader_text_size',''),(6583,3719,'pyre_page_title_font_color',''),(6584,3719,'pyre_page_title_breadcrumbs_search_bar','default'),(6585,3719,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:10926;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1421368695;}'),(6586,3719,'fusion_builder_content',''),(6587,3719,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6588,3719,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6589,3719,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6590,3719,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6591,3725,'pyre_page_title','yes'),(6592,3725,'pyre_page_title_text','yes'),(6593,3725,'pyre_slider_type','no'),(6594,3725,'pyre_slider','0'),(6595,3725,'pyre_wooslider','0'),(6596,3725,'pyre_flexslider','0'),(6597,3725,'pyre_revslider','0'),(6598,3725,'pyre_elasticslider','0'),(6599,3725,'pyre_fallback',''),(6600,3725,'pyre_full_width','no'),(6601,3725,'pyre_sidebar_position','default'),(6602,3725,'pyre_portfolio_excerpt',''),(6603,3725,'pyre_portfolio_full_width','yes'),(6604,3725,'pyre_portfolio_sidebar_position','default'),(6605,3725,'pyre_portfolio_filters','yes'),(6606,3725,'pyre_page_bg_color',''),(6607,3725,'pyre_page_bg',''),(6608,3725,'pyre_page_bg_full','no'),(6609,3725,'pyre_page_bg_repeat','repeat'),(6610,3725,'pyre_page_title_bar_bg',''),(6611,3725,'pyre_page_title_bar_bg_retina',''),(6612,3725,'pyre_page_title_bar_bg_color',''),(6613,3725,'pyre_image_rollover_icons','linkzoom'),(6614,3725,'pyre_link_icon_url',''),(6615,3725,'_wp_page_template','default'),(6616,3725,'avada_post_views_count','77'),(6617,3725,'pyre_page_bg_layout','default'),(6618,3725,'pyre_wide_page_bg',''),(6619,3725,'pyre_wide_page_bg_color',''),(6620,3725,'pyre_wide_page_bg_full','no'),(6621,3725,'pyre_wide_page_bg_repeat','repeat'),(6622,3725,'pyre_header_bg',''),(6623,3725,'pyre_header_bg_color',''),(6624,3725,'pyre_header_bg_full','no'),(6625,3725,'pyre_header_bg_repeat','repeat'),(6626,3725,'pyre_page_title_bar_bg_full','no'),(6627,3725,'pyre_page_title','yes'),(6628,3725,'pyre_page_title_text','yes'),(6629,3725,'pyre_slider_type','no'),(6630,3725,'pyre_slider','0'),(6631,3725,'pyre_wooslider','0'),(6632,3725,'pyre_flexslider','0'),(6633,3725,'pyre_revslider','0'),(6634,3725,'pyre_elasticslider','0'),(6635,3725,'pyre_fallback',''),(6636,3725,'pyre_full_width','no'),(6637,3725,'pyre_sidebar_position','default'),(6638,3725,'pyre_portfolio_excerpt',''),(6639,3725,'pyre_portfolio_full_width','yes'),(6640,3725,'pyre_portfolio_sidebar_position','default'),(6641,3725,'pyre_portfolio_filters','yes'),(6642,3725,'pyre_page_bg_color',''),(6643,3725,'pyre_page_bg',''),(6644,3725,'pyre_page_bg_full','no'),(6645,3725,'pyre_page_bg_repeat','repeat'),(6646,3725,'pyre_page_title_bar_bg',''),(6647,3725,'pyre_page_title_bar_bg_retina',''),(6648,3725,'pyre_page_title_bar_bg_color',''),(6649,3725,'pyre_image_rollover_icons','linkzoom'),(6650,3725,'pyre_link_icon_url',''),(6651,3725,'_wp_page_template','default'),(6652,3725,'pyre_page_title_custom_text',''),(6653,3725,'pyre_page_title_custom_subheader',''),(6654,3725,'pyre_page_title_height',''),(6655,3725,'pyre_page_title_bg_parallax','default'),(6656,3725,'slide_template','default'),(6657,3725,'pyre_slider_position','default'),(6658,3725,'pyre_display_header','yes'),(6659,3725,'pyre_transparent_header','default'),(6660,3725,'pyre_displayed_menu','default'),(6661,3725,'pyre_display_footer','default'),(6662,3725,'pyre_display_copyright','default'),(6663,3725,'pyre_main_top_padding',''),(6664,3725,'pyre_main_bottom_padding',''),(6665,3725,'pyre_hundredp_padding',''),(6666,3725,'fusion_builder_status','active'),(6667,3725,'pyre_portfolio_content_length','default'),(6668,3725,'pyre_portfolio_text_layout','default'),(6669,3725,'pyre_portfolio_featured_image_size','default'),(6670,3725,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6671,3725,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6672,3725,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6673,3725,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6674,3727,'pyre_page_title','no'),(6675,3727,'pyre_page_title_text','yes'),(6676,3727,'pyre_slider_type','flex'),(6677,3727,'pyre_slider','0'),(6678,3727,'pyre_wooslider','shortcode'),(6679,3727,'pyre_flexslider','0'),(6680,3727,'pyre_revslider','0'),(6681,3727,'pyre_elasticslider','0'),(6682,3727,'pyre_fallback',''),(6683,3727,'pyre_full_width','no'),(6684,3727,'pyre_sidebar_position','default'),(6685,3727,'pyre_portfolio_excerpt',''),(6686,3727,'pyre_portfolio_full_width','yes'),(6687,3727,'pyre_portfolio_sidebar_position','default'),(6688,3727,'pyre_portfolio_filters','yes'),(6689,3727,'pyre_page_bg_color',''),(6690,3727,'pyre_page_bg',''),(6691,3727,'pyre_page_bg_full','no'),(6692,3727,'pyre_page_bg_repeat','repeat'),(6693,3727,'pyre_page_title_bar_bg',''),(6694,3727,'pyre_page_title_bar_bg_retina',''),(6695,3727,'pyre_page_title_bar_bg_color',''),(6696,3727,'pyre_image_rollover_icons','linkzoom'),(6697,3727,'pyre_link_icon_url',''),(6698,3727,'_wp_page_template','100-width.php'),(6699,3727,'avada_post_views_count','95'),(6700,3727,'pyre_page_title','no'),(6701,3727,'pyre_page_title_text','yes'),(6702,3727,'pyre_slider_type','flex'),(6703,3727,'pyre_slider','0'),(6704,3727,'pyre_wooslider','shortcode'),(6705,3727,'pyre_flexslider','0'),(6706,3727,'pyre_revslider','0'),(6707,3727,'pyre_elasticslider','0'),(6708,3727,'pyre_fallback',''),(6709,3727,'pyre_full_width','no'),(6710,3727,'pyre_sidebar_position','default'),(6711,3727,'pyre_portfolio_excerpt',''),(6712,3727,'pyre_portfolio_full_width','yes'),(6713,3727,'pyre_portfolio_sidebar_position','default'),(6714,3727,'pyre_portfolio_filters','yes'),(6715,3727,'pyre_page_bg_color',''),(6716,3727,'pyre_page_bg',''),(6717,3727,'pyre_page_bg_full','no'),(6718,3727,'pyre_page_bg_repeat','repeat'),(6719,3727,'pyre_page_title_bar_bg',''),(6720,3727,'pyre_page_title_bar_bg_retina',''),(6721,3727,'pyre_page_title_bar_bg_color',''),(6722,3727,'pyre_image_rollover_icons','linkzoom'),(6723,3727,'pyre_link_icon_url',''),(6724,3727,'_wp_page_template','100-width.php'),(6725,3727,'pyre_page_bg_layout','default'),(6726,3727,'pyre_wide_page_bg',''),(6727,3727,'pyre_wide_page_bg_color',''),(6728,3727,'pyre_wide_page_bg_full','no'),(6729,3727,'pyre_wide_page_bg_repeat','repeat'),(6730,3727,'pyre_header_bg',''),(6731,3727,'pyre_header_bg_color',''),(6732,3727,'pyre_header_bg_full','no'),(6733,3727,'pyre_header_bg_repeat','repeat'),(6734,3727,'pyre_page_title_custom_text',''),(6735,3727,'pyre_page_title_custom_subheader',''),(6736,3727,'pyre_page_title_height',''),(6737,3727,'pyre_page_title_bar_bg_full','default'),(6738,3727,'pyre_page_title_bg_parallax','default'),(6739,3727,'slide_template','default'),(6740,3727,'pyre_slider_position','default'),(6741,3727,'pyre_display_header','yes'),(6742,3727,'pyre_transparent_header','default'),(6743,3727,'pyre_displayed_menu','default'),(6744,3727,'pyre_display_footer','default'),(6745,3727,'pyre_display_copyright','default'),(6746,3727,'pyre_main_top_padding',''),(6747,3727,'pyre_main_bottom_padding','0px'),(6748,3727,'pyre_hundredp_padding',''),(6749,3727,'fusion_builder_status','active'),(6750,3727,'pyre_portfolio_content_length','default'),(6751,3727,'pyre_portfolio_text_layout','default'),(6752,3727,'pyre_portfolio_featured_image_size','default'),(6753,3727,'pyre_show_first_featured_image','no'),(6754,3727,'pyre_header_100_width','default'),(6755,3727,'pyre_header_bg_opacity',''),(6756,3727,'pyre_footer_100_width','default'),(6757,3727,'pyre_portfolio_width_100','no'),(6758,3727,'pyre_portfolio_column_spacing',''),(6759,3727,'pyre_page_title_text_alignment','default'),(6760,3727,'pyre_page_title_text_size',''),(6761,3727,'pyre_page_title_custom_subheader_text_size',''),(6762,3727,'pyre_page_title_font_color',''),(6763,3727,'pyre_page_title_breadcrumbs_search_bar','default'),(6764,3727,'pyre_avada_rev_styles','default'),(6765,3727,'pyre_page_title_100_width','default'),(6766,3727,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6767,3727,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6768,3727,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6769,3727,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6770,3729,'pyre_page_title','no'),(6771,3729,'pyre_page_title_text','yes'),(6772,3729,'pyre_slider_type','flex'),(6773,3729,'pyre_slider','0'),(6774,3729,'pyre_wooslider','shortcode'),(6775,3729,'pyre_flexslider','0'),(6776,3729,'pyre_revslider','0'),(6777,3729,'pyre_elasticslider','0'),(6778,3729,'pyre_fallback',''),(6779,3729,'pyre_full_width','no'),(6780,3729,'pyre_sidebar_position','default'),(6781,3729,'pyre_portfolio_excerpt',''),(6782,3729,'pyre_portfolio_full_width','yes'),(6783,3729,'pyre_portfolio_sidebar_position','default'),(6784,3729,'pyre_portfolio_filters','yes'),(6785,3729,'pyre_page_bg_color',''),(6786,3729,'pyre_page_bg',''),(6787,3729,'pyre_page_bg_full','no'),(6788,3729,'pyre_page_bg_repeat','repeat'),(6789,3729,'pyre_page_title_bar_bg',''),(6790,3729,'pyre_page_title_bar_bg_retina',''),(6791,3729,'pyre_page_title_bar_bg_color',''),(6792,3729,'pyre_image_rollover_icons','linkzoom'),(6793,3729,'pyre_link_icon_url',''),(6794,3729,'_wp_page_template','100-width.php'),(6795,3729,'avada_post_views_count','76'),(6796,3729,'avada_post_views_count','0'),(6797,3729,'pyre_page_title','no'),(6798,3729,'pyre_page_title_text','yes'),(6799,3729,'pyre_slider_type','flex'),(6800,3729,'pyre_slider','0'),(6801,3729,'pyre_wooslider','shortcode'),(6802,3729,'pyre_flexslider','0'),(6803,3729,'pyre_revslider','0'),(6804,3729,'pyre_elasticslider','0'),(6805,3729,'pyre_fallback',''),(6806,3729,'pyre_full_width','no'),(6807,3729,'pyre_sidebar_position','default'),(6808,3729,'pyre_portfolio_excerpt',''),(6809,3729,'pyre_portfolio_full_width','yes'),(6810,3729,'pyre_portfolio_sidebar_position','default'),(6811,3729,'pyre_portfolio_filters','yes'),(6812,3729,'pyre_page_bg_color',''),(6813,3729,'pyre_page_bg',''),(6814,3729,'pyre_page_bg_full','no'),(6815,3729,'pyre_page_bg_repeat','repeat'),(6816,3729,'pyre_page_title_bar_bg',''),(6817,3729,'pyre_page_title_bar_bg_retina',''),(6818,3729,'pyre_page_title_bar_bg_color',''),(6819,3729,'pyre_image_rollover_icons','linkzoom'),(6820,3729,'pyre_link_icon_url',''),(6821,3729,'_wp_page_template','100-width.php'),(6822,3729,'fusion_builder_status','active'),(6823,3729,'pyre_slider_position','default'),(6824,3729,'pyre_main_top_padding',''),(6825,3729,'pyre_main_bottom_padding','0px'),(6826,3729,'pyre_hundredp_padding',''),(6827,3729,'pyre_display_header','yes'),(6828,3729,'pyre_header_bg',''),(6829,3729,'pyre_header_bg_color',''),(6830,3729,'pyre_header_bg_full','no'),(6831,3729,'pyre_header_bg_repeat','repeat'),(6832,3729,'pyre_transparent_header','default'),(6833,3729,'pyre_displayed_menu','default'),(6834,3729,'pyre_display_footer','default'),(6835,3729,'pyre_display_copyright','default'),(6836,3729,'pyre_page_bg_layout','default'),(6837,3729,'pyre_wide_page_bg',''),(6838,3729,'pyre_wide_page_bg_color',''),(6839,3729,'pyre_wide_page_bg_full','no'),(6840,3729,'pyre_wide_page_bg_repeat','repeat'),(6841,3729,'pyre_portfolio_content_length','default'),(6842,3729,'pyre_portfolio_text_layout','default'),(6843,3729,'pyre_portfolio_featured_image_size','default'),(6844,3729,'pyre_page_title_custom_text',''),(6845,3729,'pyre_page_title_custom_subheader',''),(6846,3729,'pyre_page_title_height',''),(6847,3729,'pyre_page_title_bar_bg_full','default'),(6848,3729,'pyre_page_title_bg_parallax','default'),(6849,3729,'slide_template','default'),(6850,3729,'pyre_avada_rev_styles','default'),(6851,3729,'pyre_show_first_featured_image','no'),(6852,3729,'pyre_header_100_width','default'),(6853,3729,'pyre_header_bg_opacity',''),(6854,3729,'pyre_footer_100_width','default'),(6855,3729,'pyre_portfolio_width_100','no'),(6856,3729,'pyre_portfolio_column_spacing',''),(6857,3729,'pyre_page_title_text_alignment','default'),(6858,3729,'pyre_page_title_100_width','default'),(6859,3729,'pyre_page_title_text_size',''),(6860,3729,'pyre_page_title_custom_subheader_text_size',''),(6861,3729,'pyre_page_title_font_color',''),(6862,3729,'pyre_page_title_breadcrumbs_search_bar','default'),(6863,3729,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6864,3729,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6865,3729,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6866,3729,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6867,3731,'pyre_page_title','no'),(6868,3731,'pyre_page_title_text','yes'),(6869,3731,'pyre_slider_type','flex'),(6870,3731,'pyre_slider','0'),(6871,3731,'pyre_wooslider','shortcode'),(6872,3731,'pyre_flexslider','0'),(6873,3731,'pyre_revslider','0'),(6874,3731,'pyre_elasticslider','0'),(6875,3731,'pyre_fallback',''),(6876,3731,'pyre_full_width','no'),(6877,3731,'pyre_sidebar_position','default'),(6878,3731,'pyre_portfolio_excerpt',''),(6879,3731,'pyre_portfolio_full_width','yes'),(6880,3731,'pyre_portfolio_sidebar_position','default'),(6881,3731,'pyre_portfolio_filters','yes'),(6882,3731,'pyre_page_bg_color',''),(6883,3731,'pyre_page_bg',''),(6884,3731,'pyre_page_bg_full','no'),(6885,3731,'pyre_page_bg_repeat','repeat'),(6886,3731,'pyre_page_title_bar_bg',''),(6887,3731,'pyre_page_title_bar_bg_retina',''),(6888,3731,'pyre_page_title_bar_bg_color',''),(6889,3731,'pyre_image_rollover_icons','linkzoom'),(6890,3731,'pyre_link_icon_url',''),(6891,3731,'_wp_page_template','100-width.php'),(6892,3731,'avada_post_views_count','84'),(6893,3731,'pyre_page_title','no'),(6894,3731,'pyre_page_title_text','yes'),(6895,3731,'pyre_slider_type','flex'),(6896,3731,'pyre_slider','0'),(6897,3731,'pyre_wooslider','shortcode'),(6898,3731,'pyre_flexslider','0'),(6899,3731,'pyre_revslider','0'),(6900,3731,'pyre_elasticslider','0'),(6901,3731,'pyre_fallback',''),(6902,3731,'pyre_full_width','no'),(6903,3731,'pyre_sidebar_position','default'),(6904,3731,'pyre_portfolio_excerpt',''),(6905,3731,'pyre_portfolio_full_width','yes'),(6906,3731,'pyre_portfolio_sidebar_position','default'),(6907,3731,'pyre_portfolio_filters','yes'),(6908,3731,'pyre_page_bg_color',''),(6909,3731,'pyre_page_bg',''),(6910,3731,'pyre_page_bg_full','no'),(6911,3731,'pyre_page_bg_repeat','repeat'),(6912,3731,'pyre_page_title_bar_bg',''),(6913,3731,'pyre_page_title_bar_bg_retina',''),(6914,3731,'pyre_page_title_bar_bg_color',''),(6915,3731,'pyre_image_rollover_icons','linkzoom'),(6916,3731,'pyre_link_icon_url',''),(6917,3731,'_wp_page_template','100-width.php'),(6918,3731,'fusion_builder_status','active'),(6919,3731,'pyre_slider_position','default'),(6920,3731,'pyre_main_top_padding',''),(6921,3731,'pyre_main_bottom_padding','0px'),(6922,3731,'pyre_hundredp_padding',''),(6923,3731,'pyre_display_header','yes'),(6924,3731,'pyre_header_bg',''),(6925,3731,'pyre_header_bg_color',''),(6926,3731,'pyre_header_bg_full','no'),(6927,3731,'pyre_header_bg_repeat','repeat'),(6928,3731,'pyre_transparent_header','default'),(6929,3731,'pyre_displayed_menu','default'),(6930,3731,'pyre_display_footer','default'),(6931,3731,'pyre_display_copyright','default'),(6932,3731,'pyre_page_bg_layout','default'),(6933,3731,'pyre_wide_page_bg',''),(6934,3731,'pyre_wide_page_bg_color',''),(6935,3731,'pyre_wide_page_bg_full','no'),(6936,3731,'pyre_wide_page_bg_repeat','repeat'),(6937,3731,'pyre_portfolio_content_length','default'),(6938,3731,'pyre_portfolio_text_layout','default'),(6939,3731,'pyre_portfolio_featured_image_size','default'),(6940,3731,'pyre_page_title_custom_text',''),(6941,3731,'pyre_page_title_custom_subheader',''),(6942,3731,'pyre_page_title_height',''),(6943,3731,'pyre_page_title_bar_bg_full','default'),(6944,3731,'pyre_page_title_bg_parallax','default'),(6945,3731,'slide_template','default'),(6946,3731,'pyre_show_first_featured_image','no'),(6947,3731,'pyre_header_100_width','default'),(6948,3731,'pyre_header_bg_opacity',''),(6949,3731,'pyre_footer_100_width','default'),(6950,3731,'pyre_portfolio_width_100','no'),(6951,3731,'pyre_portfolio_column_spacing',''),(6952,3731,'pyre_page_title_text_alignment','default'),(6953,3731,'pyre_page_title_text_size',''),(6954,3731,'pyre_page_title_custom_subheader_text_size',''),(6955,3731,'pyre_page_title_font_color',''),(6956,3731,'pyre_page_title_breadcrumbs_search_bar','default'),(6957,3731,'pyre_avada_rev_styles','default'),(6958,3731,'pyre_page_title_100_width','default'),(6959,3731,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:11115;s:16:\"restored_by_user\";i:3;s:13:\"restored_time\";i:1421809398;}'),(6960,3731,'fusion_builder_content',''),(6961,3731,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6962,3731,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(6963,3731,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6964,3731,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(6965,3733,'pyre_page_title','no'),(6966,3733,'pyre_page_title_text','yes'),(6967,3733,'pyre_slider_type','flex'),(6968,3733,'pyre_slider','0'),(6969,3733,'pyre_wooslider','shortcode'),(6970,3733,'pyre_flexslider','0'),(6971,3733,'pyre_revslider','0'),(6972,3733,'pyre_elasticslider','0'),(6973,3733,'pyre_fallback',''),(6974,3733,'pyre_full_width','no'),(6975,3733,'pyre_sidebar_position','default'),(6976,3733,'pyre_portfolio_excerpt',''),(6977,3733,'pyre_portfolio_full_width','yes'),(6978,3733,'pyre_portfolio_sidebar_position','default'),(6979,3733,'pyre_portfolio_filters','yes'),(6980,3733,'pyre_page_bg_color',''),(6981,3733,'pyre_page_bg',''),(6982,3733,'pyre_page_bg_full','no'),(6983,3733,'pyre_page_bg_repeat','repeat'),(6984,3733,'pyre_page_title_bar_bg',''),(6985,3733,'pyre_page_title_bar_bg_retina',''),(6986,3733,'pyre_page_title_bar_bg_color',''),(6987,3733,'pyre_image_rollover_icons','linkzoom'),(6988,3733,'pyre_link_icon_url',''),(6989,3733,'_wp_page_template','100-width.php'),(6990,3733,'avada_post_views_count','62'),(6991,3733,'pyre_page_bg_layout','default'),(6992,3733,'pyre_wide_page_bg',''),(6993,3733,'pyre_wide_page_bg_color',''),(6994,3733,'pyre_wide_page_bg_full','no'),(6995,3733,'pyre_wide_page_bg_repeat','repeat'),(6996,3733,'pyre_header_bg',''),(6997,3733,'pyre_header_bg_color',''),(6998,3733,'pyre_header_bg_full','no'),(6999,3733,'pyre_header_bg_repeat','repeat'),(7000,3733,'pyre_page_title_bar_bg_full','no'),(7001,3733,'pyre_page_bg',''),(7002,3733,'pyre_page_bg_color',''),(7003,3733,'pyre_portfolio_filters','yes'),(7004,3733,'pyre_portfolio_sidebar_position','default'),(7005,3733,'pyre_portfolio_full_width','yes'),(7006,3733,'pyre_portfolio_excerpt',''),(7007,3733,'pyre_sidebar_position','default'),(7008,3733,'pyre_full_width','no'),(7009,3733,'pyre_page_title','no'),(7010,3733,'pyre_page_title_text','yes'),(7011,3733,'pyre_slider_type','flex'),(7012,3733,'pyre_slider','0'),(7013,3733,'pyre_wooslider','shortcode'),(7014,3733,'pyre_flexslider','0'),(7015,3733,'_wp_page_template','100-width.php'),(7016,3733,'pyre_link_icon_url',''),(7017,3733,'pyre_image_rollover_icons','linkzoom'),(7018,3733,'pyre_page_title_bar_bg_color',''),(7019,3733,'pyre_page_title_bar_bg_retina',''),(7020,3733,'pyre_page_title_bar_bg',''),(7021,3733,'pyre_page_bg_repeat','repeat'),(7022,3733,'pyre_page_bg_full','no'),(7023,3733,'pyre_fallback',''),(7024,3733,'pyre_elasticslider','0'),(7025,3733,'pyre_revslider','0'),(7026,3733,'slide_template','default'),(7027,3733,'pyre_slider_position','default'),(7028,3733,'pyre_display_header','yes'),(7029,3733,'pyre_transparent_header','default'),(7030,3733,'pyre_displayed_menu','default'),(7031,3733,'pyre_display_footer','default'),(7032,3733,'pyre_display_copyright','default'),(7033,3733,'pyre_main_top_padding',''),(7034,3733,'pyre_main_bottom_padding','0px'),(7035,3733,'pyre_hundredp_padding',''),(7036,3733,'pyre_page_title_custom_text',''),(7037,3733,'pyre_page_title_custom_subheader',''),(7038,3733,'pyre_page_title_height',''),(7039,3733,'pyre_page_title_bg_parallax','default'),(7040,3733,'fusion_builder_status','active'),(7041,3733,'pyre_portfolio_content_length','default'),(7042,3733,'pyre_portfolio_text_layout','default'),(7043,3733,'pyre_portfolio_featured_image_size','default'),(7044,3733,'pyre_avada_rev_styles','default'),(7045,3733,'pyre_show_first_featured_image','no'),(7046,3733,'pyre_header_100_width','default'),(7047,3733,'pyre_header_bg_opacity',''),(7048,3733,'pyre_footer_100_width','default'),(7049,3733,'pyre_portfolio_width_100','no'),(7050,3733,'pyre_portfolio_column_spacing',''),(7051,3733,'pyre_page_title_text_alignment','default'),(7052,3733,'pyre_page_title_100_width','default'),(7053,3733,'pyre_page_title_text_size',''),(7054,3733,'pyre_page_title_custom_subheader_text_size',''),(7055,3733,'pyre_page_title_font_color',''),(7056,3733,'pyre_page_title_breadcrumbs_search_bar','default'),(7057,3733,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7058,3733,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(7059,3733,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7060,3733,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7061,3735,'pyre_page_title','no'),(7062,3735,'pyre_page_title_text','yes'),(7063,3735,'pyre_slider_type','flex'),(7064,3735,'pyre_slider','0'),(7065,3735,'pyre_wooslider','shortcode'),(7066,3735,'pyre_flexslider','0'),(7067,3735,'pyre_revslider','0'),(7068,3735,'pyre_elasticslider','0'),(7069,3735,'pyre_fallback',''),(7070,3735,'pyre_full_width','no'),(7071,3735,'pyre_sidebar_position','default'),(7072,3735,'pyre_portfolio_excerpt',''),(7073,3735,'pyre_portfolio_full_width','yes'),(7074,3735,'pyre_portfolio_sidebar_position','default'),(7075,3735,'pyre_portfolio_filters','yes'),(7076,3735,'pyre_page_bg_color',''),(7077,3735,'pyre_page_bg',''),(7078,3735,'pyre_page_bg_full','no'),(7079,3735,'pyre_page_bg_repeat','repeat'),(7080,3735,'pyre_page_title_bar_bg',''),(7081,3735,'pyre_page_title_bar_bg_retina',''),(7082,3735,'pyre_page_title_bar_bg_color',''),(7083,3735,'pyre_image_rollover_icons','linkzoom'),(7084,3735,'pyre_link_icon_url',''),(7085,3735,'_wp_page_template','100-width.php'),(7086,3735,'avada_post_views_count','233'),(7087,3735,'avada_post_views_count','0'),(7088,3735,'pyre_link_icon_url',''),(7089,3735,'pyre_image_rollover_icons','linkzoom'),(7090,3735,'pyre_page_title_bar_bg_color',''),(7091,3735,'pyre_page_bg_repeat','repeat'),(7092,3735,'pyre_page_bg_full','no'),(7093,3735,'pyre_page_bg',''),(7094,3735,'pyre_page_bg_color',''),(7095,3735,'pyre_portfolio_filters','yes'),(7096,3735,'pyre_portfolio_sidebar_position','default'),(7097,3735,'pyre_portfolio_full_width','yes'),(7098,3735,'pyre_portfolio_excerpt',''),(7099,3735,'pyre_sidebar_position','default'),(7100,3735,'pyre_wooslider','shortcode'),(7101,3735,'pyre_flexslider','0'),(7102,3735,'pyre_revslider','0'),(7103,3735,'pyre_elasticslider','0'),(7104,3735,'pyre_fallback',''),(7105,3735,'pyre_full_width','no'),(7106,3735,'pyre_slider','0'),(7107,3735,'pyre_slider_type','flex'),(7108,3735,'pyre_page_title_text','yes'),(7109,3735,'pyre_page_title','no'),(7110,3735,'pyre_page_title_bar_bg_retina',''),(7111,3735,'pyre_page_title_bar_bg',''),(7112,3735,'_wp_page_template','100-width.php'),(7113,3735,'pyre_page_bg_layout','default'),(7114,3735,'pyre_wide_page_bg',''),(7115,3735,'pyre_wide_page_bg_color',''),(7116,3735,'pyre_wide_page_bg_full','no'),(7117,3735,'pyre_wide_page_bg_repeat','repeat'),(7118,3735,'pyre_header_bg',''),(7119,3735,'pyre_header_bg_color',''),(7120,3735,'pyre_header_bg_full','no'),(7121,3735,'pyre_header_bg_repeat','repeat'),(7122,3735,'pyre_page_title_custom_text',''),(7123,3735,'pyre_page_title_custom_subheader',''),(7124,3735,'pyre_page_title_height',''),(7125,3735,'pyre_page_title_bar_bg_full','default'),(7126,3735,'pyre_page_title_bg_parallax','default'),(7127,3735,'slide_template','default'),(7128,3735,'pyre_slider_position','default'),(7129,3735,'pyre_display_header','yes'),(7130,3735,'pyre_transparent_header','default'),(7131,3735,'pyre_displayed_menu','default'),(7132,3735,'pyre_display_footer','default'),(7133,3735,'pyre_display_copyright','default'),(7134,3735,'pyre_main_top_padding',''),(7135,3735,'pyre_main_bottom_padding','0px'),(7136,3735,'pyre_hundredp_padding',''),(7137,3735,'fusion_builder_status','active'),(7138,3735,'pyre_portfolio_content_length','default'),(7139,3735,'pyre_portfolio_text_layout','default'),(7140,3735,'pyre_portfolio_featured_image_size','default'),(7141,3735,'pyre_avada_rev_styles','default'),(7142,3735,'pyre_show_first_featured_image','no'),(7143,3735,'pyre_header_100_width','default'),(7144,3735,'pyre_header_bg_opacity',''),(7145,3735,'pyre_footer_100_width','default'),(7146,3735,'pyre_portfolio_width_100','no'),(7147,3735,'pyre_portfolio_column_spacing',''),(7148,3735,'pyre_page_title_text_alignment','default'),(7149,3735,'pyre_page_title_100_width','default'),(7150,3735,'pyre_page_title_text_size',''),(7151,3735,'pyre_page_title_custom_subheader_text_size',''),(7152,3735,'pyre_page_title_font_color',''),(7153,3735,'pyre_page_title_breadcrumbs_search_bar','default'),(7154,3735,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7155,3735,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7156,3735,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7157,3735,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7158,3737,'pyre_page_title','yes'),(7159,3737,'pyre_page_title_text','yes'),(7160,3737,'pyre_slider_type','no'),(7161,3737,'pyre_slider','0'),(7162,3737,'pyre_wooslider','0'),(7163,3737,'pyre_flexslider','0'),(7164,3737,'pyre_revslider','0'),(7165,3737,'pyre_elasticslider','0'),(7166,3737,'pyre_fallback',''),(7167,3737,'pyre_full_width','no'),(7168,3737,'pyre_sidebar_position','default'),(7169,3737,'pyre_portfolio_excerpt',''),(7170,3737,'pyre_portfolio_full_width','yes'),(7171,3737,'pyre_portfolio_sidebar_position','default'),(7172,3737,'pyre_portfolio_filters','yes'),(7173,3737,'pyre_page_bg_color',''),(7174,3737,'pyre_page_bg',''),(7175,3737,'pyre_page_bg_full','no'),(7176,3737,'pyre_page_bg_repeat','repeat'),(7177,3737,'pyre_page_title_bar_bg',''),(7178,3737,'pyre_page_title_bar_bg_retina',''),(7179,3737,'pyre_page_title_bar_bg_color',''),(7180,3737,'pyre_image_rollover_icons','linkzoom'),(7181,3737,'pyre_link_icon_url',''),(7182,3737,'_wp_page_template','default'),(7183,3737,'avada_post_views_count','91'),(7184,3737,'pyre_page_bg_layout','default'),(7185,3737,'pyre_wide_page_bg',''),(7186,3737,'pyre_wide_page_bg_color',''),(7187,3737,'pyre_wide_page_bg_full','no'),(7188,3737,'pyre_wide_page_bg_repeat','repeat'),(7189,3737,'pyre_header_bg',''),(7190,3737,'pyre_header_bg_color',''),(7191,3737,'pyre_header_bg_full','no'),(7192,3737,'pyre_header_bg_repeat','repeat'),(7193,3737,'pyre_page_title_bar_bg_full','no'),(7194,3737,'slide_template','default'),(7195,3737,'pyre_slider_position','default'),(7196,3737,'pyre_display_header','yes'),(7197,3737,'pyre_transparent_header','default'),(7198,3737,'pyre_displayed_menu','default'),(7199,3737,'pyre_display_footer','default'),(7200,3737,'pyre_display_copyright','default'),(7201,3737,'pyre_main_top_padding',''),(7202,3737,'pyre_main_bottom_padding',''),(7203,3737,'pyre_hundredp_padding',''),(7204,3737,'pyre_page_title_custom_text',''),(7205,3737,'pyre_page_title_custom_subheader',''),(7206,3737,'pyre_page_title_height',''),(7207,3737,'pyre_page_title_bg_parallax','default'),(7208,3737,'fusion_builder_status','active'),(7209,3737,'pyre_portfolio_content_length','default'),(7210,3737,'pyre_portfolio_text_layout','default'),(7211,3737,'pyre_portfolio_featured_image_size','default'),(7212,3737,'pyre_avada_rev_styles','default'),(7213,3737,'pyre_show_first_featured_image','no'),(7214,3737,'pyre_header_100_width','default'),(7215,3737,'pyre_header_bg_opacity',''),(7216,3737,'pyre_footer_100_width','default'),(7217,3737,'pyre_portfolio_width_100','no'),(7218,3737,'pyre_portfolio_column_spacing',''),(7219,3737,'pyre_page_title_text_alignment','default'),(7220,3737,'pyre_page_title_100_width','default'),(7221,3737,'pyre_page_title_text_size',''),(7222,3737,'pyre_page_title_custom_subheader_text_size',''),(7223,3737,'pyre_page_title_font_color',''),(7224,3737,'pyre_page_title_breadcrumbs_search_bar','default'),(7225,3737,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7226,3737,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7227,3737,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7228,3737,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7229,3739,'pyre_page_title','no'),(7230,3739,'pyre_page_title_text','yes'),(7231,3739,'pyre_slider_type','flex'),(7232,3739,'pyre_slider','0'),(7233,3739,'pyre_wooslider','shortcode'),(7234,3739,'pyre_flexslider','0'),(7235,3739,'pyre_revslider','0'),(7236,3739,'pyre_elasticslider','0'),(7237,3739,'pyre_fallback',''),(7238,3739,'pyre_full_width','no'),(7239,3739,'pyre_sidebar_position','default'),(7240,3739,'pyre_portfolio_excerpt',''),(7241,3739,'pyre_portfolio_full_width','yes'),(7242,3739,'pyre_portfolio_sidebar_position','default'),(7243,3739,'pyre_portfolio_filters','yes'),(7244,3739,'pyre_page_bg_color',''),(7245,3739,'pyre_page_bg',''),(7246,3739,'pyre_page_bg_full','no'),(7247,3739,'pyre_page_bg_repeat','repeat'),(7248,3739,'pyre_page_title_bar_bg',''),(7249,3739,'pyre_page_title_bar_bg_retina',''),(7250,3739,'pyre_page_title_bar_bg_color',''),(7251,3739,'pyre_image_rollover_icons','linkzoom'),(7252,3739,'pyre_link_icon_url',''),(7253,3739,'_wp_page_template','100-width.php'),(7254,3739,'avada_post_views_count','60'),(7255,3739,'pyre_page_bg_layout','default'),(7256,3739,'pyre_wide_page_bg',''),(7257,3739,'pyre_wide_page_bg_color',''),(7258,3739,'pyre_wide_page_bg_full','no'),(7259,3739,'pyre_wide_page_bg_repeat','repeat'),(7260,3739,'pyre_header_bg',''),(7261,3739,'pyre_header_bg_color',''),(7262,3739,'pyre_header_bg_full','no'),(7263,3739,'pyre_header_bg_repeat','repeat'),(7264,3739,'pyre_page_title_bar_bg_full','no'),(7265,3739,'pyre_image_rollover_icons','linkzoom'),(7266,3739,'pyre_page_title_bar_bg_color',''),(7267,3739,'pyre_page_title_bar_bg_retina',''),(7268,3739,'pyre_link_icon_url',''),(7269,3739,'_wp_page_template','100-width.php'),(7270,3739,'pyre_page_title_bar_bg',''),(7271,3739,'pyre_page_bg_repeat','repeat'),(7272,3739,'pyre_page_bg_full','no'),(7273,3739,'pyre_page_bg',''),(7274,3739,'pyre_page_bg_color',''),(7275,3739,'pyre_page_title','no'),(7276,3739,'pyre_page_title_text','yes'),(7277,3739,'pyre_slider_type','flex'),(7278,3739,'pyre_slider','0'),(7279,3739,'pyre_wooslider','shortcode'),(7280,3739,'pyre_flexslider','0'),(7281,3739,'pyre_revslider','0'),(7282,3739,'pyre_elasticslider','0'),(7283,3739,'pyre_fallback',''),(7284,3739,'pyre_full_width','no'),(7285,3739,'pyre_sidebar_position','default'),(7286,3739,'pyre_portfolio_excerpt',''),(7287,3739,'pyre_portfolio_full_width','yes'),(7288,3739,'pyre_portfolio_sidebar_position','default'),(7289,3739,'pyre_portfolio_filters','yes'),(7290,3739,'slide_template','default'),(7291,3739,'pyre_slider_position','default'),(7292,3739,'pyre_display_header','yes'),(7293,3739,'pyre_transparent_header','default'),(7294,3739,'pyre_displayed_menu','default'),(7295,3739,'pyre_display_footer','default'),(7296,3739,'pyre_display_copyright','default'),(7297,3739,'pyre_main_top_padding',''),(7298,3739,'pyre_main_bottom_padding','0px'),(7299,3739,'pyre_hundredp_padding',''),(7300,3739,'pyre_page_title_custom_text',''),(7301,3739,'pyre_page_title_custom_subheader',''),(7302,3739,'pyre_page_title_height',''),(7303,3739,'pyre_page_title_bg_parallax','default'),(7304,3739,'fusion_builder_status','inactive'),(7305,3739,'pyre_portfolio_content_length','default'),(7306,3739,'pyre_portfolio_text_layout','default'),(7307,3739,'pyre_portfolio_featured_image_size','default'),(7308,3739,'pyre_avada_rev_styles','default'),(7309,3739,'pyre_show_first_featured_image','no'),(7310,3739,'pyre_header_100_width','default'),(7311,3739,'pyre_header_bg_opacity',''),(7312,3739,'pyre_footer_100_width','default'),(7313,3739,'pyre_portfolio_width_100','no'),(7314,3739,'pyre_portfolio_column_spacing',''),(7315,3739,'pyre_page_title_text_alignment','default'),(7316,3739,'pyre_page_title_100_width','default'),(7317,3739,'pyre_page_title_text_size',''),(7318,3739,'pyre_page_title_custom_subheader_text_size',''),(7319,3739,'pyre_page_title_font_color',''),(7320,3739,'pyre_page_title_breadcrumbs_search_bar','default'),(7321,3739,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7322,3739,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7323,3739,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7324,3739,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7325,3741,'pyre_page_title','no'),(7326,3741,'pyre_page_title_text','yes'),(7327,3741,'pyre_slider_type','flex'),(7328,3741,'pyre_slider','0'),(7329,3741,'pyre_wooslider','shortcode'),(7330,3741,'pyre_flexslider','0'),(7331,3741,'pyre_revslider','0'),(7332,3741,'pyre_elasticslider','0'),(7333,3741,'pyre_fallback',''),(7334,3741,'pyre_full_width','no'),(7335,3741,'pyre_sidebar_position','default'),(7336,3741,'pyre_portfolio_excerpt',''),(7337,3741,'pyre_portfolio_full_width','yes'),(7338,3741,'pyre_portfolio_sidebar_position','default'),(7339,3741,'pyre_portfolio_filters','yes'),(7340,3741,'pyre_page_bg_color',''),(7341,3741,'pyre_page_bg',''),(7342,3741,'pyre_page_bg_full','no'),(7343,3741,'pyre_page_bg_repeat','repeat'),(7344,3741,'pyre_page_title_bar_bg',''),(7345,3741,'pyre_page_title_bar_bg_retina',''),(7346,3741,'pyre_page_title_bar_bg_color',''),(7347,3741,'pyre_image_rollover_icons','linkzoom'),(7348,3741,'pyre_link_icon_url',''),(7349,3741,'_wp_page_template','100-width.php'),(7350,3741,'avada_post_views_count','49'),(7351,3741,'pyre_page_title','no'),(7352,3741,'pyre_page_title_text','yes'),(7353,3741,'pyre_slider_type','flex'),(7354,3741,'pyre_slider','0'),(7355,3741,'pyre_wooslider','shortcode'),(7356,3741,'pyre_flexslider','0'),(7357,3741,'pyre_revslider','0'),(7358,3741,'pyre_elasticslider','0'),(7359,3741,'pyre_fallback',''),(7360,3741,'pyre_full_width','no'),(7361,3741,'pyre_sidebar_position','default'),(7362,3741,'pyre_portfolio_excerpt',''),(7363,3741,'pyre_portfolio_full_width','yes'),(7364,3741,'pyre_portfolio_sidebar_position','default'),(7365,3741,'pyre_portfolio_filters','yes'),(7366,3741,'pyre_page_bg_color',''),(7367,3741,'pyre_page_bg',''),(7368,3741,'pyre_page_bg_full','no'),(7369,3741,'pyre_page_bg_repeat','repeat'),(7370,3741,'pyre_page_title_bar_bg',''),(7371,3741,'pyre_page_title_bar_bg_retina',''),(7372,3741,'pyre_page_title_bar_bg_color',''),(7373,3741,'pyre_image_rollover_icons','linkzoom'),(7374,3741,'pyre_link_icon_url',''),(7375,3741,'_wp_page_template','100-width.php'),(7376,3741,'avada_post_views_count','0'),(7377,3741,'pyre_page_bg_layout','default'),(7378,3741,'pyre_wide_page_bg',''),(7379,3741,'pyre_wide_page_bg_color',''),(7380,3741,'pyre_wide_page_bg_full','no'),(7381,3741,'pyre_wide_page_bg_repeat','repeat'),(7382,3741,'pyre_header_bg',''),(7383,3741,'pyre_header_bg_color',''),(7384,3741,'pyre_header_bg_full','no'),(7385,3741,'pyre_header_bg_repeat','repeat'),(7386,3741,'pyre_page_title_custom_text',''),(7387,3741,'pyre_page_title_custom_subheader',''),(7388,3741,'pyre_page_title_height',''),(7389,3741,'pyre_page_title_bar_bg_full','default'),(7390,3741,'pyre_page_title_bg_parallax','default'),(7391,3741,'slide_template','default'),(7392,3741,'pyre_slider_position','default'),(7393,3741,'pyre_display_header','yes'),(7394,3741,'pyre_transparent_header','default'),(7395,3741,'pyre_displayed_menu','default'),(7396,3741,'pyre_display_footer','default'),(7397,3741,'pyre_display_copyright','default'),(7398,3741,'pyre_main_top_padding',''),(7399,3741,'pyre_main_bottom_padding','0px'),(7400,3741,'pyre_hundredp_padding',''),(7401,3741,'fusion_builder_status','active'),(7402,3741,'pyre_portfolio_content_length','default'),(7403,3741,'pyre_portfolio_text_layout','default'),(7404,3741,'pyre_portfolio_featured_image_size','default'),(7405,3741,'pyre_avada_rev_styles','default'),(7406,3741,'pyre_show_first_featured_image','no'),(7407,3741,'pyre_header_100_width','default'),(7408,3741,'pyre_header_bg_opacity',''),(7409,3741,'pyre_footer_100_width','default'),(7410,3741,'pyre_portfolio_width_100','no'),(7411,3741,'pyre_portfolio_column_spacing',''),(7412,3741,'pyre_page_title_text_alignment','default'),(7413,3741,'pyre_page_title_100_width','default'),(7414,3741,'pyre_page_title_text_size',''),(7415,3741,'pyre_page_title_custom_subheader_text_size',''),(7416,3741,'pyre_page_title_font_color',''),(7417,3741,'pyre_page_title_breadcrumbs_search_bar','default'),(7418,3741,'pyre_sidebar_bg_color',''),(7419,3741,'pyre_page_title_mobile_height',''),(7420,3741,'pyre_page_title_bar_borders_color',''),(7421,3741,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7422,3741,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7423,3741,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7424,3741,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7425,3743,'pyre_page_title','yes'),(7426,3743,'pyre_page_title_text','yes'),(7427,3743,'pyre_slider_type','no'),(7428,3743,'pyre_slider','0'),(7429,3743,'pyre_wooslider','0'),(7430,3743,'pyre_flexslider','0'),(7431,3743,'pyre_revslider','0'),(7432,3743,'pyre_elasticslider','0'),(7433,3743,'pyre_fallback',''),(7434,3743,'pyre_full_width','no'),(7435,3743,'pyre_sidebar_position','default'),(7436,3743,'pyre_portfolio_excerpt',''),(7437,3743,'pyre_portfolio_full_width','yes'),(7438,3743,'pyre_portfolio_sidebar_position','default'),(7439,3743,'pyre_portfolio_filters','yes'),(7440,3743,'pyre_page_bg_color',''),(7441,3743,'pyre_page_bg',''),(7442,3743,'pyre_page_bg_full','no'),(7443,3743,'pyre_page_bg_repeat','repeat'),(7444,3743,'pyre_page_title_bar_bg',''),(7445,3743,'pyre_page_title_bar_bg_retina',''),(7446,3743,'pyre_page_title_bar_bg_color',''),(7447,3743,'pyre_image_rollover_icons','linkzoom'),(7448,3743,'pyre_link_icon_url',''),(7449,3743,'_wp_page_template','default'),(7450,3743,'avada_post_views_count','71'),(7451,3743,'pyre_page_title','yes'),(7452,3743,'pyre_page_title_text','yes'),(7453,3743,'pyre_slider_type','no'),(7454,3743,'pyre_slider','0'),(7455,3743,'pyre_wooslider','0'),(7456,3743,'pyre_flexslider','0'),(7457,3743,'pyre_revslider','0'),(7458,3743,'pyre_elasticslider','0'),(7459,3743,'pyre_fallback',''),(7460,3743,'pyre_full_width','no'),(7461,3743,'pyre_sidebar_position','default'),(7462,3743,'pyre_portfolio_excerpt',''),(7463,3743,'pyre_portfolio_full_width','yes'),(7464,3743,'pyre_portfolio_sidebar_position','default'),(7465,3743,'pyre_portfolio_filters','yes'),(7466,3743,'pyre_page_bg_color',''),(7467,3743,'pyre_page_bg',''),(7468,3743,'pyre_page_bg_full','no'),(7469,3743,'pyre_page_bg_repeat','repeat'),(7470,3743,'pyre_page_title_bar_bg',''),(7471,3743,'pyre_page_title_bar_bg_retina',''),(7472,3743,'pyre_page_title_bar_bg_color',''),(7473,3743,'pyre_image_rollover_icons','linkzoom'),(7474,3743,'pyre_link_icon_url',''),(7475,3743,'_wp_page_template','default'),(7476,3743,'pyre_page_bg_layout','default'),(7477,3743,'pyre_wide_page_bg',''),(7478,3743,'pyre_wide_page_bg_color',''),(7479,3743,'pyre_wide_page_bg_full','no'),(7480,3743,'pyre_wide_page_bg_repeat','repeat'),(7481,3743,'pyre_header_bg',''),(7482,3743,'pyre_header_bg_color',''),(7483,3743,'pyre_header_bg_full','no'),(7484,3743,'pyre_header_bg_repeat','repeat'),(7485,3743,'pyre_page_title_custom_text',''),(7486,3743,'pyre_page_title_custom_subheader',''),(7487,3743,'pyre_page_title_height',''),(7488,3743,'pyre_page_title_bar_bg_full','default'),(7489,3743,'pyre_page_title_bg_parallax','default'),(7490,3743,'slide_template','default'),(7491,3743,'pyre_slider_position','default'),(7492,3743,'pyre_display_header','yes'),(7493,3743,'pyre_transparent_header','default'),(7494,3743,'pyre_displayed_menu','default'),(7495,3743,'pyre_display_footer','default'),(7496,3743,'pyre_display_copyright','default'),(7497,3743,'pyre_main_top_padding',''),(7498,3743,'pyre_main_bottom_padding',''),(7499,3743,'pyre_hundredp_padding',''),(7500,3743,'fusion_builder_status','active'),(7501,3743,'pyre_portfolio_content_length','default'),(7502,3743,'pyre_portfolio_text_layout','default'),(7503,3743,'pyre_portfolio_featured_image_size','default'),(7504,3743,'pyre_show_first_featured_image','no'),(7505,3743,'pyre_header_100_width','default'),(7506,3743,'pyre_header_bg_opacity',''),(7507,3743,'pyre_footer_100_width','default'),(7508,3743,'pyre_portfolio_width_100','no'),(7509,3743,'pyre_portfolio_column_spacing',''),(7510,3743,'pyre_page_title_text_alignment','default'),(7511,3743,'pyre_page_title_text_size',''),(7512,3743,'pyre_page_title_custom_subheader_text_size',''),(7513,3743,'pyre_page_title_font_color',''),(7514,3743,'pyre_page_title_breadcrumbs_search_bar','default'),(7515,3743,'pyre_avada_rev_styles','default'),(7516,3743,'pyre_page_title_100_width','default'),(7517,3743,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7518,3743,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7519,3743,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7520,3743,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7521,3745,'pyre_page_title','no'),(7522,3745,'pyre_page_title_text','yes'),(7523,3745,'pyre_slider_type','flex'),(7524,3745,'pyre_slider','0'),(7525,3745,'pyre_wooslider','shortcode'),(7526,3745,'pyre_flexslider','0'),(7527,3745,'pyre_revslider','0'),(7528,3745,'pyre_elasticslider','0'),(7529,3745,'pyre_fallback',''),(7530,3745,'pyre_full_width','no'),(7531,3745,'pyre_sidebar_position','default'),(7532,3745,'pyre_portfolio_excerpt',''),(7533,3745,'pyre_portfolio_full_width','yes'),(7534,3745,'pyre_portfolio_sidebar_position','default'),(7535,3745,'pyre_portfolio_filters','yes'),(7536,3745,'pyre_page_bg_color',''),(7537,3745,'pyre_page_bg',''),(7538,3745,'pyre_page_bg_full','no'),(7539,3745,'pyre_page_bg_repeat','repeat'),(7540,3745,'pyre_page_title_bar_bg',''),(7541,3745,'pyre_page_title_bar_bg_retina',''),(7542,3745,'pyre_page_title_bar_bg_color',''),(7543,3745,'pyre_image_rollover_icons','linkzoom'),(7544,3745,'pyre_link_icon_url',''),(7545,3745,'_wp_page_template','100-width.php'),(7546,3745,'avada_post_views_count','51'),(7547,3745,'pyre_page_title','no'),(7548,3745,'pyre_page_title_text','yes'),(7549,3745,'pyre_slider_type','flex'),(7550,3745,'pyre_slider','0'),(7551,3745,'pyre_wooslider','shortcode'),(7552,3745,'pyre_flexslider','0'),(7553,3745,'pyre_revslider','0'),(7554,3745,'pyre_elasticslider','0'),(7555,3745,'pyre_fallback',''),(7556,3745,'pyre_full_width','no'),(7557,3745,'pyre_sidebar_position','default'),(7558,3745,'pyre_portfolio_excerpt',''),(7559,3745,'pyre_portfolio_full_width','yes'),(7560,3745,'pyre_portfolio_sidebar_position','default'),(7561,3745,'pyre_portfolio_filters','yes'),(7562,3745,'pyre_page_bg_color',''),(7563,3745,'pyre_page_bg',''),(7564,3745,'pyre_page_bg_full','no'),(7565,3745,'pyre_page_bg_repeat','repeat'),(7566,3745,'pyre_page_title_bar_bg',''),(7567,3745,'pyre_page_title_bar_bg_retina',''),(7568,3745,'pyre_page_title_bar_bg_color',''),(7569,3745,'pyre_image_rollover_icons','linkzoom'),(7570,3745,'pyre_link_icon_url',''),(7571,3745,'_wp_page_template','100-width.php'),(7572,3745,'pyre_page_bg_layout','default'),(7573,3745,'pyre_wide_page_bg',''),(7574,3745,'pyre_wide_page_bg_color',''),(7575,3745,'pyre_wide_page_bg_full','no'),(7576,3745,'pyre_wide_page_bg_repeat','repeat'),(7577,3745,'pyre_header_bg',''),(7578,3745,'pyre_header_bg_color',''),(7579,3745,'pyre_header_bg_full','no'),(7580,3745,'pyre_header_bg_repeat','repeat'),(7581,3745,'pyre_page_title_custom_text',''),(7582,3745,'pyre_page_title_custom_subheader',''),(7583,3745,'pyre_page_title_height',''),(7584,3745,'pyre_page_title_bar_bg_full','default'),(7585,3745,'pyre_page_title_bg_parallax','default'),(7586,3745,'slide_template','default'),(7587,3745,'pyre_slider_position','default'),(7588,3745,'pyre_display_header','yes'),(7589,3745,'pyre_transparent_header','default'),(7590,3745,'pyre_displayed_menu','default'),(7591,3745,'pyre_display_footer','default'),(7592,3745,'pyre_display_copyright','default'),(7593,3745,'pyre_main_top_padding',''),(7594,3745,'pyre_main_bottom_padding','0px'),(7595,3745,'pyre_hundredp_padding',''),(7596,3745,'fusion_builder_status','active'),(7597,3745,'pyre_portfolio_content_length','default'),(7598,3745,'pyre_portfolio_text_layout','default'),(7599,3745,'pyre_portfolio_featured_image_size','default'),(7600,3745,'pyre_show_first_featured_image','no'),(7601,3745,'pyre_header_100_width','default'),(7602,3745,'pyre_header_bg_opacity',''),(7603,3745,'pyre_footer_100_width','default'),(7604,3745,'pyre_portfolio_width_100','no'),(7605,3745,'pyre_portfolio_column_spacing',''),(7606,3745,'pyre_page_title_text_alignment','default'),(7607,3745,'pyre_page_title_text_size',''),(7608,3745,'pyre_page_title_custom_subheader_text_size',''),(7609,3745,'pyre_page_title_font_color',''),(7610,3745,'pyre_page_title_breadcrumbs_search_bar','default'),(7611,3745,'pyre_avada_rev_styles','default'),(7612,3745,'pyre_page_title_100_width','default'),(7613,3745,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7614,3745,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7615,3745,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7616,3745,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7617,3747,'pyre_page_title','no'),(7618,3747,'pyre_page_title_text','yes'),(7619,3747,'pyre_slider_type','flex'),(7620,3747,'pyre_slider','0'),(7621,3747,'pyre_wooslider','shortcode'),(7622,3747,'pyre_flexslider','0'),(7623,3747,'pyre_revslider','0'),(7624,3747,'pyre_elasticslider','0'),(7625,3747,'pyre_fallback',''),(7626,3747,'pyre_full_width','no'),(7627,3747,'pyre_sidebar_position','default'),(7628,3747,'pyre_portfolio_excerpt',''),(7629,3747,'pyre_portfolio_full_width','yes'),(7630,3747,'pyre_portfolio_sidebar_position','default'),(7631,3747,'pyre_portfolio_filters','yes'),(7632,3747,'pyre_page_bg_color',''),(7633,3747,'pyre_page_bg',''),(7634,3747,'pyre_page_bg_full','no'),(7635,3747,'pyre_page_bg_repeat','repeat'),(7636,3747,'pyre_page_title_bar_bg',''),(7637,3747,'pyre_page_title_bar_bg_retina',''),(7638,3747,'pyre_page_title_bar_bg_color',''),(7639,3747,'pyre_image_rollover_icons','linkzoom'),(7640,3747,'pyre_link_icon_url',''),(7641,3747,'_wp_page_template','100-width.php'),(7642,3747,'avada_post_views_count','39'),(7643,3747,'pyre_page_title','no'),(7644,3747,'pyre_page_title_text','yes'),(7645,3747,'pyre_slider_type','flex'),(7646,3747,'pyre_slider','0'),(7647,3747,'pyre_wooslider','shortcode'),(7648,3747,'pyre_flexslider','0'),(7649,3747,'pyre_revslider','0'),(7650,3747,'pyre_elasticslider','0'),(7651,3747,'pyre_fallback',''),(7652,3747,'pyre_full_width','no'),(7653,3747,'pyre_sidebar_position','default'),(7654,3747,'pyre_portfolio_excerpt',''),(7655,3747,'pyre_portfolio_full_width','yes'),(7656,3747,'pyre_portfolio_sidebar_position','default'),(7657,3747,'pyre_portfolio_filters','yes'),(7658,3747,'pyre_page_bg_color',''),(7659,3747,'pyre_page_bg',''),(7660,3747,'pyre_page_bg_full','no'),(7661,3747,'pyre_page_bg_repeat','repeat'),(7662,3747,'pyre_page_title_bar_bg',''),(7663,3747,'pyre_page_title_bar_bg_retina',''),(7664,3747,'pyre_page_title_bar_bg_color',''),(7665,3747,'pyre_image_rollover_icons','linkzoom'),(7666,3747,'pyre_link_icon_url',''),(7667,3747,'_wp_page_template','100-width.php'),(7668,3747,'pyre_page_bg_layout','default'),(7669,3747,'pyre_wide_page_bg',''),(7670,3747,'pyre_wide_page_bg_color',''),(7671,3747,'pyre_wide_page_bg_full','no'),(7672,3747,'pyre_wide_page_bg_repeat','repeat'),(7673,3747,'pyre_header_bg',''),(7674,3747,'pyre_header_bg_color',''),(7675,3747,'pyre_header_bg_full','no'),(7676,3747,'pyre_header_bg_repeat','repeat'),(7677,3747,'pyre_page_title_custom_text',''),(7678,3747,'pyre_page_title_custom_subheader',''),(7679,3747,'pyre_page_title_height',''),(7680,3747,'pyre_page_title_bar_bg_full','default'),(7681,3747,'pyre_page_title_bg_parallax','default'),(7682,3747,'slide_template','default'),(7683,3747,'pyre_slider_position','default'),(7684,3747,'pyre_display_header','yes'),(7685,3747,'pyre_transparent_header','default'),(7686,3747,'pyre_displayed_menu','default'),(7687,3747,'pyre_display_footer','default'),(7688,3747,'pyre_display_copyright','default'),(7689,3747,'pyre_main_top_padding',''),(7690,3747,'pyre_main_bottom_padding','0px'),(7691,3747,'pyre_hundredp_padding',''),(7692,3747,'fusion_builder_status','active'),(7693,3747,'pyre_portfolio_content_length','default'),(7694,3747,'pyre_portfolio_text_layout','default'),(7695,3747,'pyre_portfolio_featured_image_size','default'),(7696,3747,'pyre_avada_rev_styles','default'),(7697,3747,'pyre_show_first_featured_image','no'),(7698,3747,'pyre_header_100_width','default'),(7699,3747,'pyre_header_bg_opacity',''),(7700,3747,'pyre_footer_100_width','default'),(7701,3747,'pyre_portfolio_width_100','no'),(7702,3747,'pyre_portfolio_column_spacing',''),(7703,3747,'pyre_page_title_text_alignment','default'),(7704,3747,'pyre_page_title_100_width','default'),(7705,3747,'pyre_page_title_text_size',''),(7706,3747,'pyre_page_title_custom_subheader_text_size',''),(7707,3747,'pyre_page_title_font_color',''),(7708,3747,'pyre_page_title_breadcrumbs_search_bar','default'),(7709,3747,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7710,3747,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(7711,3747,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7712,3747,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7713,3749,'pyre_page_title','no'),(7714,3749,'pyre_page_title_text','yes'),(7715,3749,'pyre_slider_type','flex'),(7716,3749,'pyre_slider','0'),(7717,3749,'pyre_wooslider','shortcode'),(7718,3749,'pyre_flexslider','0'),(7719,3749,'pyre_revslider','0'),(7720,3749,'pyre_elasticslider','0'),(7721,3749,'pyre_fallback',''),(7722,3749,'pyre_full_width','no'),(7723,3749,'pyre_sidebar_position','default'),(7724,3749,'pyre_portfolio_excerpt',''),(7725,3749,'pyre_portfolio_full_width','yes'),(7726,3749,'pyre_portfolio_sidebar_position','default'),(7727,3749,'pyre_portfolio_filters','yes'),(7728,3749,'pyre_page_bg_color',''),(7729,3749,'pyre_page_bg',''),(7730,3749,'pyre_page_bg_full','no'),(7731,3749,'pyre_page_bg_repeat','repeat'),(7732,3749,'pyre_page_title_bar_bg',''),(7733,3749,'pyre_page_title_bar_bg_retina',''),(7734,3749,'pyre_page_title_bar_bg_color',''),(7735,3749,'pyre_image_rollover_icons','linkzoom'),(7736,3749,'pyre_link_icon_url',''),(7737,3749,'_wp_page_template','100-width.php'),(7738,3749,'avada_post_views_count','39'),(7739,3749,'pyre_page_title','no'),(7740,3749,'pyre_page_title_text','yes'),(7741,3749,'pyre_slider_type','flex'),(7742,3749,'pyre_slider','0'),(7743,3749,'pyre_wooslider','shortcode'),(7744,3749,'pyre_flexslider','0'),(7745,3749,'pyre_revslider','0'),(7746,3749,'pyre_elasticslider','0'),(7747,3749,'pyre_fallback',''),(7748,3749,'pyre_full_width','no'),(7749,3749,'pyre_sidebar_position','default'),(7750,3749,'pyre_portfolio_excerpt',''),(7751,3749,'pyre_portfolio_full_width','yes'),(7752,3749,'pyre_portfolio_sidebar_position','default'),(7753,3749,'pyre_portfolio_filters','yes'),(7754,3749,'pyre_page_bg_color',''),(7755,3749,'pyre_page_bg',''),(7756,3749,'pyre_page_bg_full','no'),(7757,3749,'pyre_page_bg_repeat','repeat'),(7758,3749,'pyre_page_title_bar_bg',''),(7759,3749,'pyre_page_title_bar_bg_retina',''),(7760,3749,'pyre_page_title_bar_bg_color',''),(7761,3749,'pyre_image_rollover_icons','linkzoom'),(7762,3749,'pyre_link_icon_url',''),(7763,3749,'_wp_page_template','100-width.php'),(7764,3749,'avada_post_views_count','0'),(7765,3749,'pyre_page_bg_layout','default'),(7766,3749,'pyre_wide_page_bg',''),(7767,3749,'pyre_wide_page_bg_color',''),(7768,3749,'pyre_wide_page_bg_full','no'),(7769,3749,'pyre_wide_page_bg_repeat','repeat'),(7770,3749,'pyre_header_bg',''),(7771,3749,'pyre_header_bg_color',''),(7772,3749,'pyre_header_bg_full','no'),(7773,3749,'pyre_header_bg_repeat','repeat'),(7774,3749,'pyre_page_title_custom_text',''),(7775,3749,'pyre_page_title_custom_subheader',''),(7776,3749,'pyre_page_title_height',''),(7777,3749,'pyre_page_title_bar_bg_full','default'),(7778,3749,'pyre_page_title_bg_parallax','default'),(7779,3749,'slide_template','default'),(7780,3749,'pyre_slider_position','default'),(7781,3749,'pyre_display_header','yes'),(7782,3749,'pyre_transparent_header','default'),(7783,3749,'pyre_displayed_menu','default'),(7784,3749,'pyre_display_footer','default'),(7785,3749,'pyre_display_copyright','default'),(7786,3749,'pyre_main_top_padding',''),(7787,3749,'pyre_main_bottom_padding','0px'),(7788,3749,'pyre_hundredp_padding',''),(7789,3749,'fusion_builder_status','active'),(7790,3749,'pyre_portfolio_content_length','default'),(7791,3749,'pyre_portfolio_text_layout','default'),(7792,3749,'pyre_portfolio_featured_image_size','default'),(7793,3749,'pyre_avada_rev_styles','default'),(7794,3749,'pyre_show_first_featured_image','no'),(7795,3749,'pyre_header_100_width','default'),(7796,3749,'pyre_header_bg_opacity',''),(7797,3749,'pyre_footer_100_width','default'),(7798,3749,'pyre_portfolio_width_100','no'),(7799,3749,'pyre_portfolio_column_spacing',''),(7800,3749,'pyre_page_title_text_alignment','default'),(7801,3749,'pyre_page_title_100_width','default'),(7802,3749,'pyre_page_title_text_size',''),(7803,3749,'pyre_page_title_custom_subheader_text_size',''),(7804,3749,'pyre_page_title_font_color',''),(7805,3749,'pyre_page_title_breadcrumbs_search_bar','default'),(7806,3749,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7807,3749,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(7808,3749,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7809,3749,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7810,3751,'pyre_page_title','no'),(7811,3751,'pyre_page_title_text','yes'),(7812,3751,'pyre_slider_type','flex'),(7813,3751,'pyre_slider','0'),(7814,3751,'pyre_wooslider','shortcode'),(7815,3751,'pyre_flexslider','0'),(7816,3751,'pyre_revslider','0'),(7817,3751,'pyre_elasticslider','0'),(7818,3751,'pyre_fallback',''),(7819,3751,'pyre_full_width','no'),(7820,3751,'pyre_sidebar_position','default'),(7821,3751,'pyre_portfolio_excerpt',''),(7822,3751,'pyre_portfolio_full_width','yes'),(7823,3751,'pyre_portfolio_sidebar_position','default'),(7824,3751,'pyre_portfolio_filters','yes'),(7825,3751,'pyre_page_bg_color',''),(7826,3751,'pyre_page_bg',''),(7827,3751,'pyre_page_bg_full','no'),(7828,3751,'pyre_page_bg_repeat','repeat'),(7829,3751,'pyre_page_title_bar_bg',''),(7830,3751,'pyre_page_title_bar_bg_retina',''),(7831,3751,'pyre_page_title_bar_bg_color',''),(7832,3751,'pyre_image_rollover_icons','linkzoom'),(7833,3751,'pyre_link_icon_url',''),(7834,3751,'_wp_page_template','100-width.php'),(7835,3751,'avada_post_views_count','45'),(7836,3751,'pyre_page_bg_layout','default'),(7837,3751,'pyre_wide_page_bg',''),(7838,3751,'pyre_wide_page_bg_color',''),(7839,3751,'pyre_wide_page_bg_full','no'),(7840,3751,'pyre_wide_page_bg_repeat','repeat'),(7841,3751,'pyre_header_bg',''),(7842,3751,'pyre_header_bg_color',''),(7843,3751,'pyre_header_bg_full','no'),(7844,3751,'pyre_header_bg_repeat','repeat'),(7845,3751,'pyre_page_title_bar_bg_full','no'),(7846,3751,'pyre_page_title','no'),(7847,3751,'pyre_page_title_text','yes'),(7848,3751,'pyre_slider_type','flex'),(7849,3751,'pyre_slider','0'),(7850,3751,'pyre_wooslider','shortcode'),(7851,3751,'pyre_flexslider','0'),(7852,3751,'pyre_revslider','0'),(7853,3751,'pyre_elasticslider','0'),(7854,3751,'pyre_fallback',''),(7855,3751,'pyre_full_width','no'),(7856,3751,'pyre_sidebar_position','default'),(7857,3751,'pyre_portfolio_excerpt',''),(7858,3751,'pyre_portfolio_full_width','yes'),(7859,3751,'pyre_portfolio_sidebar_position','default'),(7860,3751,'pyre_portfolio_filters','yes'),(7861,3751,'pyre_page_bg_color',''),(7862,3751,'pyre_page_bg',''),(7863,3751,'pyre_page_bg_full','no'),(7864,3751,'pyre_page_bg_repeat','repeat'),(7865,3751,'pyre_page_title_bar_bg',''),(7866,3751,'pyre_page_title_bar_bg_retina',''),(7867,3751,'pyre_page_title_bar_bg_color',''),(7868,3751,'pyre_image_rollover_icons','linkzoom'),(7869,3751,'pyre_link_icon_url',''),(7870,3751,'_wp_page_template','100-width.php'),(7871,3751,'pyre_page_title_custom_text',''),(7872,3751,'pyre_page_title_custom_subheader',''),(7873,3751,'pyre_page_title_height',''),(7874,3751,'pyre_page_title_bg_parallax','default'),(7875,3751,'slide_template','default'),(7876,3751,'pyre_slider_position','default'),(7877,3751,'pyre_display_header','yes'),(7878,3751,'pyre_transparent_header','default'),(7879,3751,'pyre_displayed_menu','default'),(7880,3751,'pyre_display_footer','default'),(7881,3751,'pyre_display_copyright','default'),(7882,3751,'pyre_main_top_padding',''),(7883,3751,'pyre_main_bottom_padding','0px'),(7884,3751,'pyre_hundredp_padding',''),(7885,3751,'fusion_builder_status','active'),(7886,3751,'pyre_portfolio_content_length','default'),(7887,3751,'pyre_portfolio_text_layout','default'),(7888,3751,'pyre_portfolio_featured_image_size','default'),(7889,3751,'pyre_show_first_featured_image','no'),(7890,3751,'pyre_header_100_width','default'),(7891,3751,'pyre_header_bg_opacity',''),(7892,3751,'pyre_footer_100_width','default'),(7893,3751,'pyre_portfolio_width_100','no'),(7894,3751,'pyre_portfolio_column_spacing',''),(7895,3751,'pyre_page_title_text_alignment','default'),(7896,3751,'pyre_page_title_text_size',''),(7897,3751,'pyre_page_title_custom_subheader_text_size',''),(7898,3751,'pyre_page_title_font_color',''),(7899,3751,'pyre_page_title_breadcrumbs_search_bar','default'),(7900,3751,'pyre_avada_rev_styles','default'),(7901,3751,'pyre_page_title_100_width','default'),(7902,3751,'pyre_sidebar_bg_color',''),(7903,3751,'pyre_page_title_mobile_height',''),(7904,3751,'pyre_page_title_bar_borders_color',''),(7905,3751,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(7906,3751,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(7907,3751,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(7908,3751,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(7909,3754,'pyre_page_title','no'),(7910,3754,'pyre_page_title_text','yes'),(7911,3754,'pyre_slider_type','flex'),(7912,3754,'pyre_slider','0'),(7913,3754,'pyre_wooslider','shortcode'),(7914,3754,'pyre_flexslider','0'),(7915,3754,'pyre_revslider','0'),(7916,3754,'pyre_elasticslider','0'),(7917,3754,'pyre_fallback',''),(7918,3754,'pyre_full_width','no'),(7919,3754,'pyre_sidebar_position','default'),(7920,3754,'pyre_portfolio_excerpt',''),(7921,3754,'pyre_portfolio_full_width','yes'),(7922,3754,'pyre_portfolio_sidebar_position','default'),(7923,3754,'pyre_portfolio_filters','yes'),(7924,3754,'pyre_page_bg_color',''),(7925,3754,'pyre_page_bg',''),(7926,3754,'pyre_page_bg_full','no'),(7927,3754,'pyre_page_bg_repeat','repeat'),(7928,3754,'pyre_page_title_bar_bg',''),(7929,3754,'pyre_page_title_bar_bg_retina',''),(7930,3754,'pyre_page_title_bar_bg_color',''),(7931,3754,'pyre_image_rollover_icons','linkzoom'),(7932,3754,'pyre_link_icon_url',''),(7933,3754,'_wp_page_template','100-width.php'),(7934,3754,'avada_post_views_count','39'),(7935,3754,'pyre_page_title','no'),(7936,3754,'pyre_page_title_text','yes'),(7937,3754,'pyre_slider_type','flex'),(7938,3754,'pyre_slider','0'),(7939,3754,'pyre_wooslider','shortcode'),(7940,3754,'pyre_flexslider','0'),(7941,3754,'pyre_revslider','0'),(7942,3754,'pyre_elasticslider','0'),(7943,3754,'pyre_fallback',''),(7944,3754,'pyre_full_width','no'),(7945,3754,'pyre_sidebar_position','default'),(7946,3754,'pyre_portfolio_excerpt',''),(7947,3754,'pyre_portfolio_full_width','yes'),(7948,3754,'pyre_portfolio_sidebar_position','default'),(7949,3754,'pyre_portfolio_filters','yes'),(7950,3754,'pyre_page_bg_color',''),(7951,3754,'pyre_page_bg',''),(7952,3754,'pyre_page_bg_full','no'),(7953,3754,'pyre_page_bg_repeat','repeat'),(7954,3754,'pyre_page_title_bar_bg',''),(7955,3754,'pyre_page_title_bar_bg_retina',''),(7956,3754,'pyre_page_title_bar_bg_color',''),(7957,3754,'pyre_image_rollover_icons','linkzoom'),(7958,3754,'pyre_link_icon_url',''),(7959,3754,'_wp_page_template','100-width.php'),(7960,3754,'pyre_page_bg_layout','default'),(7961,3754,'pyre_wide_page_bg',''),(7962,3754,'pyre_wide_page_bg_color',''),(7963,3754,'pyre_wide_page_bg_full','no'),(7964,3754,'pyre_wide_page_bg_repeat','repeat'),(7965,3754,'pyre_header_bg',''),(7966,3754,'pyre_header_bg_color',''),(7967,3754,'pyre_header_bg_full','no'),(7968,3754,'pyre_header_bg_repeat','repeat'),(7969,3754,'pyre_page_title_custom_text',''),(7970,3754,'pyre_page_title_custom_subheader',''),(7971,3754,'pyre_page_title_height',''),(7972,3754,'pyre_page_title_bar_bg_full','default'),(7973,3754,'pyre_page_title_bg_parallax','default'),(7974,3754,'slide_template','default'),(7975,3754,'pyre_slider_position','default'),(7976,3754,'pyre_display_header','yes'),(7977,3754,'pyre_transparent_header','default'),(7978,3754,'pyre_displayed_menu','default'),(7979,3754,'pyre_display_footer','default'),(7980,3754,'pyre_display_copyright','default'),(7981,3754,'pyre_main_top_padding',''),(7982,3754,'pyre_main_bottom_padding','0px'),(7983,3754,'pyre_hundredp_padding',''),(7984,3754,'fusion_builder_status','active'),(7985,3754,'pyre_portfolio_content_length','default'),(7986,3754,'pyre_portfolio_text_layout','default'),(7987,3754,'pyre_portfolio_featured_image_size','default'),(7988,3754,'pyre_avada_rev_styles','default'),(7989,3754,'pyre_show_first_featured_image','no'),(7990,3754,'pyre_header_100_width','default'),(7991,3754,'pyre_header_bg_opacity',''),(7992,3754,'pyre_footer_100_width','default'),(7993,3754,'pyre_portfolio_width_100','no'),(7994,3754,'pyre_portfolio_column_spacing',''),(7995,3754,'pyre_page_title_text_alignment','default'),(7996,3754,'pyre_page_title_100_width','default'),(7997,3754,'pyre_page_title_text_size',''),(7998,3754,'pyre_page_title_custom_subheader_text_size',''),(7999,3754,'pyre_page_title_font_color',''),(8000,3754,'pyre_page_title_breadcrumbs_search_bar','default'),(8001,3754,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8002,3754,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8003,3754,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8004,3754,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8005,3756,'pyre_page_title','no'),(8006,3756,'pyre_page_title_text','yes'),(8007,3756,'pyre_slider_type','flex'),(8008,3756,'pyre_slider','0'),(8009,3756,'pyre_wooslider','shortcode'),(8010,3756,'pyre_flexslider','0'),(8011,3756,'pyre_revslider','0'),(8012,3756,'pyre_elasticslider','0'),(8013,3756,'pyre_fallback',''),(8014,3756,'pyre_full_width','no'),(8015,3756,'pyre_sidebar_position','default'),(8016,3756,'pyre_portfolio_excerpt',''),(8017,3756,'pyre_portfolio_full_width','yes'),(8018,3756,'pyre_portfolio_sidebar_position','default'),(8019,3756,'pyre_portfolio_filters','yes'),(8020,3756,'pyre_page_bg_color',''),(8021,3756,'pyre_page_bg',''),(8022,3756,'pyre_page_bg_full','no'),(8023,3756,'pyre_page_bg_repeat','repeat'),(8024,3756,'pyre_page_title_bar_bg',''),(8025,3756,'pyre_page_title_bar_bg_retina',''),(8026,3756,'pyre_page_title_bar_bg_color',''),(8027,3756,'pyre_image_rollover_icons','linkzoom'),(8028,3756,'pyre_link_icon_url',''),(8029,3756,'_wp_page_template','100-width.php'),(8030,3756,'avada_post_views_count','50'),(8031,3756,'pyre_page_title','no'),(8032,3756,'pyre_page_title_text','yes'),(8033,3756,'pyre_slider_type','flex'),(8034,3756,'pyre_slider','0'),(8035,3756,'pyre_wooslider','shortcode'),(8036,3756,'pyre_flexslider','0'),(8037,3756,'pyre_revslider','0'),(8038,3756,'pyre_elasticslider','0'),(8039,3756,'pyre_fallback',''),(8040,3756,'pyre_full_width','no'),(8041,3756,'pyre_sidebar_position','default'),(8042,3756,'pyre_portfolio_excerpt',''),(8043,3756,'pyre_portfolio_full_width','yes'),(8044,3756,'pyre_portfolio_sidebar_position','default'),(8045,3756,'pyre_portfolio_filters','yes'),(8046,3756,'pyre_page_bg_color',''),(8047,3756,'pyre_page_bg',''),(8048,3756,'pyre_page_bg_full','no'),(8049,3756,'pyre_page_bg_repeat','repeat'),(8050,3756,'pyre_page_title_bar_bg',''),(8051,3756,'pyre_page_title_bar_bg_retina',''),(8052,3756,'pyre_page_title_bar_bg_color',''),(8053,3756,'pyre_image_rollover_icons','linkzoom'),(8054,3756,'pyre_link_icon_url',''),(8055,3756,'_wp_page_template','100-width.php'),(8056,3756,'slide_template','default'),(8057,3756,'pyre_slider_position','default'),(8058,3756,'pyre_display_header','yes'),(8059,3756,'pyre_transparent_header','default'),(8060,3756,'pyre_displayed_menu','default'),(8061,3756,'pyre_display_footer','default'),(8062,3756,'pyre_display_copyright','default'),(8063,3756,'pyre_main_top_padding',''),(8064,3756,'pyre_main_bottom_padding','0px'),(8065,3756,'pyre_hundredp_padding',''),(8066,3756,'pyre_page_bg_layout','default'),(8067,3756,'pyre_wide_page_bg',''),(8068,3756,'pyre_wide_page_bg_color',''),(8069,3756,'pyre_wide_page_bg_full','no'),(8070,3756,'pyre_wide_page_bg_repeat','repeat'),(8071,3756,'pyre_header_bg',''),(8072,3756,'pyre_header_bg_color',''),(8073,3756,'pyre_header_bg_full','no'),(8074,3756,'pyre_header_bg_repeat','repeat'),(8075,3756,'pyre_page_title_custom_text',''),(8076,3756,'pyre_page_title_custom_subheader',''),(8077,3756,'pyre_page_title_height',''),(8078,3756,'pyre_page_title_bar_bg_full','default'),(8079,3756,'pyre_page_title_bg_parallax','default'),(8080,3756,'fusion_builder_status','active'),(8081,3756,'pyre_portfolio_content_length','default'),(8082,3756,'pyre_portfolio_text_layout','default'),(8083,3756,'pyre_portfolio_featured_image_size','default'),(8084,3756,'pyre_show_first_featured_image','no'),(8085,3756,'pyre_header_100_width','default'),(8086,3756,'pyre_header_bg_opacity',''),(8087,3756,'pyre_footer_100_width','default'),(8088,3756,'pyre_portfolio_width_100','no'),(8089,3756,'pyre_portfolio_column_spacing',''),(8090,3756,'pyre_page_title_text_alignment','default'),(8091,3756,'pyre_page_title_text_size',''),(8092,3756,'pyre_page_title_custom_subheader_text_size',''),(8093,3756,'pyre_page_title_font_color',''),(8094,3756,'pyre_page_title_breadcrumbs_search_bar','default'),(8095,3756,'pyre_avada_rev_styles','default'),(8096,3756,'pyre_page_title_100_width','default'),(8097,3756,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8098,3756,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8099,3756,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8100,3756,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8101,3813,'_wp_page_template','100-width.php'),(8102,3813,'pyre_slider_type','rev'),(8103,3813,'pyre_slider','0'),(8104,3813,'pyre_wooslider','0'),(8105,3813,'pyre_flexslider','0'),(8106,3813,'pyre_revslider','Avada_Full_Width'),(8107,3813,'pyre_elasticslider','0'),(8108,3813,'pyre_fallback',''),(8109,3813,'pyre_full_width','no'),(8110,3813,'pyre_sidebar_position','default'),(8111,3813,'pyre_portfolio_excerpt',''),(8112,3813,'pyre_portfolio_full_width','yes'),(8113,3813,'pyre_portfolio_sidebar_position','default'),(8114,3813,'pyre_portfolio_filters','yes'),(8115,3813,'pyre_page_bg_layout','default'),(8116,3813,'pyre_page_bg',''),(8117,3813,'pyre_page_bg_color',''),(8118,3813,'pyre_page_bg_full','no'),(8119,3813,'pyre_page_bg_repeat','repeat'),(8120,3813,'pyre_wide_page_bg',''),(8121,3813,'pyre_wide_page_bg_color',''),(8122,3813,'pyre_wide_page_bg_full','no'),(8123,3813,'pyre_wide_page_bg_repeat','repeat'),(8124,3813,'pyre_header_bg',''),(8125,3813,'pyre_header_bg_color',''),(8126,3813,'pyre_header_bg_full','no'),(8127,3813,'pyre_header_bg_repeat','repeat'),(8128,3813,'pyre_page_title','no'),(8129,3813,'pyre_page_title_text','yes'),(8130,3813,'pyre_page_title_bar_bg',''),(8131,3813,'pyre_page_title_bar_bg_retina',''),(8132,3813,'pyre_page_title_bar_bg_color',''),(8133,3813,'pyre_page_title_bar_bg_full','no'),(8134,3813,'pyre_image_rollover_icons','linkzoom'),(8135,3813,'pyre_link_icon_url',''),(8136,3813,'avada_post_views_count','67'),(8137,3813,'slide_template','default'),(8138,3813,'pyre_slider_position','default'),(8139,3813,'pyre_display_header','yes'),(8140,3813,'pyre_transparent_header','default'),(8141,3813,'pyre_displayed_menu','default'),(8142,3813,'pyre_display_footer','default'),(8143,3813,'pyre_display_copyright','default'),(8144,3813,'pyre_main_top_padding','0px'),(8145,3813,'pyre_main_bottom_padding','0px'),(8146,3813,'pyre_hundredp_padding',''),(8147,3813,'pyre_page_title_custom_text',''),(8148,3813,'pyre_page_title_custom_subheader',''),(8149,3813,'pyre_page_title_height',''),(8150,3813,'pyre_page_title_bg_parallax','default'),(8151,3813,'fusion_builder_status','active'),(8152,3813,'pyre_portfolio_content_length','default'),(8153,3813,'pyre_portfolio_text_layout','default'),(8154,3813,'pyre_portfolio_featured_image_size','default'),(8155,3813,'pyre_show_first_featured_image','no'),(8156,3813,'pyre_header_100_width','default'),(8157,3813,'pyre_header_bg_opacity',''),(8158,3813,'pyre_footer_100_width','default'),(8159,3813,'pyre_portfolio_width_100','no'),(8160,3813,'pyre_portfolio_column_spacing',''),(8161,3813,'pyre_page_title_text_alignment','default'),(8162,3813,'pyre_page_title_text_size',''),(8163,3813,'pyre_page_title_custom_subheader_text_size',''),(8164,3813,'pyre_page_title_font_color',''),(8165,3813,'pyre_page_title_breadcrumbs_search_bar','default'),(8166,3813,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8167,3813,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8168,3813,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8169,3813,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8170,3815,'_wp_page_template','100-width.php'),(8171,3815,'pyre_slider_type','rev'),(8172,3815,'pyre_slider','0'),(8173,3815,'pyre_wooslider','0'),(8174,3815,'pyre_flexslider','0'),(8175,3815,'pyre_revslider','Avada_Full_Width'),(8176,3815,'pyre_elasticslider','0'),(8177,3815,'pyre_fallback',''),(8178,3815,'pyre_full_width','no'),(8179,3815,'pyre_sidebar_position','default'),(8180,3815,'pyre_portfolio_excerpt',''),(8181,3815,'pyre_portfolio_full_width','yes'),(8182,3815,'pyre_portfolio_sidebar_position','default'),(8183,3815,'pyre_portfolio_filters','yes'),(8184,3815,'pyre_page_bg_layout','default'),(8185,3815,'pyre_page_bg',''),(8186,3815,'pyre_page_bg_color',''),(8187,3815,'pyre_page_bg_full','no'),(8188,3815,'pyre_page_bg_repeat','repeat'),(8189,3815,'pyre_wide_page_bg',''),(8190,3815,'pyre_wide_page_bg_color',''),(8191,3815,'pyre_wide_page_bg_full','no'),(8192,3815,'pyre_wide_page_bg_repeat','repeat'),(8193,3815,'pyre_header_bg',''),(8194,3815,'pyre_header_bg_color',''),(8195,3815,'pyre_header_bg_full','no'),(8196,3815,'pyre_header_bg_repeat','repeat'),(8197,3815,'pyre_page_title','no'),(8198,3815,'pyre_page_title_text','yes'),(8199,3815,'pyre_page_title_bar_bg',''),(8200,3815,'pyre_page_title_bar_bg_retina',''),(8201,3815,'pyre_page_title_bar_bg_color',''),(8202,3815,'pyre_page_title_bar_bg_full','no'),(8203,3815,'pyre_image_rollover_icons','linkzoom'),(8204,3815,'pyre_link_icon_url',''),(8205,3815,'avada_post_views_count','88'),(8206,3815,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:3843;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1376934397;}'),(8207,3815,'pyre_page_bg',''),(8208,3815,'pyre_sidebar_position','default'),(8209,3815,'pyre_portfolio_excerpt',''),(8210,3815,'pyre_portfolio_full_width','yes'),(8211,3815,'pyre_page_bg_layout','default'),(8212,3815,'pyre_portfolio_filters','yes'),(8213,3815,'pyre_portfolio_sidebar_position','default'),(8214,3815,'_wp_page_template','100-width.php'),(8215,3815,'pyre_slider_type','rev'),(8216,3815,'pyre_slider','0'),(8217,3815,'pyre_wooslider','0'),(8218,3815,'pyre_flexslider','0'),(8219,3815,'pyre_revslider','Avada_Full_Width'),(8220,3815,'pyre_elasticslider','0'),(8221,3815,'pyre_fallback',''),(8222,3815,'pyre_full_width','no'),(8223,3815,'pyre_page_bg_color',''),(8224,3815,'pyre_page_bg_full','no'),(8225,3815,'pyre_page_bg_repeat','repeat'),(8226,3815,'pyre_wide_page_bg',''),(8227,3815,'pyre_wide_page_bg_color',''),(8228,3815,'pyre_wide_page_bg_full','no'),(8229,3815,'pyre_wide_page_bg_repeat','repeat'),(8230,3815,'pyre_header_bg',''),(8231,3815,'pyre_header_bg_color',''),(8232,3815,'pyre_header_bg_full','no'),(8233,3815,'pyre_header_bg_repeat','repeat'),(8234,3815,'pyre_page_title','no'),(8235,3815,'pyre_page_title_text','yes'),(8236,3815,'pyre_page_title_bar_bg',''),(8237,3815,'pyre_page_title_bar_bg_retina',''),(8238,3815,'pyre_page_title_bar_bg_color',''),(8239,3815,'pyre_page_title_bar_bg_full','no'),(8240,3815,'pyre_image_rollover_icons','linkzoom'),(8241,3815,'pyre_link_icon_url',''),(8242,3815,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:3843;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1376934397;}'),(8243,3815,'avada_post_views_count','5'),(8244,3815,'slide_template','default'),(8245,3815,'pyre_slider_position','default'),(8246,3815,'pyre_display_header','yes'),(8247,3815,'pyre_transparent_header','default'),(8248,3815,'pyre_displayed_menu','default'),(8249,3815,'pyre_display_footer','default'),(8250,3815,'pyre_display_copyright','default'),(8251,3815,'pyre_main_top_padding',''),(8252,3815,'pyre_main_bottom_padding','0px'),(8253,3815,'pyre_hundredp_padding',''),(8254,3815,'pyre_page_title_custom_text',''),(8255,3815,'pyre_page_title_custom_subheader',''),(8256,3815,'pyre_page_title_height',''),(8257,3815,'pyre_page_title_bg_parallax','default'),(8258,3815,'fusion_builder_status','active'),(8259,3815,'pyre_portfolio_content_length','default'),(8260,3815,'pyre_portfolio_text_layout','default'),(8261,3815,'pyre_portfolio_featured_image_size','default'),(8262,3815,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8263,3815,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8264,3815,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8265,3815,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8266,4097,'_wp_page_template','full-width.php'),(8267,4097,'pyre_slider_type','no'),(8268,4097,'pyre_slider','0'),(8269,4097,'pyre_wooslider','0'),(8270,4097,'pyre_flexslider','0'),(8271,4097,'pyre_revslider','0'),(8272,4097,'pyre_elasticslider','0'),(8273,4097,'pyre_fallback',''),(8274,4097,'pyre_full_width','no'),(8275,4097,'pyre_sidebar_position','default'),(8276,4097,'pyre_portfolio_excerpt',''),(8277,4097,'pyre_portfolio_full_width','yes'),(8278,4097,'pyre_portfolio_sidebar_position','default'),(8279,4097,'pyre_portfolio_filters','yes'),(8280,4097,'pyre_page_bg_layout','default'),(8281,4097,'pyre_page_bg',''),(8282,4097,'pyre_page_bg_color',''),(8283,4097,'pyre_page_bg_full','no'),(8284,4097,'pyre_page_bg_repeat','repeat'),(8285,4097,'pyre_wide_page_bg',''),(8286,4097,'pyre_wide_page_bg_color',''),(8287,4097,'pyre_wide_page_bg_full','no'),(8288,4097,'pyre_wide_page_bg_repeat','repeat'),(8289,4097,'pyre_header_bg',''),(8290,4097,'pyre_header_bg_color',''),(8291,4097,'pyre_header_bg_full','no'),(8292,4097,'pyre_header_bg_repeat','repeat'),(8293,4097,'pyre_page_title','yes'),(8294,4097,'pyre_page_title_text','yes'),(8295,4097,'pyre_page_title_custom_text',''),(8296,4097,'pyre_page_title_custom_subheader',''),(8297,4097,'pyre_page_title_height',''),(8298,4097,'pyre_page_title_bar_bg',''),(8299,4097,'pyre_page_title_bar_bg_retina',''),(8300,4097,'pyre_page_title_bar_bg_color',''),(8301,4097,'pyre_page_title_bar_bg_full','default'),(8302,4097,'pyre_page_title_bg_parallax','default'),(8303,4097,'pyre_image_rollover_icons','linkzoom'),(8304,4097,'pyre_link_icon_url',''),(8305,4097,'slide_template','default'),(8306,4097,'fusion_builder_status','inactive'),(8307,4097,'pyre_slider_position','default'),(8308,4097,'pyre_main_top_padding',''),(8309,4097,'pyre_main_bottom_padding',''),(8310,4097,'pyre_hundredp_padding',''),(8311,4097,'pyre_show_first_featured_image','no'),(8312,4097,'pyre_display_header','yes'),(8313,4097,'pyre_header_100_width','default'),(8314,4097,'pyre_header_bg_opacity',''),(8315,4097,'pyre_displayed_menu','default'),(8316,4097,'pyre_display_footer','default'),(8317,4097,'pyre_display_copyright','default'),(8318,4097,'pyre_footer_100_width','default'),(8319,4097,'pyre_portfolio_width_100','no'),(8320,4097,'pyre_portfolio_content_length','default'),(8321,4097,'pyre_portfolio_text_layout','default'),(8322,4097,'pyre_portfolio_featured_image_size','default'),(8323,4097,'pyre_portfolio_column_spacing',''),(8324,4097,'pyre_page_title_text_alignment','default'),(8325,4097,'pyre_page_title_text_size',''),(8326,4097,'pyre_page_title_custom_subheader_text_size',''),(8327,4097,'pyre_page_title_font_color',''),(8328,4097,'pyre_page_title_breadcrumbs_search_bar','default'),(8329,4097,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8330,4097,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8331,4097,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8332,4097,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8333,4120,'_wp_page_template','100-width.php'),(8334,4120,'pyre_slider_type','no'),(8335,4120,'pyre_slider','0'),(8336,4120,'pyre_wooslider','0'),(8337,4120,'pyre_flexslider','0'),(8338,4120,'pyre_revslider','0'),(8339,4120,'pyre_elasticslider','0'),(8340,4120,'pyre_fallback',''),(8341,4120,'pyre_full_width','no'),(8342,4120,'pyre_sidebar_position','default'),(8343,4120,'pyre_portfolio_excerpt',''),(8344,4120,'pyre_portfolio_full_width','yes'),(8345,4120,'pyre_portfolio_sidebar_position','default'),(8346,4120,'pyre_portfolio_filters','yes'),(8347,4120,'pyre_page_bg_layout','default'),(8348,4120,'pyre_page_bg',''),(8349,4120,'pyre_page_bg_color',''),(8350,4120,'pyre_page_bg_full','no'),(8351,4120,'pyre_page_bg_repeat','repeat'),(8352,4120,'pyre_wide_page_bg',''),(8353,4120,'pyre_wide_page_bg_color',''),(8354,4120,'pyre_wide_page_bg_full','no'),(8355,4120,'pyre_wide_page_bg_repeat','repeat'),(8356,4120,'pyre_header_bg',''),(8357,4120,'pyre_header_bg_color',''),(8358,4120,'pyre_header_bg_full','no'),(8359,4120,'pyre_header_bg_repeat','repeat'),(8360,4120,'pyre_page_title','no'),(8361,4120,'pyre_page_title_text','yes'),(8362,4120,'pyre_page_title_custom_text',''),(8363,4120,'pyre_page_title_custom_subheader',''),(8364,4120,'pyre_page_title_height',''),(8365,4120,'pyre_page_title_bar_bg',''),(8366,4120,'pyre_page_title_bar_bg_retina',''),(8367,4120,'pyre_page_title_bar_bg_color',''),(8368,4120,'pyre_page_title_bar_bg_full','default'),(8369,4120,'pyre_page_title_bg_parallax','default'),(8370,4120,'pyre_image_rollover_icons','linkzoom'),(8371,4120,'pyre_link_icon_url',''),(8372,4120,'slide_template','default'),(8373,4120,'pyre_slider_position','default'),(8374,4120,'pyre_display_header','yes'),(8375,4120,'pyre_transparent_header','default'),(8376,4120,'pyre_displayed_menu','default'),(8377,4120,'pyre_display_footer','default'),(8378,4120,'pyre_display_copyright','default'),(8379,4120,'pyre_main_top_padding','0px'),(8380,4120,'pyre_main_bottom_padding','0px'),(8381,4120,'pyre_hundredp_padding','0px'),(8382,4120,'fusion_builder_status','active'),(8383,4120,'pyre_portfolio_content_length','default'),(8384,4120,'pyre_portfolio_text_layout','default'),(8385,4120,'pyre_portfolio_featured_image_size','default'),(8386,4120,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8387,4120,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8388,4120,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8389,4120,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8390,4126,'_wp_page_template','100-width.php'),(8391,4126,'pyre_slider_type','rev'),(8392,4126,'pyre_slider','0'),(8393,4126,'pyre_wooslider','0'),(8394,4126,'pyre_flexslider','0'),(8395,4126,'pyre_revslider','Avada_Full_Width'),(8396,4126,'pyre_elasticslider','0'),(8397,4126,'pyre_fallback',''),(8398,4126,'pyre_full_width','no'),(8399,4126,'pyre_sidebar_position','default'),(8400,4126,'pyre_portfolio_excerpt',''),(8401,4126,'pyre_portfolio_full_width','yes'),(8402,4126,'pyre_portfolio_sidebar_position','default'),(8403,4126,'pyre_portfolio_filters','yes'),(8404,4126,'pyre_page_bg_layout','default'),(8405,4126,'pyre_page_bg',''),(8406,4126,'pyre_page_bg_color',''),(8407,4126,'pyre_page_bg_full','no'),(8408,4126,'pyre_page_bg_repeat','repeat'),(8409,4126,'pyre_wide_page_bg',''),(8410,4126,'pyre_wide_page_bg_color',''),(8411,4126,'pyre_wide_page_bg_full','no'),(8412,4126,'pyre_wide_page_bg_repeat','repeat'),(8413,4126,'pyre_header_bg',''),(8414,4126,'pyre_header_bg_color',''),(8415,4126,'pyre_header_bg_full','no'),(8416,4126,'pyre_header_bg_repeat','repeat'),(8417,4126,'pyre_page_title','no'),(8418,4126,'pyre_page_title_text','yes'),(8419,4126,'pyre_page_title_custom_text',''),(8420,4126,'pyre_page_title_custom_subheader',''),(8421,4126,'pyre_page_title_height',''),(8422,4126,'pyre_page_title_bar_bg',''),(8423,4126,'pyre_page_title_bar_bg_retina',''),(8424,4126,'pyre_page_title_bar_bg_color',''),(8425,4126,'pyre_page_title_bar_bg_full','default'),(8426,4126,'pyre_page_title_bg_parallax','default'),(8427,4126,'pyre_image_rollover_icons','linkzoom'),(8428,4126,'pyre_link_icon_url',''),(8429,4126,'slide_template','default'),(8430,4126,'pyre_slider_position','default'),(8431,4126,'pyre_display_header','yes'),(8432,4126,'pyre_transparent_header','default'),(8433,4126,'pyre_displayed_menu','default'),(8434,4126,'pyre_display_footer','default'),(8435,4126,'pyre_display_copyright','default'),(8436,4126,'pyre_main_top_padding','0px'),(8437,4126,'pyre_main_bottom_padding','0px'),(8438,4126,'pyre_hundredp_padding',''),(8439,4126,'fusion_builder_status','active'),(8440,4126,'pyre_portfolio_content_length','default'),(8441,4126,'pyre_portfolio_text_layout','default'),(8442,4126,'pyre_portfolio_featured_image_size','default'),(8443,4126,'pyre_show_first_featured_image','no'),(8444,4126,'pyre_header_100_width','default'),(8445,4126,'pyre_header_bg_opacity',''),(8446,4126,'pyre_footer_100_width','default'),(8447,4126,'pyre_portfolio_width_100','no'),(8448,4126,'pyre_portfolio_column_spacing',''),(8449,4126,'pyre_page_title_text_alignment','default'),(8450,4126,'pyre_page_title_text_size',''),(8451,4126,'pyre_page_title_custom_subheader_text_size',''),(8452,4126,'pyre_page_title_font_color',''),(8453,4126,'pyre_page_title_breadcrumbs_search_bar','default'),(8454,4126,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8455,4126,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8456,4126,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8457,4126,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8458,4138,'_wp_page_template','100-width.php'),(8459,4138,'pyre_slider_type','no'),(8460,4138,'pyre_slider','0'),(8461,4138,'pyre_wooslider','0'),(8462,4138,'pyre_flexslider','0'),(8463,4138,'pyre_revslider','0'),(8464,4138,'pyre_elasticslider','0'),(8465,4138,'pyre_fallback',''),(8466,4138,'pyre_full_width','no'),(8467,4138,'pyre_sidebar_position','default'),(8468,4138,'pyre_portfolio_excerpt',''),(8469,4138,'pyre_portfolio_full_width','yes'),(8470,4138,'pyre_portfolio_sidebar_position','default'),(8471,4138,'pyre_portfolio_filters','yes'),(8472,4138,'pyre_page_bg_layout','default'),(8473,4138,'pyre_page_bg',''),(8474,4138,'pyre_page_bg_color',''),(8475,4138,'pyre_page_bg_full','no'),(8476,4138,'pyre_page_bg_repeat','repeat'),(8477,4138,'pyre_wide_page_bg',''),(8478,4138,'pyre_wide_page_bg_color',''),(8479,4138,'pyre_wide_page_bg_full','no'),(8480,4138,'pyre_wide_page_bg_repeat','repeat'),(8481,4138,'pyre_header_bg',''),(8482,4138,'pyre_header_bg_color',''),(8483,4138,'pyre_header_bg_full','no'),(8484,4138,'pyre_header_bg_repeat','repeat'),(8485,4138,'pyre_page_title','default'),(8486,4138,'pyre_page_title_text','yes'),(8487,4138,'pyre_page_title_custom_text',''),(8488,4138,'pyre_page_title_custom_subheader',''),(8489,4138,'pyre_page_title_height',''),(8490,4138,'pyre_page_title_bar_bg',''),(8491,4138,'pyre_page_title_bar_bg_retina',''),(8492,4138,'pyre_page_title_bar_bg_color',''),(8493,4138,'pyre_page_title_bar_bg_full','default'),(8494,4138,'pyre_page_title_bg_parallax','default'),(8495,4138,'pyre_image_rollover_icons','linkzoom'),(8496,4138,'pyre_link_icon_url',''),(8497,4138,'slide_template','default'),(8498,4138,'pyre_slider_position','default'),(8499,4138,'pyre_display_header','yes'),(8500,4138,'pyre_transparent_header','default'),(8501,4138,'pyre_displayed_menu','default'),(8502,4138,'pyre_display_footer','default'),(8503,4138,'pyre_display_copyright','default'),(8504,4138,'pyre_main_top_padding',''),(8505,4138,'pyre_main_bottom_padding','0px'),(8506,4138,'pyre_hundredp_padding','0px'),(8507,4138,'fusion_builder_status','active'),(8508,4138,'pyre_portfolio_content_length','default'),(8509,4138,'pyre_portfolio_text_layout','default'),(8510,4138,'pyre_portfolio_featured_image_size','default'),(8511,4138,'pyre_avada_rev_styles','default'),(8512,4138,'pyre_show_first_featured_image','no'),(8513,4138,'pyre_header_100_width','default'),(8514,4138,'pyre_header_bg_opacity',''),(8515,4138,'pyre_footer_100_width','default'),(8516,4138,'pyre_portfolio_width_100','no'),(8517,4138,'pyre_portfolio_column_spacing',''),(8518,4138,'pyre_page_title_text_alignment','default'),(8519,4138,'pyre_page_title_100_width','default'),(8520,4138,'pyre_page_title_text_size',''),(8521,4138,'pyre_page_title_custom_subheader_text_size',''),(8522,4138,'pyre_page_title_font_color',''),(8523,4138,'pyre_page_title_breadcrumbs_search_bar','default'),(8524,4138,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:10510;s:16:\"restored_by_user\";i:3;s:13:\"restored_time\";i:1422174587;}'),(8525,4138,'fusion_builder_content',''),(8526,4138,'pyre_sidebar_bg_color',''),(8527,4138,'pyre_page_title_mobile_height',''),(8528,4138,'pyre_page_title_bar_borders_color',''),(8529,4138,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8530,4138,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8531,4138,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8532,4138,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8533,4140,'_wp_page_template','default'),(8534,4140,'pyre_slider_type','no'),(8535,4140,'pyre_slider','0'),(8536,4140,'pyre_wooslider','0'),(8537,4140,'pyre_flexslider','0'),(8538,4140,'pyre_revslider','0'),(8539,4140,'pyre_elasticslider','0'),(8540,4140,'pyre_fallback',''),(8541,4140,'pyre_full_width','no'),(8542,4140,'pyre_sidebar_position','default'),(8543,4140,'pyre_portfolio_excerpt',''),(8544,4140,'pyre_portfolio_full_width','yes'),(8545,4140,'pyre_portfolio_sidebar_position','default'),(8546,4140,'pyre_portfolio_filters','yes'),(8547,4140,'pyre_page_bg_layout','default'),(8548,4140,'pyre_page_bg',''),(8549,4140,'pyre_page_bg_color',''),(8550,4140,'pyre_page_bg_full','no'),(8551,4140,'pyre_page_bg_repeat','repeat'),(8552,4140,'pyre_wide_page_bg',''),(8553,4140,'pyre_wide_page_bg_color',''),(8554,4140,'pyre_wide_page_bg_full','no'),(8555,4140,'pyre_wide_page_bg_repeat','repeat'),(8556,4140,'pyre_header_bg',''),(8557,4140,'pyre_header_bg_color',''),(8558,4140,'pyre_header_bg_full','no'),(8559,4140,'pyre_header_bg_repeat','repeat'),(8560,4140,'pyre_page_title','yes'),(8561,4140,'pyre_page_title_text','yes'),(8562,4140,'pyre_page_title_custom_text',''),(8563,4140,'pyre_page_title_custom_subheader',''),(8564,4140,'pyre_page_title_height',''),(8565,4140,'pyre_page_title_bar_bg',''),(8566,4140,'pyre_page_title_bar_bg_retina',''),(8567,4140,'pyre_page_title_bar_bg_color',''),(8568,4140,'pyre_page_title_bar_bg_full','default'),(8569,4140,'pyre_page_title_bg_parallax','default'),(8570,4140,'pyre_image_rollover_icons','linkzoom'),(8571,4140,'pyre_link_icon_url',''),(8572,4140,'slide_template','default'),(8573,4140,'pyre_slider_position','default'),(8574,4140,'pyre_display_header','yes'),(8575,4140,'pyre_transparent_header','default'),(8576,4140,'pyre_displayed_menu','default'),(8577,4140,'pyre_display_footer','default'),(8578,4140,'pyre_display_copyright','default'),(8579,4140,'pyre_main_top_padding',''),(8580,4140,'pyre_main_bottom_padding',''),(8581,4140,'pyre_hundredp_padding',''),(8582,4140,'fusion_builder_status','active'),(8583,4140,'pyre_portfolio_content_length','default'),(8584,4140,'pyre_portfolio_text_layout','default'),(8585,4140,'pyre_portfolio_featured_image_size','default'),(8586,4140,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8587,4140,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8588,4140,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8589,4140,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8590,4142,'_wp_page_template','default'),(8591,4142,'pyre_slider_type','no'),(8592,4142,'pyre_slider','0'),(8593,4142,'pyre_wooslider','0'),(8594,4142,'pyre_flexslider','0'),(8595,4142,'pyre_revslider','0'),(8596,4142,'pyre_elasticslider','0'),(8597,4142,'pyre_fallback',''),(8598,4142,'pyre_full_width','no'),(8599,4142,'pyre_sidebar_position','default'),(8600,4142,'pyre_portfolio_excerpt',''),(8601,4142,'pyre_portfolio_full_width','yes'),(8602,4142,'pyre_portfolio_sidebar_position','default'),(8603,4142,'pyre_portfolio_filters','yes'),(8604,4142,'pyre_page_bg_layout','default'),(8605,4142,'pyre_page_bg',''),(8606,4142,'pyre_page_bg_color',''),(8607,4142,'pyre_page_bg_full','no'),(8608,4142,'pyre_page_bg_repeat','repeat'),(8609,4142,'pyre_wide_page_bg',''),(8610,4142,'pyre_wide_page_bg_color',''),(8611,4142,'pyre_wide_page_bg_full','no'),(8612,4142,'pyre_wide_page_bg_repeat','repeat'),(8613,4142,'pyre_header_bg',''),(8614,4142,'pyre_header_bg_color',''),(8615,4142,'pyre_header_bg_full','no'),(8616,4142,'pyre_header_bg_repeat','repeat'),(8617,4142,'pyre_page_title','yes'),(8618,4142,'pyre_page_title_text','yes'),(8619,4142,'pyre_page_title_custom_text',''),(8620,4142,'pyre_page_title_custom_subheader',''),(8621,4142,'pyre_page_title_height',''),(8622,4142,'pyre_page_title_bar_bg',''),(8623,4142,'pyre_page_title_bar_bg_retina',''),(8624,4142,'pyre_page_title_bar_bg_color',''),(8625,4142,'pyre_page_title_bar_bg_full','default'),(8626,4142,'pyre_page_title_bg_parallax','default'),(8627,4142,'pyre_image_rollover_icons','linkzoom'),(8628,4142,'pyre_link_icon_url',''),(8629,4142,'slide_template','default'),(8630,4142,'pyre_slider_position','default'),(8631,4142,'pyre_display_header','yes'),(8632,4142,'pyre_transparent_header','default'),(8633,4142,'pyre_displayed_menu','default'),(8634,4142,'pyre_display_footer','default'),(8635,4142,'pyre_display_copyright','default'),(8636,4142,'pyre_main_top_padding',''),(8637,4142,'pyre_main_bottom_padding',''),(8638,4142,'pyre_hundredp_padding',''),(8639,4142,'fusion_builder_status','active'),(8640,4142,'pyre_portfolio_content_length','default'),(8641,4142,'pyre_portfolio_text_layout','default'),(8642,4142,'pyre_portfolio_featured_image_size','default'),(8643,4142,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8644,4142,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8645,4142,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8646,4142,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8647,4144,'_wp_page_template','default'),(8648,4144,'pyre_slider_type','no'),(8649,4144,'pyre_slider','0'),(8650,4144,'pyre_wooslider','0'),(8651,4144,'pyre_flexslider','0'),(8652,4144,'pyre_revslider','0'),(8653,4144,'pyre_elasticslider','0'),(8654,4144,'pyre_fallback',''),(8655,4144,'pyre_full_width','no'),(8656,4144,'pyre_sidebar_position','default'),(8657,4144,'pyre_portfolio_excerpt',''),(8658,4144,'pyre_portfolio_full_width','yes'),(8659,4144,'pyre_portfolio_sidebar_position','default'),(8660,4144,'pyre_portfolio_filters','yes'),(8661,4144,'pyre_page_bg_layout','default'),(8662,4144,'pyre_page_bg',''),(8663,4144,'pyre_page_bg_color',''),(8664,4144,'pyre_page_bg_full','no'),(8665,4144,'pyre_page_bg_repeat','repeat'),(8666,4144,'pyre_wide_page_bg',''),(8667,4144,'pyre_wide_page_bg_color',''),(8668,4144,'pyre_wide_page_bg_full','no'),(8669,4144,'pyre_wide_page_bg_repeat','repeat'),(8670,4144,'pyre_header_bg',''),(8671,4144,'pyre_header_bg_color',''),(8672,4144,'pyre_header_bg_full','no'),(8673,4144,'pyre_header_bg_repeat','repeat'),(8674,4144,'pyre_page_title','yes'),(8675,4144,'pyre_page_title_text','yes'),(8676,4144,'pyre_page_title_custom_text',''),(8677,4144,'pyre_page_title_custom_subheader',''),(8678,4144,'pyre_page_title_height',''),(8679,4144,'pyre_page_title_bar_bg',''),(8680,4144,'pyre_page_title_bar_bg_retina',''),(8681,4144,'pyre_page_title_bar_bg_color',''),(8682,4144,'pyre_page_title_bar_bg_full','default'),(8683,4144,'pyre_page_title_bg_parallax','default'),(8684,4144,'pyre_image_rollover_icons','linkzoom'),(8685,4144,'pyre_link_icon_url',''),(8686,4144,'slide_template','default'),(8687,4144,'pyre_slider_position','default'),(8688,4144,'pyre_display_header','yes'),(8689,4144,'pyre_transparent_header','default'),(8690,4144,'pyre_displayed_menu','default'),(8691,4144,'pyre_display_footer','default'),(8692,4144,'pyre_display_copyright','default'),(8693,4144,'pyre_main_top_padding',''),(8694,4144,'pyre_main_bottom_padding',''),(8695,4144,'pyre_hundredp_padding',''),(8696,4144,'fusion_builder_status','active'),(8697,4144,'pyre_portfolio_content_length','default'),(8698,4144,'pyre_portfolio_text_layout','default'),(8699,4144,'pyre_portfolio_featured_image_size','default'),(8700,4144,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8701,4144,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8702,4144,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8703,4144,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8704,4146,'_wp_page_template','default'),(8705,4146,'pyre_slider_type','no'),(8706,4146,'pyre_slider','0'),(8707,4146,'pyre_wooslider','0'),(8708,4146,'pyre_flexslider','0'),(8709,4146,'pyre_revslider','0'),(8710,4146,'pyre_elasticslider','0'),(8711,4146,'pyre_fallback',''),(8712,4146,'pyre_full_width','no'),(8713,4146,'pyre_sidebar_position','default'),(8714,4146,'pyre_portfolio_excerpt',''),(8715,4146,'pyre_portfolio_full_width','yes'),(8716,4146,'pyre_portfolio_sidebar_position','default'),(8717,4146,'pyre_portfolio_filters','yes'),(8718,4146,'pyre_page_bg_layout','default'),(8719,4146,'pyre_page_bg',''),(8720,4146,'pyre_page_bg_color',''),(8721,4146,'pyre_page_bg_full','no'),(8722,4146,'pyre_page_bg_repeat','repeat'),(8723,4146,'pyre_wide_page_bg',''),(8724,4146,'pyre_wide_page_bg_color',''),(8725,4146,'pyre_wide_page_bg_full','no'),(8726,4146,'pyre_wide_page_bg_repeat','repeat'),(8727,4146,'pyre_header_bg',''),(8728,4146,'pyre_header_bg_color',''),(8729,4146,'pyre_header_bg_full','no'),(8730,4146,'pyre_header_bg_repeat','repeat'),(8731,4146,'pyre_page_title','yes'),(8732,4146,'pyre_page_title_text','yes'),(8733,4146,'pyre_page_title_custom_text',''),(8734,4146,'pyre_page_title_custom_subheader',''),(8735,4146,'pyre_page_title_height',''),(8736,4146,'pyre_page_title_bar_bg',''),(8737,4146,'pyre_page_title_bar_bg_retina',''),(8738,4146,'pyre_page_title_bar_bg_color',''),(8739,4146,'pyre_page_title_bar_bg_full','default'),(8740,4146,'pyre_page_title_bg_parallax','default'),(8741,4146,'pyre_image_rollover_icons','linkzoom'),(8742,4146,'pyre_link_icon_url',''),(8743,4146,'slide_template','default'),(8744,4146,'pyre_slider_position','default'),(8745,4146,'pyre_display_header','yes'),(8746,4146,'pyre_transparent_header','default'),(8747,4146,'pyre_displayed_menu','default'),(8748,4146,'pyre_display_footer','default'),(8749,4146,'pyre_display_copyright','default'),(8750,4146,'pyre_main_top_padding',''),(8751,4146,'pyre_main_bottom_padding',''),(8752,4146,'pyre_hundredp_padding',''),(8753,4146,'fusion_builder_status','active'),(8754,4146,'pyre_portfolio_content_length','default'),(8755,4146,'pyre_portfolio_text_layout','default'),(8756,4146,'pyre_portfolio_featured_image_size','default'),(8757,4146,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8758,4146,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8759,4146,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8760,4146,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8761,4148,'_wp_page_template','default'),(8762,4148,'pyre_slider_type','no'),(8763,4148,'pyre_slider','0'),(8764,4148,'pyre_wooslider','0'),(8765,4148,'pyre_flexslider','0'),(8766,4148,'pyre_revslider','0'),(8767,4148,'pyre_elasticslider','0'),(8768,4148,'pyre_fallback',''),(8769,4148,'pyre_full_width','no'),(8770,4148,'pyre_sidebar_position','default'),(8771,4148,'pyre_portfolio_excerpt',''),(8772,4148,'pyre_portfolio_full_width','yes'),(8773,4148,'pyre_portfolio_sidebar_position','default'),(8774,4148,'pyre_portfolio_filters','yes'),(8775,4148,'pyre_page_bg_layout','default'),(8776,4148,'pyre_page_bg',''),(8777,4148,'pyre_page_bg_color',''),(8778,4148,'pyre_page_bg_full','no'),(8779,4148,'pyre_page_bg_repeat','repeat'),(8780,4148,'pyre_wide_page_bg',''),(8781,4148,'pyre_wide_page_bg_color',''),(8782,4148,'pyre_wide_page_bg_full','no'),(8783,4148,'pyre_wide_page_bg_repeat','repeat'),(8784,4148,'pyre_header_bg',''),(8785,4148,'pyre_header_bg_color',''),(8786,4148,'pyre_header_bg_full','no'),(8787,4148,'pyre_header_bg_repeat','repeat'),(8788,4148,'pyre_page_title','yes'),(8789,4148,'pyre_page_title_text','yes'),(8790,4148,'pyre_page_title_custom_text',''),(8791,4148,'pyre_page_title_custom_subheader',''),(8792,4148,'pyre_page_title_height',''),(8793,4148,'pyre_page_title_bar_bg',''),(8794,4148,'pyre_page_title_bar_bg_retina',''),(8795,4148,'pyre_page_title_bar_bg_color',''),(8796,4148,'pyre_page_title_bar_bg_full','default'),(8797,4148,'pyre_page_title_bg_parallax','default'),(8798,4148,'pyre_image_rollover_icons','linkzoom'),(8799,4148,'pyre_link_icon_url',''),(8800,4148,'slide_template','default'),(8801,4148,'pyre_slider_position','default'),(8802,4148,'pyre_display_header','yes'),(8803,4148,'pyre_transparent_header','default'),(8804,4148,'pyre_displayed_menu','default'),(8805,4148,'pyre_display_footer','default'),(8806,4148,'pyre_display_copyright','default'),(8807,4148,'pyre_main_top_padding',''),(8808,4148,'pyre_main_bottom_padding',''),(8809,4148,'pyre_hundredp_padding',''),(8810,4148,'fusion_builder_status','active'),(8811,4148,'pyre_portfolio_content_length','default'),(8812,4148,'pyre_portfolio_text_layout','default'),(8813,4148,'pyre_portfolio_featured_image_size','default'),(8814,4148,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8815,4148,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8816,4148,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8817,4148,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8818,4150,'_wp_page_template','default'),(8819,4150,'pyre_slider_type','no'),(8820,4150,'pyre_slider','0'),(8821,4150,'pyre_wooslider','0'),(8822,4150,'pyre_flexslider','0'),(8823,4150,'pyre_revslider','0'),(8824,4150,'pyre_elasticslider','0'),(8825,4150,'pyre_fallback',''),(8826,4150,'pyre_full_width','no'),(8827,4150,'pyre_sidebar_position','default'),(8828,4150,'pyre_portfolio_excerpt',''),(8829,4150,'pyre_portfolio_full_width','yes'),(8830,4150,'pyre_portfolio_sidebar_position','default'),(8831,4150,'pyre_portfolio_filters','yes'),(8832,4150,'pyre_page_bg_layout','default'),(8833,4150,'pyre_page_bg',''),(8834,4150,'pyre_page_bg_color',''),(8835,4150,'pyre_page_bg_full','no'),(8836,4150,'pyre_page_bg_repeat','repeat'),(8837,4150,'pyre_wide_page_bg',''),(8838,4150,'pyre_wide_page_bg_color',''),(8839,4150,'pyre_wide_page_bg_full','no'),(8840,4150,'pyre_wide_page_bg_repeat','repeat'),(8841,4150,'pyre_header_bg',''),(8842,4150,'pyre_header_bg_color',''),(8843,4150,'pyre_header_bg_full','no'),(8844,4150,'pyre_header_bg_repeat','repeat'),(8845,4150,'pyre_page_title','yes'),(8846,4150,'pyre_page_title_text','yes'),(8847,4150,'pyre_page_title_custom_text',''),(8848,4150,'pyre_page_title_custom_subheader',''),(8849,4150,'pyre_page_title_height',''),(8850,4150,'pyre_page_title_bar_bg',''),(8851,4150,'pyre_page_title_bar_bg_retina',''),(8852,4150,'pyre_page_title_bar_bg_color',''),(8853,4150,'pyre_page_title_bar_bg_full','default'),(8854,4150,'pyre_page_title_bg_parallax','default'),(8855,4150,'pyre_image_rollover_icons','linkzoom'),(8856,4150,'pyre_link_icon_url',''),(8857,4150,'slide_template','default'),(8858,4150,'pyre_slider_position','default'),(8859,4150,'pyre_display_header','yes'),(8860,4150,'pyre_transparent_header','default'),(8861,4150,'pyre_displayed_menu','default'),(8862,4150,'pyre_display_footer','default'),(8863,4150,'pyre_display_copyright','default'),(8864,4150,'pyre_main_top_padding',''),(8865,4150,'pyre_main_bottom_padding',''),(8866,4150,'pyre_hundredp_padding',''),(8867,4150,'fusion_builder_status','active'),(8868,4150,'pyre_portfolio_content_length','default'),(8869,4150,'pyre_portfolio_text_layout','default'),(8870,4150,'pyre_portfolio_featured_image_size','default'),(8871,4150,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8872,4150,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(8873,4150,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8874,4150,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8875,4169,'_wp_page_template','blank.php'),(8876,4169,'pyre_slider_type','no'),(8877,4169,'pyre_slider','0'),(8878,4169,'pyre_wooslider','0'),(8879,4169,'pyre_flexslider','0'),(8880,4169,'pyre_revslider','0'),(8881,4169,'pyre_elasticslider','0'),(8882,4169,'pyre_fallback',''),(8883,4169,'pyre_full_width','no'),(8884,4169,'pyre_sidebar_position','default'),(8885,4169,'pyre_portfolio_excerpt',''),(8886,4169,'pyre_portfolio_full_width','yes'),(8887,4169,'pyre_portfolio_sidebar_position','default'),(8888,4169,'pyre_portfolio_filters','yes'),(8889,4169,'pyre_page_bg_layout','default'),(8890,4169,'pyre_page_bg',''),(8891,4169,'pyre_page_bg_color',''),(8892,4169,'pyre_page_bg_full','no'),(8893,4169,'pyre_page_bg_repeat','repeat'),(8894,4169,'pyre_wide_page_bg',''),(8895,4169,'pyre_wide_page_bg_color',''),(8896,4169,'pyre_wide_page_bg_full','no'),(8897,4169,'pyre_wide_page_bg_repeat','repeat'),(8898,4169,'pyre_header_bg',''),(8899,4169,'pyre_header_bg_color',''),(8900,4169,'pyre_header_bg_full','no'),(8901,4169,'pyre_header_bg_repeat','repeat'),(8902,4169,'pyre_page_title','no'),(8903,4169,'pyre_page_title_text','yes'),(8904,4169,'pyre_page_title_custom_text',''),(8905,4169,'pyre_page_title_custom_subheader',''),(8906,4169,'pyre_page_title_height',''),(8907,4169,'pyre_page_title_bar_bg',''),(8908,4169,'pyre_page_title_bar_bg_retina',''),(8909,4169,'pyre_page_title_bar_bg_color',''),(8910,4169,'pyre_page_title_bar_bg_full','default'),(8911,4169,'pyre_page_title_bg_parallax','default'),(8912,4169,'pyre_image_rollover_icons','linkzoom'),(8913,4169,'pyre_link_icon_url',''),(8914,4169,'slide_template','default'),(8915,4169,'pyre_main_top_padding','0px'),(8916,4169,'pyre_main_bottom_padding','0px'),(8917,4169,'pyre_hundredp_padding',''),(8918,4169,'pyre_slider_position','default'),(8919,4169,'pyre_display_header','yes'),(8920,4169,'pyre_transparent_header','default'),(8921,4169,'pyre_displayed_menu','default'),(8922,4169,'pyre_display_footer','default'),(8923,4169,'pyre_display_copyright','default'),(8924,4169,'fusion_builder_status','active'),(8925,4169,'pyre_portfolio_content_length','default'),(8926,4169,'pyre_portfolio_text_layout','default'),(8927,4169,'pyre_portfolio_featured_image_size','default'),(8928,4169,'pyre_show_first_featured_image','no'),(8929,4169,'pyre_header_100_width','default'),(8930,4169,'pyre_header_bg_opacity',''),(8931,4169,'pyre_footer_100_width','default'),(8932,4169,'pyre_portfolio_width_100','no'),(8933,4169,'pyre_portfolio_column_spacing',''),(8934,4169,'pyre_page_title_text_alignment','default'),(8935,4169,'pyre_page_title_text_size',''),(8936,4169,'pyre_page_title_custom_subheader_text_size',''),(8937,4169,'pyre_page_title_font_color',''),(8938,4169,'pyre_page_title_breadcrumbs_search_bar','default'),(8939,4169,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8940,4169,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(8941,4169,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(8942,4169,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(8943,4172,'_wp_page_template','blank.php'),(8944,4172,'pyre_slider_type','no'),(8945,4172,'pyre_slider','0'),(8946,4172,'pyre_wooslider','0'),(8947,4172,'pyre_flexslider','0'),(8948,4172,'pyre_revslider','0'),(8949,4172,'pyre_elasticslider','0'),(8950,4172,'pyre_fallback',''),(8951,4172,'pyre_full_width','no'),(8952,4172,'pyre_sidebar_position','default'),(8953,4172,'pyre_portfolio_excerpt',''),(8954,4172,'pyre_portfolio_full_width','yes'),(8955,4172,'pyre_portfolio_sidebar_position','default'),(8956,4172,'pyre_portfolio_filters','yes'),(8957,4172,'pyre_page_bg_layout','default'),(8958,4172,'pyre_page_bg',''),(8959,4172,'pyre_page_bg_color',''),(8960,4172,'pyre_page_bg_full','no'),(8961,4172,'pyre_page_bg_repeat','repeat'),(8962,4172,'pyre_wide_page_bg',''),(8963,4172,'pyre_wide_page_bg_color',''),(8964,4172,'pyre_wide_page_bg_full','no'),(8965,4172,'pyre_wide_page_bg_repeat','repeat'),(8966,4172,'pyre_header_bg',''),(8967,4172,'pyre_header_bg_color',''),(8968,4172,'pyre_header_bg_full','no'),(8969,4172,'pyre_header_bg_repeat','repeat'),(8970,4172,'pyre_page_title','no'),(8971,4172,'pyre_page_title_text','yes'),(8972,4172,'pyre_page_title_custom_text',''),(8973,4172,'pyre_page_title_custom_subheader',''),(8974,4172,'pyre_page_title_height',''),(8975,4172,'pyre_page_title_bar_bg',''),(8976,4172,'pyre_page_title_bar_bg_retina',''),(8977,4172,'pyre_page_title_bar_bg_color',''),(8978,4172,'pyre_page_title_bar_bg_full','default'),(8979,4172,'pyre_page_title_bg_parallax','default'),(8980,4172,'pyre_image_rollover_icons','linkzoom'),(8981,4172,'pyre_link_icon_url',''),(8982,4172,'slide_template','default'),(8983,4172,'pyre_main_top_padding','0px'),(8984,4172,'pyre_main_bottom_padding','0px'),(8985,4172,'pyre_hundredp_padding',''),(8986,4172,'fusion_builder_status','active'),(8987,4172,'pyre_slider_position','default'),(8988,4172,'pyre_display_header','yes'),(8989,4172,'pyre_transparent_header','default'),(8990,4172,'pyre_displayed_menu','default'),(8991,4172,'pyre_display_footer','default'),(8992,4172,'pyre_display_copyright','default'),(8993,4172,'pyre_portfolio_content_length','default'),(8994,4172,'pyre_portfolio_text_layout','default'),(8995,4172,'pyre_portfolio_featured_image_size','default'),(8996,4172,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:4183;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1409842839;}'),(8997,4172,'fusion_builder_content',''),(8998,4172,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(8999,4172,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9000,4172,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9001,4172,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9002,4356,'_wp_page_template','portfolio-two-column.php'),(9003,4356,'pyre_slider_type','no'),(9004,4356,'pyre_slider','0'),(9005,4356,'pyre_wooslider','0'),(9006,4356,'pyre_flexslider','0'),(9007,4356,'pyre_revslider','0'),(9008,4356,'pyre_elasticslider','0'),(9009,4356,'pyre_fallback',''),(9010,4356,'pyre_full_width','no'),(9011,4356,'pyre_sidebar_position','default'),(9012,4356,'pyre_portfolio_excerpt',''),(9013,4356,'pyre_portfolio_full_width','no'),(9014,4356,'pyre_portfolio_sidebar_position','default'),(9015,4356,'pyre_portfolio_filters','yes'),(9016,4356,'pyre_page_bg_layout','default'),(9017,4356,'pyre_page_bg',''),(9018,4356,'pyre_page_bg_color',''),(9019,4356,'pyre_page_bg_full','no'),(9020,4356,'pyre_page_bg_repeat','repeat'),(9021,4356,'pyre_wide_page_bg',''),(9022,4356,'pyre_wide_page_bg_color',''),(9023,4356,'pyre_wide_page_bg_full','no'),(9024,4356,'pyre_wide_page_bg_repeat','repeat'),(9025,4356,'pyre_header_bg',''),(9026,4356,'pyre_header_bg_color',''),(9027,4356,'pyre_header_bg_full','no'),(9028,4356,'pyre_header_bg_repeat','repeat'),(9029,4356,'pyre_page_title','yes'),(9030,4356,'pyre_page_title_text','yes'),(9031,4356,'pyre_page_title_custom_text',''),(9032,4356,'pyre_page_title_custom_subheader',''),(9033,4356,'pyre_page_title_height',''),(9034,4356,'pyre_page_title_bar_bg',''),(9035,4356,'pyre_page_title_bar_bg_retina',''),(9036,4356,'pyre_page_title_bar_bg_color',''),(9037,4356,'pyre_page_title_bar_bg_full','default'),(9038,4356,'pyre_page_title_bg_parallax','default'),(9039,4356,'pyre_image_rollover_icons','linkzoom'),(9040,4356,'pyre_link_icon_url',''),(9041,4356,'slide_template','default'),(9042,4356,'fusion_builder_status','inactive'),(9043,4356,'pyre_slider_position','default'),(9044,4356,'pyre_main_top_padding',''),(9045,4356,'pyre_main_bottom_padding',''),(9046,4356,'pyre_hundredp_padding',''),(9047,4356,'pyre_display_header','yes'),(9048,4356,'pyre_transparent_header','default'),(9049,4356,'pyre_displayed_menu','default'),(9050,4356,'pyre_display_footer','default'),(9051,4356,'pyre_display_copyright','default'),(9052,4356,'pyre_portfolio_content_length','default'),(9053,4356,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(9054,4356,'pyre_portfolio_text_layout','default'),(9055,4356,'pyre_portfolio_featured_image_size','default'),(9056,4356,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9057,4356,'sbg_selected_sidebar_replacement','a:1:{i:0;s:9:\"Portfolio\";}'),(9058,4356,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9059,4356,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9060,4427,'_wp_page_template','100-width.php'),(9061,4427,'slide_template','default'),(9062,4427,'pyre_slider_type','no'),(9063,4427,'pyre_slider','0'),(9064,4427,'pyre_wooslider','0'),(9065,4427,'pyre_flexslider','0'),(9066,4427,'pyre_revslider','0'),(9067,4427,'pyre_elasticslider','0'),(9068,4427,'pyre_fallback',''),(9069,4427,'pyre_full_width','no'),(9070,4427,'pyre_sidebar_position','default'),(9071,4427,'pyre_main_top_padding','0px'),(9072,4427,'pyre_main_bottom_padding','20px'),(9073,4427,'pyre_hundredp_padding',''),(9074,4427,'pyre_portfolio_excerpt',''),(9075,4427,'pyre_portfolio_full_width','yes'),(9076,4427,'pyre_portfolio_sidebar_position','default'),(9077,4427,'pyre_portfolio_filters','yes'),(9078,4427,'pyre_page_bg_layout','default'),(9079,4427,'pyre_page_bg',''),(9080,4427,'pyre_page_bg_color',''),(9081,4427,'pyre_page_bg_full','no'),(9082,4427,'pyre_page_bg_repeat','repeat'),(9083,4427,'pyre_wide_page_bg',''),(9084,4427,'pyre_wide_page_bg_color',''),(9085,4427,'pyre_wide_page_bg_full','no'),(9086,4427,'pyre_wide_page_bg_repeat','repeat'),(9087,4427,'pyre_header_bg',''),(9088,4427,'pyre_header_bg_color',''),(9089,4427,'pyre_header_bg_full','no'),(9090,4427,'pyre_header_bg_repeat','repeat'),(9091,4427,'pyre_page_title','no'),(9092,4427,'pyre_page_title_text','yes'),(9093,4427,'pyre_page_title_custom_text',''),(9094,4427,'pyre_page_title_custom_subheader',''),(9095,4427,'pyre_page_title_height',''),(9096,4427,'pyre_page_title_bar_bg',''),(9097,4427,'pyre_page_title_bar_bg_retina',''),(9098,4427,'pyre_page_title_bar_bg_color',''),(9099,4427,'pyre_page_title_bar_bg_full','default'),(9100,4427,'pyre_page_title_bg_parallax','default'),(9101,4427,'pyre_slider_position','default'),(9102,4427,'pyre_display_header','yes'),(9103,4427,'pyre_transparent_header','default'),(9104,4427,'pyre_displayed_menu','default'),(9105,4427,'pyre_display_footer','default'),(9106,4427,'pyre_display_copyright','default'),(9107,4427,'fusion_builder_status','active'),(9108,4427,'pyre_portfolio_content_length','default'),(9109,4427,'pyre_portfolio_text_layout','default'),(9110,4427,'pyre_portfolio_featured_image_size','default'),(9111,4427,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9112,4427,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9113,4427,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9114,4427,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9115,4442,'_wp_page_template','default'),(9116,4442,'slide_template','default'),(9117,4442,'pyre_slider_type','no'),(9118,4442,'pyre_slider','0'),(9119,4442,'pyre_wooslider','0'),(9120,4442,'pyre_flexslider','0'),(9121,4442,'pyre_revslider','0'),(9122,4442,'pyre_elasticslider','0'),(9123,4442,'pyre_fallback',''),(9124,4442,'pyre_full_width','no'),(9125,4442,'pyre_sidebar_position','default'),(9126,4442,'pyre_main_top_padding','0px'),(9127,4442,'pyre_main_bottom_padding',''),(9128,4442,'pyre_hundredp_padding',''),(9129,4442,'pyre_portfolio_excerpt',''),(9130,4442,'pyre_portfolio_full_width','yes'),(9131,4442,'pyre_portfolio_sidebar_position','default'),(9132,4442,'pyre_portfolio_filters','yes'),(9133,4442,'pyre_page_bg_layout','boxed'),(9134,4442,'pyre_page_bg','http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2013/10/bkgd1.jpg'),(9135,4442,'pyre_page_bg_color',''),(9136,4442,'pyre_page_bg_full','yes'),(9137,4442,'pyre_page_bg_repeat','repeat'),(9138,4442,'pyre_wide_page_bg',''),(9139,4442,'pyre_wide_page_bg_color',''),(9140,4442,'pyre_wide_page_bg_full','no'),(9141,4442,'pyre_wide_page_bg_repeat','repeat'),(9142,4442,'pyre_header_bg',''),(9143,4442,'pyre_header_bg_color',''),(9144,4442,'pyre_header_bg_full','no'),(9145,4442,'pyre_header_bg_repeat','repeat'),(9146,4442,'pyre_page_title','no'),(9147,4442,'pyre_page_title_text','yes'),(9148,4442,'pyre_page_title_custom_text',''),(9149,4442,'pyre_page_title_custom_subheader',''),(9150,4442,'pyre_page_title_height',''),(9151,4442,'pyre_page_title_bar_bg',''),(9152,4442,'pyre_page_title_bar_bg_retina',''),(9153,4442,'pyre_page_title_bar_bg_color',''),(9154,4442,'pyre_page_title_bar_bg_full','default'),(9155,4442,'pyre_page_title_bg_parallax','default'),(9156,4442,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:4452;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1387211734;}'),(9157,4442,'pyre_slider_position','default'),(9158,4442,'pyre_display_header','yes'),(9159,4442,'pyre_transparent_header','default'),(9160,4442,'pyre_displayed_menu','default'),(9161,4442,'pyre_display_footer','default'),(9162,4442,'pyre_display_copyright','default'),(9163,4442,'fusion_builder_status','active'),(9164,4442,'pyre_portfolio_content_length','default'),(9165,4442,'pyre_portfolio_text_layout','default'),(9166,4442,'pyre_portfolio_featured_image_size','default'),(9167,4442,'pyre_show_first_featured_image','no'),(9168,4442,'pyre_header_100_width','default'),(9169,4442,'pyre_header_bg_opacity',''),(9170,4442,'pyre_footer_100_width','default'),(9171,4442,'pyre_portfolio_width_100','no'),(9172,4442,'pyre_portfolio_column_spacing',''),(9173,4442,'pyre_page_title_text_alignment','default'),(9174,4442,'pyre_page_title_text_size',''),(9175,4442,'pyre_page_title_custom_subheader_text_size',''),(9176,4442,'pyre_page_title_font_color',''),(9177,4442,'pyre_page_title_breadcrumbs_search_bar','default'),(9178,4442,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9179,4442,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(9180,4442,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9181,4442,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9182,4461,'_wp_page_template','default'),(9183,4461,'slide_template','default'),(9184,4461,'pyre_slider_type','no'),(9185,4461,'pyre_slider','0'),(9186,4461,'pyre_wooslider','0'),(9187,4461,'pyre_flexslider','0'),(9188,4461,'pyre_revslider','0'),(9189,4461,'pyre_elasticslider','0'),(9190,4461,'pyre_fallback',''),(9191,4461,'pyre_full_width','no'),(9192,4461,'pyre_sidebar_position','default'),(9193,4461,'pyre_main_top_padding','0px'),(9194,4461,'pyre_main_bottom_padding','20px'),(9195,4461,'pyre_hundredp_padding',''),(9196,4461,'pyre_portfolio_excerpt',''),(9197,4461,'pyre_portfolio_full_width','yes'),(9198,4461,'pyre_portfolio_sidebar_position','default'),(9199,4461,'pyre_portfolio_filters','yes'),(9200,4461,'pyre_page_bg_layout','default'),(9201,4461,'pyre_page_bg',''),(9202,4461,'pyre_page_bg_color',''),(9203,4461,'pyre_page_bg_full','no'),(9204,4461,'pyre_page_bg_repeat','repeat'),(9205,4461,'pyre_wide_page_bg',''),(9206,4461,'pyre_wide_page_bg_color',''),(9207,4461,'pyre_wide_page_bg_full','no'),(9208,4461,'pyre_wide_page_bg_repeat','repeat'),(9209,4461,'pyre_header_bg',''),(9210,4461,'pyre_header_bg_color',''),(9211,4461,'pyre_header_bg_full','no'),(9212,4461,'pyre_header_bg_repeat','repeat'),(9213,4461,'pyre_page_title','no'),(9214,4461,'pyre_page_title_text','yes'),(9215,4461,'pyre_page_title_custom_text',''),(9216,4461,'pyre_page_title_custom_subheader',''),(9217,4461,'pyre_page_title_height',''),(9218,4461,'pyre_page_title_bar_bg',''),(9219,4461,'pyre_page_title_bar_bg_retina',''),(9220,4461,'pyre_page_title_bar_bg_color',''),(9221,4461,'pyre_page_title_bar_bg_full','default'),(9222,4461,'pyre_page_title_bg_parallax','default'),(9223,4461,'pyre_slider_position','default'),(9224,4461,'pyre_display_header','yes'),(9225,4461,'pyre_transparent_header','default'),(9226,4461,'pyre_displayed_menu','default'),(9227,4461,'pyre_display_footer','default'),(9228,4461,'pyre_display_copyright','default'),(9229,4461,'fusion_builder_status','active'),(9230,4461,'pyre_portfolio_content_length','default'),(9231,4461,'pyre_portfolio_text_layout','default'),(9232,4461,'pyre_portfolio_featured_image_size','default'),(9233,4461,'pyre_show_first_featured_image','no'),(9234,4461,'pyre_header_100_width','default'),(9235,4461,'pyre_header_bg_opacity',''),(9236,4461,'pyre_footer_100_width','default'),(9237,4461,'pyre_portfolio_width_100','no'),(9238,4461,'pyre_portfolio_column_spacing',''),(9239,4461,'pyre_page_title_text_alignment','default'),(9240,4461,'pyre_page_title_text_size',''),(9241,4461,'pyre_page_title_custom_subheader_text_size',''),(9242,4461,'pyre_page_title_font_color',''),(9243,4461,'pyre_page_title_breadcrumbs_search_bar','default'),(9244,4461,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9245,4461,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9246,4461,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9247,4461,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9248,4546,'_wp_page_template','100-width.php'),(9249,4546,'slide_template','default'),(9250,4546,'pyre_slider_position','default'),(9251,4546,'pyre_slider_type','no'),(9252,4546,'pyre_slider','0'),(9253,4546,'pyre_wooslider','0'),(9254,4546,'pyre_flexslider','0'),(9255,4546,'pyre_revslider','0'),(9256,4546,'pyre_elasticslider','0'),(9257,4546,'pyre_fallback',''),(9258,4546,'pyre_full_width','no'),(9259,4546,'pyre_sidebar_position','default'),(9260,4546,'pyre_display_header','yes'),(9261,4546,'pyre_transparent_header','default'),(9262,4546,'pyre_displayed_menu','default'),(9263,4546,'pyre_display_footer','default'),(9264,4546,'pyre_display_copyright','default'),(9265,4546,'pyre_main_top_padding','0px'),(9266,4546,'pyre_main_bottom_padding','0px'),(9267,4546,'pyre_hundredp_padding',''),(9268,4546,'pyre_portfolio_excerpt',''),(9269,4546,'pyre_portfolio_full_width','yes'),(9270,4546,'pyre_portfolio_sidebar_position','default'),(9271,4546,'pyre_portfolio_filters','yes'),(9272,4546,'pyre_page_bg_layout','default'),(9273,4546,'pyre_page_bg',''),(9274,4546,'pyre_page_bg_color',''),(9275,4546,'pyre_page_bg_full','no'),(9276,4546,'pyre_page_bg_repeat','repeat'),(9277,4546,'pyre_wide_page_bg',''),(9278,4546,'pyre_wide_page_bg_color',''),(9279,4546,'pyre_wide_page_bg_full','no'),(9280,4546,'pyre_wide_page_bg_repeat','repeat'),(9281,4546,'pyre_header_bg',''),(9282,4546,'pyre_header_bg_color',''),(9283,4546,'pyre_header_bg_full','no'),(9284,4546,'pyre_header_bg_repeat','repeat'),(9285,4546,'pyre_page_title','no'),(9286,4546,'pyre_page_title_text','yes'),(9287,4546,'pyre_page_title_custom_text',''),(9288,4546,'pyre_page_title_custom_subheader',''),(9289,4546,'pyre_page_title_height',''),(9290,4546,'pyre_page_title_bar_bg',''),(9291,4546,'pyre_page_title_bar_bg_retina',''),(9292,4546,'pyre_page_title_bar_bg_color',''),(9293,4546,'pyre_page_title_bar_bg_full','default'),(9294,4546,'pyre_page_title_bg_parallax','default'),(9295,4546,'fusion_builder_status','active'),(9296,4546,'pyre_portfolio_featured_image_size','default'),(9297,4546,'pyre_portfolio_content_length','default'),(9298,4546,'pyre_portfolio_text_layout','default'),(9299,4546,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:10247;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1409688883;}'),(9300,4546,'fusion_builder_content',''),(9301,4546,'pyre_show_first_featured_image','no'),(9302,4546,'pyre_header_100_width','default'),(9303,4546,'pyre_header_bg_opacity',''),(9304,4546,'pyre_footer_100_width','default'),(9305,4546,'pyre_portfolio_width_100','no'),(9306,4546,'pyre_portfolio_column_spacing',''),(9307,4546,'pyre_page_title_text_alignment','default'),(9308,4546,'pyre_page_title_text_size',''),(9309,4546,'pyre_page_title_custom_subheader_text_size',''),(9310,4546,'pyre_page_title_font_color',''),(9311,4546,'pyre_page_title_breadcrumbs_search_bar','default'),(9312,4546,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9313,4546,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9314,4546,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9315,4546,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9316,4548,'_wp_page_template','100-width.php'),(9317,4548,'slide_template','default'),(9318,4548,'pyre_slider_position','default'),(9319,4548,'pyre_slider_type','flex'),(9320,4548,'pyre_slider','0'),(9321,4548,'pyre_wooslider','final_full_screen'),(9322,4548,'pyre_flexslider','0'),(9323,4548,'pyre_revslider','0'),(9324,4548,'pyre_elasticslider','0'),(9325,4548,'pyre_fallback',''),(9326,4548,'pyre_full_width','no'),(9327,4548,'pyre_sidebar_position','default'),(9328,4548,'pyre_display_header','yes'),(9329,4548,'pyre_transparent_header','default'),(9330,4548,'pyre_displayed_menu','52'),(9331,4548,'pyre_display_footer','default'),(9332,4548,'pyre_display_copyright','default'),(9333,4548,'pyre_main_top_padding','0px'),(9334,4548,'pyre_main_bottom_padding','0px'),(9335,4548,'pyre_hundredp_padding',''),(9336,4548,'pyre_portfolio_excerpt',''),(9337,4548,'pyre_portfolio_full_width','yes'),(9338,4548,'pyre_portfolio_sidebar_position','default'),(9339,4548,'pyre_portfolio_filters','yes'),(9340,4548,'pyre_page_bg_layout','default'),(9341,4548,'pyre_page_bg',''),(9342,4548,'pyre_page_bg_color',''),(9343,4548,'pyre_page_bg_full','no'),(9344,4548,'pyre_page_bg_repeat','repeat'),(9345,4548,'pyre_wide_page_bg',''),(9346,4548,'pyre_wide_page_bg_color',''),(9347,4548,'pyre_wide_page_bg_full','no'),(9348,4548,'pyre_wide_page_bg_repeat','repeat'),(9349,4548,'pyre_header_bg',''),(9350,4548,'pyre_header_bg_color',''),(9351,4548,'pyre_header_bg_full','no'),(9352,4548,'pyre_header_bg_repeat','repeat'),(9353,4548,'pyre_page_title','no'),(9354,4548,'pyre_page_title_text','yes'),(9355,4548,'pyre_page_title_custom_text',''),(9356,4548,'pyre_page_title_custom_subheader',''),(9357,4548,'pyre_page_title_height',''),(9358,4548,'pyre_page_title_bar_bg',''),(9359,4548,'pyre_page_title_bar_bg_retina',''),(9360,4548,'pyre_page_title_bar_bg_color',''),(9361,4548,'pyre_page_title_bar_bg_full','default'),(9362,4548,'pyre_page_title_bg_parallax','default'),(9363,4548,'fusion_builder_status','active'),(9364,4548,'pyre_portfolio_content_length','default'),(9365,4548,'pyre_portfolio_text_layout','default'),(9366,4548,'pyre_portfolio_featured_image_size','default'),(9367,4548,'pyre_show_first_featured_image','no'),(9368,4548,'pyre_header_100_width','default'),(9369,4548,'pyre_header_bg_opacity',''),(9370,4548,'pyre_footer_100_width','default'),(9371,4548,'pyre_portfolio_width_100','no'),(9372,4548,'pyre_portfolio_column_spacing',''),(9373,4548,'pyre_page_title_text_alignment','default'),(9374,4548,'pyre_page_title_text_size',''),(9375,4548,'pyre_page_title_custom_subheader_text_size',''),(9376,4548,'pyre_page_title_font_color',''),(9377,4548,'pyre_page_title_breadcrumbs_search_bar','default'),(9378,4548,'pyre_avada_rev_styles','default'),(9379,4548,'pyre_sidebar_bg_color',''),(9380,4548,'pyre_page_title_100_width','default'),(9381,4548,'pyre_page_title_mobile_height',''),(9382,4548,'pyre_page_title_bar_borders_color',''),(9383,4548,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9384,4548,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9385,4548,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9386,4548,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9387,9829,'_wp_page_template','100-width.php'),(9388,9829,'slide_template','default'),(9389,9829,'pyre_slider_position','default'),(9390,9829,'pyre_slider_type','flex'),(9391,9829,'pyre_slider','0'),(9392,9829,'pyre_wooslider','final_full_width'),(9393,9829,'pyre_revslider','0'),(9394,9829,'pyre_elasticslider','0'),(9395,9829,'pyre_fallback',''),(9396,9829,'pyre_full_width','no'),(9397,9829,'pyre_sidebar_position','default'),(9398,9829,'pyre_display_header','yes'),(9399,9829,'pyre_transparent_header','default'),(9400,9829,'pyre_displayed_menu','default'),(9401,9829,'pyre_display_footer','default'),(9402,9829,'pyre_display_copyright','default'),(9403,9829,'pyre_main_top_padding','40px'),(9404,9829,'pyre_main_bottom_padding','0px'),(9405,9829,'pyre_hundredp_padding',''),(9406,9829,'pyre_portfolio_excerpt',''),(9407,9829,'pyre_portfolio_full_width','yes'),(9408,9829,'pyre_portfolio_sidebar_position','default'),(9409,9829,'pyre_portfolio_filters','yes'),(9410,9829,'pyre_page_bg_layout','default'),(9411,9829,'pyre_page_bg',''),(9412,9829,'pyre_page_bg_color',''),(9413,9829,'pyre_page_bg_full','no'),(9414,9829,'pyre_page_bg_repeat','repeat'),(9415,9829,'pyre_wide_page_bg',''),(9416,9829,'pyre_wide_page_bg_color',''),(9417,9829,'pyre_wide_page_bg_full','no'),(9418,9829,'pyre_wide_page_bg_repeat','repeat'),(9419,9829,'pyre_header_bg',''),(9420,9829,'pyre_header_bg_color',''),(9421,9829,'pyre_header_bg_full','no'),(9422,9829,'pyre_header_bg_repeat','repeat'),(9423,9829,'pyre_page_title','no'),(9424,9829,'pyre_page_title_text','yes'),(9425,9829,'pyre_page_title_custom_text',''),(9426,9829,'pyre_page_title_custom_subheader',''),(9427,9829,'pyre_page_title_height',''),(9428,9829,'pyre_page_title_bar_bg',''),(9429,9829,'pyre_page_title_bar_bg_retina',''),(9430,9829,'pyre_page_title_bar_bg_color',''),(9431,9829,'pyre_page_title_bar_bg_full','default'),(9432,9829,'pyre_page_title_bg_parallax','default'),(9433,9829,'fusion_builder_status','active'),(9434,9829,'pyre_portfolio_content_length','default'),(9435,9829,'pyre_portfolio_text_layout','default'),(9436,9829,'pyre_portfolio_featured_image_size','default'),(9437,9829,'pyre_show_first_featured_image','no'),(9438,9829,'pyre_header_100_width','default'),(9439,9829,'pyre_header_bg_opacity',''),(9440,9829,'pyre_footer_100_width','default'),(9441,9829,'pyre_portfolio_width_100','no'),(9442,9829,'pyre_portfolio_column_spacing',''),(9443,9829,'pyre_page_title_text_alignment','default'),(9444,9829,'pyre_page_title_text_size',''),(9445,9829,'pyre_page_title_custom_subheader_text_size',''),(9446,9829,'pyre_page_title_font_color',''),(9447,9829,'pyre_page_title_breadcrumbs_search_bar','default'),(9448,9829,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9449,9829,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9450,9829,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9451,9829,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9452,9831,'_wp_page_template','100-width.php'),(9453,9831,'slide_template','default'),(9454,9831,'pyre_slider_position','default'),(9455,9831,'pyre_slider_type','flex'),(9456,9831,'pyre_slider','0'),(9457,9831,'pyre_wooslider','final_full_screen'),(9458,9831,'pyre_revslider','0'),(9459,9831,'pyre_elasticslider','0'),(9460,9831,'pyre_fallback',''),(9461,9831,'pyre_full_width','no'),(9462,9831,'pyre_sidebar_position','default'),(9463,9831,'pyre_display_header','yes'),(9464,9831,'pyre_transparent_header','default'),(9465,9831,'pyre_displayed_menu','default'),(9466,9831,'pyre_display_footer','default'),(9467,9831,'pyre_display_copyright','default'),(9468,9831,'pyre_main_top_padding','40px'),(9469,9831,'pyre_main_bottom_padding','0px'),(9470,9831,'pyre_hundredp_padding',''),(9471,9831,'pyre_portfolio_excerpt',''),(9472,9831,'pyre_portfolio_full_width','yes'),(9473,9831,'pyre_portfolio_sidebar_position','default'),(9474,9831,'pyre_portfolio_filters','yes'),(9475,9831,'pyre_page_bg_layout','default'),(9476,9831,'pyre_page_bg',''),(9477,9831,'pyre_page_bg_color',''),(9478,9831,'pyre_page_bg_full','no'),(9479,9831,'pyre_page_bg_repeat','repeat'),(9480,9831,'pyre_wide_page_bg',''),(9481,9831,'pyre_wide_page_bg_color',''),(9482,9831,'pyre_wide_page_bg_full','no'),(9483,9831,'pyre_wide_page_bg_repeat','repeat'),(9484,9831,'pyre_header_bg',''),(9485,9831,'pyre_header_bg_color',''),(9486,9831,'pyre_header_bg_full','no'),(9487,9831,'pyre_header_bg_repeat','repeat'),(9488,9831,'pyre_page_title','no'),(9489,9831,'pyre_page_title_text','yes'),(9490,9831,'pyre_page_title_custom_text',''),(9491,9831,'pyre_page_title_custom_subheader',''),(9492,9831,'pyre_page_title_height',''),(9493,9831,'pyre_page_title_bar_bg',''),(9494,9831,'pyre_page_title_bar_bg_retina',''),(9495,9831,'pyre_page_title_bar_bg_color',''),(9496,9831,'pyre_page_title_bar_bg_full','default'),(9497,9831,'pyre_page_title_bg_parallax','default'),(9498,9831,'fusion_builder_status','active'),(9499,9831,'pyre_portfolio_content_length','default'),(9500,9831,'pyre_portfolio_text_layout','default'),(9501,9831,'pyre_portfolio_featured_image_size','default'),(9502,9831,'pyre_show_first_featured_image','no'),(9503,9831,'pyre_header_100_width','default'),(9504,9831,'pyre_header_bg_opacity',''),(9505,9831,'pyre_footer_100_width','default'),(9506,9831,'pyre_portfolio_width_100','no'),(9507,9831,'pyre_portfolio_column_spacing',''),(9508,9831,'pyre_page_title_text_alignment','default'),(9509,9831,'pyre_page_title_text_size',''),(9510,9831,'pyre_page_title_custom_subheader_text_size',''),(9511,9831,'pyre_page_title_font_color',''),(9512,9831,'pyre_page_title_breadcrumbs_search_bar','default'),(9513,9831,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9514,9831,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9515,9831,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9516,9831,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9517,9833,'_wp_page_template','100-width.php'),(9518,9833,'slide_template','default'),(9519,9833,'pyre_slider_position','default'),(9520,9833,'pyre_slider_type','flex'),(9521,9833,'pyre_slider','0'),(9522,9833,'pyre_wooslider','final_fixed_width'),(9523,9833,'pyre_revslider','0'),(9524,9833,'pyre_elasticslider','0'),(9525,9833,'pyre_fallback',''),(9526,9833,'pyre_full_width','no'),(9527,9833,'pyre_sidebar_position','default'),(9528,9833,'pyre_display_header','yes'),(9529,9833,'pyre_transparent_header','default'),(9530,9833,'pyre_displayed_menu','default'),(9531,9833,'pyre_display_footer','default'),(9532,9833,'pyre_display_copyright','default'),(9533,9833,'pyre_main_top_padding','40px'),(9534,9833,'pyre_main_bottom_padding','0px'),(9535,9833,'pyre_hundredp_padding',''),(9536,9833,'pyre_portfolio_excerpt',''),(9537,9833,'pyre_portfolio_full_width','yes'),(9538,9833,'pyre_portfolio_sidebar_position','default'),(9539,9833,'pyre_portfolio_filters','yes'),(9540,9833,'pyre_page_bg_layout','default'),(9541,9833,'pyre_page_bg',''),(9542,9833,'pyre_page_bg_color',''),(9543,9833,'pyre_page_bg_full','no'),(9544,9833,'pyre_page_bg_repeat','repeat'),(9545,9833,'pyre_wide_page_bg',''),(9546,9833,'pyre_wide_page_bg_color',''),(9547,9833,'pyre_wide_page_bg_full','no'),(9548,9833,'pyre_wide_page_bg_repeat','repeat'),(9549,9833,'pyre_header_bg',''),(9550,9833,'pyre_header_bg_color',''),(9551,9833,'pyre_header_bg_full','no'),(9552,9833,'pyre_header_bg_repeat','repeat'),(9553,9833,'pyre_page_title','no'),(9554,9833,'pyre_page_title_text','yes'),(9555,9833,'pyre_page_title_custom_text',''),(9556,9833,'pyre_page_title_custom_subheader',''),(9557,9833,'pyre_page_title_height',''),(9558,9833,'pyre_page_title_bar_bg',''),(9559,9833,'pyre_page_title_bar_bg_retina',''),(9560,9833,'pyre_page_title_bar_bg_color',''),(9561,9833,'pyre_page_title_bar_bg_full','default'),(9562,9833,'pyre_page_title_bg_parallax','default'),(9563,9833,'fusion_builder_status','active'),(9564,9833,'pyre_portfolio_content_length','default'),(9565,9833,'pyre_portfolio_text_layout','default'),(9566,9833,'pyre_portfolio_featured_image_size','default'),(9567,9833,'pyre_show_first_featured_image','no'),(9568,9833,'pyre_header_100_width','default'),(9569,9833,'pyre_header_bg_opacity',''),(9570,9833,'pyre_footer_100_width','default'),(9571,9833,'pyre_portfolio_width_100','no'),(9572,9833,'pyre_portfolio_column_spacing',''),(9573,9833,'pyre_page_title_text_alignment','default'),(9574,9833,'pyre_page_title_text_size',''),(9575,9833,'pyre_page_title_custom_subheader_text_size',''),(9576,9833,'pyre_page_title_font_color',''),(9577,9833,'pyre_page_title_breadcrumbs_search_bar','default'),(9578,9833,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9579,9833,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9580,9833,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9581,9833,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9582,9883,'_wp_page_template','blank.php'),(9583,9883,'slide_template','default'),(9584,9883,'pyre_slider_position','default'),(9585,9883,'pyre_slider_type','no'),(9586,9883,'pyre_slider','0'),(9587,9883,'pyre_wooslider','0'),(9588,9883,'pyre_revslider','0'),(9589,9883,'pyre_elasticslider','0'),(9590,9883,'pyre_fallback',''),(9591,9883,'pyre_full_width','no'),(9592,9883,'pyre_sidebar_position','default'),(9593,9883,'pyre_display_header','yes'),(9594,9883,'pyre_transparent_header','default'),(9595,9883,'pyre_displayed_menu','default'),(9596,9883,'pyre_display_footer','default'),(9597,9883,'pyre_display_copyright','default'),(9598,9883,'pyre_main_top_padding','0px'),(9599,9883,'pyre_main_bottom_padding','0px'),(9600,9883,'pyre_hundredp_padding',''),(9601,9883,'pyre_portfolio_excerpt',''),(9602,9883,'pyre_portfolio_full_width','yes'),(9603,9883,'pyre_portfolio_sidebar_position','default'),(9604,9883,'pyre_portfolio_filters','yes'),(9605,9883,'pyre_page_bg_layout','default'),(9606,9883,'pyre_page_bg',''),(9607,9883,'pyre_page_bg_color',''),(9608,9883,'pyre_page_bg_full','no'),(9609,9883,'pyre_page_bg_repeat','repeat'),(9610,9883,'pyre_wide_page_bg',''),(9611,9883,'pyre_wide_page_bg_color',''),(9612,9883,'pyre_wide_page_bg_full','no'),(9613,9883,'pyre_wide_page_bg_repeat','repeat'),(9614,9883,'pyre_header_bg',''),(9615,9883,'pyre_header_bg_color',''),(9616,9883,'pyre_header_bg_full','no'),(9617,9883,'pyre_header_bg_repeat','repeat'),(9618,9883,'pyre_page_title','no'),(9619,9883,'pyre_page_title_text','yes'),(9620,9883,'pyre_page_title_custom_text',''),(9621,9883,'pyre_page_title_custom_subheader',''),(9622,9883,'pyre_page_title_height',''),(9623,9883,'pyre_page_title_bar_bg',''),(9624,9883,'pyre_page_title_bar_bg_retina',''),(9625,9883,'pyre_page_title_bar_bg_color',''),(9626,9883,'pyre_page_title_bar_bg_full','default'),(9627,9883,'pyre_page_title_bg_parallax','default'),(9628,9883,'fusion_builder_status','active'),(9629,9883,'pyre_portfolio_content_length','default'),(9630,9883,'pyre_portfolio_text_layout','default'),(9631,9883,'pyre_portfolio_featured_image_size','default'),(9632,9883,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:9884;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1409842440;}'),(9633,9883,'fusion_builder_content',''),(9634,9883,'pyre_show_first_featured_image','no'),(9635,9883,'pyre_header_100_width','default'),(9636,9883,'pyre_header_bg_opacity',''),(9637,9883,'pyre_footer_100_width','default'),(9638,9883,'pyre_portfolio_width_100','no'),(9639,9883,'pyre_portfolio_column_spacing',''),(9640,9883,'pyre_page_title_text_alignment','default'),(9641,9883,'pyre_page_title_text_size',''),(9642,9883,'pyre_page_title_custom_subheader_text_size',''),(9643,9883,'pyre_page_title_font_color',''),(9644,9883,'pyre_page_title_breadcrumbs_search_bar','default'),(9645,9883,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9646,9883,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9647,9883,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9648,9883,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9649,10013,'_wp_page_template','100-width.php'),(9650,10013,'slide_template','default'),(9651,10013,'pyre_slider_position','default'),(9652,10013,'pyre_slider_type','flex'),(9653,10013,'pyre_slider','0'),(9654,10013,'pyre_wooslider','shortcode'),(9655,10013,'pyre_revslider','0'),(9656,10013,'pyre_elasticslider','0'),(9657,10013,'pyre_fallback',''),(9658,10013,'pyre_full_width','no'),(9659,10013,'pyre_sidebar_position','default'),(9660,10013,'pyre_display_header','yes'),(9661,10013,'pyre_transparent_header','default'),(9662,10013,'pyre_displayed_menu','default'),(9663,10013,'pyre_display_footer','default'),(9664,10013,'pyre_display_copyright','default'),(9665,10013,'pyre_main_top_padding',''),(9666,10013,'pyre_main_bottom_padding','0px'),(9667,10013,'pyre_hundredp_padding',''),(9668,10013,'pyre_portfolio_excerpt',''),(9669,10013,'pyre_portfolio_full_width','yes'),(9670,10013,'pyre_portfolio_sidebar_position','default'),(9671,10013,'pyre_portfolio_filters','yes'),(9672,10013,'pyre_page_bg_layout','default'),(9673,10013,'pyre_page_bg',''),(9674,10013,'pyre_page_bg_color',''),(9675,10013,'pyre_page_bg_full','no'),(9676,10013,'pyre_page_bg_repeat','repeat'),(9677,10013,'pyre_wide_page_bg',''),(9678,10013,'pyre_wide_page_bg_color',''),(9679,10013,'pyre_wide_page_bg_full','no'),(9680,10013,'pyre_wide_page_bg_repeat','repeat'),(9681,10013,'pyre_header_bg',''),(9682,10013,'pyre_header_bg_color',''),(9683,10013,'pyre_header_bg_full','no'),(9684,10013,'pyre_header_bg_repeat','repeat'),(9685,10013,'pyre_page_title','no'),(9686,10013,'pyre_page_title_text','yes'),(9687,10013,'pyre_page_title_custom_text',''),(9688,10013,'pyre_page_title_custom_subheader',''),(9689,10013,'pyre_page_title_height',''),(9690,10013,'pyre_page_title_bar_bg',''),(9691,10013,'pyre_page_title_bar_bg_retina',''),(9692,10013,'pyre_page_title_bar_bg_color',''),(9693,10013,'pyre_page_title_bar_bg_full','default'),(9694,10013,'pyre_page_title_bg_parallax','default'),(9695,10013,'fusion_builder_status','active'),(9696,10013,'pyre_portfolio_content_length','default'),(9697,10013,'pyre_portfolio_text_layout','default'),(9698,10013,'pyre_portfolio_featured_image_size','default'),(9699,10013,'pyre_avada_rev_styles','default'),(9700,10013,'pyre_show_first_featured_image','no'),(9701,10013,'pyre_header_100_width','default'),(9702,10013,'pyre_header_bg_opacity',''),(9703,10013,'pyre_footer_100_width','default'),(9704,10013,'pyre_portfolio_width_100','no'),(9705,10013,'pyre_portfolio_column_spacing',''),(9706,10013,'pyre_page_title_text_alignment','default'),(9707,10013,'pyre_page_title_100_width','default'),(9708,10013,'pyre_page_title_text_size',''),(9709,10013,'pyre_page_title_custom_subheader_text_size',''),(9710,10013,'pyre_page_title_font_color',''),(9711,10013,'pyre_page_title_breadcrumbs_search_bar','default'),(9712,10013,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9713,10013,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9714,10013,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9715,10013,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9716,10015,'_wp_page_template','100-width.php'),(9717,10015,'slide_template','default'),(9718,10015,'pyre_slider_position','default'),(9719,10015,'pyre_slider_type','flex'),(9720,10015,'pyre_slider','0'),(9721,10015,'pyre_wooslider','shortcode'),(9722,10015,'pyre_revslider','0'),(9723,10015,'pyre_elasticslider','0'),(9724,10015,'pyre_fallback',''),(9725,10015,'pyre_full_width','no'),(9726,10015,'pyre_sidebar_position','default'),(9727,10015,'pyre_display_header','yes'),(9728,10015,'pyre_transparent_header','default'),(9729,10015,'pyre_displayed_menu','default'),(9730,10015,'pyre_display_footer','default'),(9731,10015,'pyre_display_copyright','default'),(9732,10015,'pyre_main_top_padding',''),(9733,10015,'pyre_main_bottom_padding','0px'),(9734,10015,'pyre_hundredp_padding',''),(9735,10015,'pyre_portfolio_excerpt',''),(9736,10015,'pyre_portfolio_full_width','yes'),(9737,10015,'pyre_portfolio_sidebar_position','default'),(9738,10015,'pyre_portfolio_filters','yes'),(9739,10015,'pyre_page_bg_layout','default'),(9740,10015,'pyre_page_bg',''),(9741,10015,'pyre_page_bg_color',''),(9742,10015,'pyre_page_bg_full','no'),(9743,10015,'pyre_page_bg_repeat','repeat'),(9744,10015,'pyre_wide_page_bg',''),(9745,10015,'pyre_wide_page_bg_color',''),(9746,10015,'pyre_wide_page_bg_full','no'),(9747,10015,'pyre_wide_page_bg_repeat','repeat'),(9748,10015,'pyre_header_bg',''),(9749,10015,'pyre_header_bg_color',''),(9750,10015,'pyre_header_bg_full','no'),(9751,10015,'pyre_header_bg_repeat','repeat'),(9752,10015,'pyre_page_title','no'),(9753,10015,'pyre_page_title_text','yes'),(9754,10015,'pyre_page_title_custom_text',''),(9755,10015,'pyre_page_title_custom_subheader',''),(9756,10015,'pyre_page_title_height',''),(9757,10015,'pyre_page_title_bar_bg',''),(9758,10015,'pyre_page_title_bar_bg_retina',''),(9759,10015,'pyre_page_title_bar_bg_color',''),(9760,10015,'pyre_page_title_bar_bg_full','default'),(9761,10015,'pyre_page_title_bg_parallax','default'),(9762,10015,'fusion_builder_status','active'),(9763,10015,'pyre_portfolio_content_length','default'),(9764,10015,'pyre_portfolio_text_layout','default'),(9765,10015,'pyre_portfolio_featured_image_size','default'),(9766,10015,'pyre_avada_rev_styles','default'),(9767,10015,'pyre_show_first_featured_image','no'),(9768,10015,'pyre_header_100_width','default'),(9769,10015,'pyre_header_bg_opacity',''),(9770,10015,'pyre_footer_100_width','default'),(9771,10015,'pyre_portfolio_width_100','no'),(9772,10015,'pyre_portfolio_column_spacing',''),(9773,10015,'pyre_page_title_text_alignment','default'),(9774,10015,'pyre_page_title_100_width','default'),(9775,10015,'pyre_page_title_text_size',''),(9776,10015,'pyre_page_title_custom_subheader_text_size',''),(9777,10015,'pyre_page_title_font_color',''),(9778,10015,'pyre_page_title_breadcrumbs_search_bar','default'),(9779,10015,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9780,10015,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(9781,10015,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9782,10015,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9783,10038,'_wp_page_template','portfolio-five-column-text.php'),(9784,10038,'slide_template','default'),(9785,10038,'fusion_builder_status','inactive'),(9786,10038,'pyre_slider_position','default'),(9787,10038,'pyre_slider_type','no'),(9788,10038,'pyre_slider','0'),(9789,10038,'pyre_wooslider','0'),(9790,10038,'pyre_revslider','0'),(9791,10038,'pyre_elasticslider','0'),(9792,10038,'pyre_fallback',''),(9793,10038,'pyre_main_top_padding',''),(9794,10038,'pyre_main_bottom_padding',''),(9795,10038,'pyre_hundredp_padding',''),(9796,10038,'pyre_display_header','yes'),(9797,10038,'pyre_header_bg',''),(9798,10038,'pyre_header_bg_color',''),(9799,10038,'pyre_header_bg_full','no'),(9800,10038,'pyre_header_bg_repeat','repeat'),(9801,10038,'pyre_transparent_header','default'),(9802,10038,'pyre_displayed_menu','default'),(9803,10038,'pyre_display_footer','default'),(9804,10038,'pyre_display_copyright','default'),(9805,10038,'pyre_sidebar_position','default'),(9806,10038,'pyre_page_bg_layout','default'),(9807,10038,'pyre_page_bg',''),(9808,10038,'pyre_page_bg_color',''),(9809,10038,'pyre_page_bg_full','no'),(9810,10038,'pyre_page_bg_repeat','repeat'),(9811,10038,'pyre_wide_page_bg',''),(9812,10038,'pyre_wide_page_bg_color',''),(9813,10038,'pyre_wide_page_bg_full','no'),(9814,10038,'pyre_wide_page_bg_repeat','repeat'),(9815,10038,'pyre_portfolio_excerpt','12'),(9816,10038,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(9817,10038,'pyre_portfolio_filters','yes'),(9818,10038,'pyre_portfolio_featured_image_size','default'),(9819,10038,'pyre_page_title','default'),(9820,10038,'pyre_page_title_text','yes'),(9821,10038,'pyre_page_title_custom_text',''),(9822,10038,'pyre_page_title_custom_subheader',''),(9823,10038,'pyre_page_title_height',''),(9824,10038,'pyre_page_title_bar_bg',''),(9825,10038,'pyre_page_title_bar_bg_retina',''),(9826,10038,'pyre_page_title_bar_bg_color',''),(9827,10038,'pyre_page_title_bar_bg_full','default'),(9828,10038,'pyre_page_title_bg_parallax','default'),(9829,10038,'pyre_portfolio_content_length','default'),(9830,10038,'pyre_portfolio_text_layout','default'),(9831,10038,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9832,10038,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(9833,10038,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9834,10038,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9835,10040,'_wp_page_template','portfolio-five-column.php'),(9836,10040,'slide_template','default'),(9837,10040,'fusion_builder_status','inactive'),(9838,10040,'pyre_slider_position','default'),(9839,10040,'pyre_slider_type','no'),(9840,10040,'pyre_slider','0'),(9841,10040,'pyre_wooslider','0'),(9842,10040,'pyre_revslider','0'),(9843,10040,'pyre_elasticslider','0'),(9844,10040,'pyre_fallback',''),(9845,10040,'pyre_main_top_padding',''),(9846,10040,'pyre_main_bottom_padding',''),(9847,10040,'pyre_hundredp_padding',''),(9848,10040,'pyre_display_header','yes'),(9849,10040,'pyre_header_bg',''),(9850,10040,'pyre_header_bg_color',''),(9851,10040,'pyre_header_bg_full','no'),(9852,10040,'pyre_header_bg_repeat','repeat'),(9853,10040,'pyre_transparent_header','default'),(9854,10040,'pyre_displayed_menu','default'),(9855,10040,'pyre_display_footer','default'),(9856,10040,'pyre_display_copyright','default'),(9857,10040,'pyre_sidebar_position','default'),(9858,10040,'pyre_page_bg_layout','default'),(9859,10040,'pyre_page_bg',''),(9860,10040,'pyre_page_bg_color',''),(9861,10040,'pyre_page_bg_full','no'),(9862,10040,'pyre_page_bg_repeat','repeat'),(9863,10040,'pyre_wide_page_bg',''),(9864,10040,'pyre_wide_page_bg_color',''),(9865,10040,'pyre_wide_page_bg_full','no'),(9866,10040,'pyre_wide_page_bg_repeat','repeat'),(9867,10040,'pyre_portfolio_excerpt',''),(9868,10040,'pyre_portfolio_filters','yes'),(9869,10040,'pyre_portfolio_featured_image_size','default'),(9870,10040,'pyre_page_title','default'),(9871,10040,'pyre_page_title_text','yes'),(9872,10040,'pyre_page_title_custom_text',''),(9873,10040,'pyre_page_title_custom_subheader',''),(9874,10040,'pyre_page_title_height',''),(9875,10040,'pyre_page_title_bar_bg',''),(9876,10040,'pyre_page_title_bar_bg_retina',''),(9877,10040,'pyre_page_title_bar_bg_color',''),(9878,10040,'pyre_page_title_bar_bg_full','default'),(9879,10040,'pyre_page_title_bg_parallax','default'),(9880,10040,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(9881,10040,'pyre_portfolio_content_length','default'),(9882,10040,'pyre_portfolio_text_layout','default'),(9883,10040,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9884,10040,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(9885,10040,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9886,10040,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9887,10042,'_wp_page_template','portfolio-six-column.php'),(9888,10042,'slide_template','default'),(9889,10042,'fusion_builder_status','inactive'),(9890,10042,'pyre_slider_position','default'),(9891,10042,'pyre_slider_type','no'),(9892,10042,'pyre_slider','0'),(9893,10042,'pyre_wooslider','0'),(9894,10042,'pyre_revslider','0'),(9895,10042,'pyre_elasticslider','0'),(9896,10042,'pyre_fallback',''),(9897,10042,'pyre_main_top_padding',''),(9898,10042,'pyre_main_bottom_padding',''),(9899,10042,'pyre_hundredp_padding',''),(9900,10042,'pyre_display_header','yes'),(9901,10042,'pyre_header_bg',''),(9902,10042,'pyre_header_bg_color',''),(9903,10042,'pyre_header_bg_full','no'),(9904,10042,'pyre_header_bg_repeat','repeat'),(9905,10042,'pyre_transparent_header','default'),(9906,10042,'pyre_displayed_menu','default'),(9907,10042,'pyre_display_footer','default'),(9908,10042,'pyre_display_copyright','default'),(9909,10042,'pyre_sidebar_position','default'),(9910,10042,'pyre_page_bg_layout','default'),(9911,10042,'pyre_page_bg',''),(9912,10042,'pyre_page_bg_color',''),(9913,10042,'pyre_page_bg_full','no'),(9914,10042,'pyre_page_bg_repeat','repeat'),(9915,10042,'pyre_wide_page_bg',''),(9916,10042,'pyre_wide_page_bg_color',''),(9917,10042,'pyre_wide_page_bg_full','no'),(9918,10042,'pyre_wide_page_bg_repeat','repeat'),(9919,10042,'pyre_portfolio_excerpt',''),(9920,10042,'pyre_portfolio_filters','yes'),(9921,10042,'pyre_portfolio_featured_image_size','default'),(9922,10042,'pyre_page_title','default'),(9923,10042,'pyre_page_title_text','yes'),(9924,10042,'pyre_page_title_custom_text',''),(9925,10042,'pyre_page_title_custom_subheader',''),(9926,10042,'pyre_page_title_height',''),(9927,10042,'pyre_page_title_bar_bg',''),(9928,10042,'pyre_page_title_bar_bg_retina',''),(9929,10042,'pyre_page_title_bar_bg_color',''),(9930,10042,'pyre_page_title_bar_bg_full','default'),(9931,10042,'pyre_page_title_bg_parallax','default'),(9932,10042,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(9933,10042,'pyre_portfolio_content_length','default'),(9934,10042,'pyre_portfolio_text_layout','default'),(9935,10042,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9936,10042,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(9937,10042,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9938,10042,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9939,10045,'_wp_page_template','portfolio-six-column-text.php'),(9940,10045,'slide_template','default'),(9941,10045,'fusion_builder_status','inactive'),(9942,10045,'pyre_slider_position','default'),(9943,10045,'pyre_slider_type','no'),(9944,10045,'pyre_slider','0'),(9945,10045,'pyre_wooslider','0'),(9946,10045,'pyre_revslider','0'),(9947,10045,'pyre_elasticslider','0'),(9948,10045,'pyre_fallback',''),(9949,10045,'pyre_main_top_padding',''),(9950,10045,'pyre_main_bottom_padding',''),(9951,10045,'pyre_hundredp_padding',''),(9952,10045,'pyre_display_header','yes'),(9953,10045,'pyre_header_bg',''),(9954,10045,'pyre_header_bg_color',''),(9955,10045,'pyre_header_bg_full','no'),(9956,10045,'pyre_header_bg_repeat','repeat'),(9957,10045,'pyre_transparent_header','default'),(9958,10045,'pyre_displayed_menu','default'),(9959,10045,'pyre_display_footer','default'),(9960,10045,'pyre_display_copyright','default'),(9961,10045,'pyre_sidebar_position','default'),(9962,10045,'pyre_page_bg_layout','default'),(9963,10045,'pyre_page_bg',''),(9964,10045,'pyre_page_bg_color',''),(9965,10045,'pyre_page_bg_full','no'),(9966,10045,'pyre_page_bg_repeat','repeat'),(9967,10045,'pyre_wide_page_bg',''),(9968,10045,'pyre_wide_page_bg_color',''),(9969,10045,'pyre_wide_page_bg_full','no'),(9970,10045,'pyre_wide_page_bg_repeat','repeat'),(9971,10045,'pyre_portfolio_excerpt','12'),(9972,10045,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(9973,10045,'pyre_portfolio_filters','yes'),(9974,10045,'pyre_portfolio_featured_image_size','default'),(9975,10045,'pyre_page_title','default'),(9976,10045,'pyre_page_title_text','yes'),(9977,10045,'pyre_page_title_custom_text',''),(9978,10045,'pyre_page_title_custom_subheader',''),(9979,10045,'pyre_page_title_height',''),(9980,10045,'pyre_page_title_bar_bg',''),(9981,10045,'pyre_page_title_bar_bg_retina',''),(9982,10045,'pyre_page_title_bar_bg_color',''),(9983,10045,'pyre_page_title_bar_bg_full','default'),(9984,10045,'pyre_page_title_bg_parallax','default'),(9985,10045,'pyre_portfolio_content_length','default'),(9986,10045,'pyre_portfolio_text_layout','default'),(9987,10045,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(9988,10045,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(9989,10045,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(9990,10045,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(9991,10047,'_wp_page_template','portfolio-two-column.php'),(9992,10047,'slide_template','default'),(9993,10047,'fusion_builder_status','inactive'),(9994,10047,'pyre_slider_position','default'),(9995,10047,'pyre_slider_type','no'),(9996,10047,'pyre_slider','0'),(9997,10047,'pyre_wooslider','0'),(9998,10047,'pyre_revslider','0'),(9999,10047,'pyre_elasticslider','0'),(10000,10047,'pyre_fallback',''),(10001,10047,'pyre_main_top_padding',''),(10002,10047,'pyre_main_bottom_padding',''),(10003,10047,'pyre_hundredp_padding',''),(10004,10047,'pyre_display_header','yes'),(10005,10047,'pyre_header_bg',''),(10006,10047,'pyre_header_bg_color',''),(10007,10047,'pyre_header_bg_full','no'),(10008,10047,'pyre_header_bg_repeat','repeat'),(10009,10047,'pyre_transparent_header','default'),(10010,10047,'pyre_displayed_menu','default'),(10011,10047,'pyre_display_footer','default'),(10012,10047,'pyre_display_copyright','default'),(10013,10047,'pyre_sidebar_position','default'),(10014,10047,'pyre_page_bg_layout','default'),(10015,10047,'pyre_page_bg',''),(10016,10047,'pyre_page_bg_color',''),(10017,10047,'pyre_page_bg_full','no'),(10018,10047,'pyre_page_bg_repeat','repeat'),(10019,10047,'pyre_wide_page_bg',''),(10020,10047,'pyre_wide_page_bg_color',''),(10021,10047,'pyre_wide_page_bg_full','no'),(10022,10047,'pyre_wide_page_bg_repeat','repeat'),(10023,10047,'pyre_portfolio_excerpt',''),(10024,10047,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(10025,10047,'pyre_portfolio_filters','yes'),(10026,10047,'pyre_portfolio_featured_image_size','default'),(10027,10047,'pyre_page_title','default'),(10028,10047,'pyre_page_title_text','yes'),(10029,10047,'pyre_page_title_custom_text',''),(10030,10047,'pyre_page_title_custom_subheader',''),(10031,10047,'pyre_page_title_height',''),(10032,10047,'pyre_page_title_bar_bg',''),(10033,10047,'pyre_page_title_bar_bg_retina',''),(10034,10047,'pyre_page_title_bar_bg_color',''),(10035,10047,'pyre_page_title_bar_bg_full','default'),(10036,10047,'pyre_page_title_bg_parallax','default'),(10037,10047,'pyre_portfolio_content_length','default'),(10038,10047,'pyre_portfolio_text_layout','default'),(10039,10047,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10040,10047,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10041,10047,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10042,10047,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10043,10049,'_wp_page_template','portfolio-three-column.php'),(10044,10049,'slide_template','default'),(10045,10049,'fusion_builder_status','inactive'),(10046,10049,'pyre_slider_position','default'),(10047,10049,'pyre_slider_type','no'),(10048,10049,'pyre_slider','0'),(10049,10049,'pyre_wooslider','0'),(10050,10049,'pyre_revslider','0'),(10051,10049,'pyre_elasticslider','0'),(10052,10049,'pyre_fallback',''),(10053,10049,'pyre_main_top_padding',''),(10054,10049,'pyre_main_bottom_padding',''),(10055,10049,'pyre_hundredp_padding',''),(10056,10049,'pyre_display_header','yes'),(10057,10049,'pyre_header_bg',''),(10058,10049,'pyre_header_bg_color',''),(10059,10049,'pyre_header_bg_full','no'),(10060,10049,'pyre_header_bg_repeat','repeat'),(10061,10049,'pyre_transparent_header','default'),(10062,10049,'pyre_displayed_menu','default'),(10063,10049,'pyre_display_footer','default'),(10064,10049,'pyre_display_copyright','default'),(10065,10049,'pyre_sidebar_position','default'),(10066,10049,'pyre_page_bg_layout','default'),(10067,10049,'pyre_page_bg',''),(10068,10049,'pyre_page_bg_color',''),(10069,10049,'pyre_page_bg_full','no'),(10070,10049,'pyre_page_bg_repeat','repeat'),(10071,10049,'pyre_wide_page_bg',''),(10072,10049,'pyre_wide_page_bg_color',''),(10073,10049,'pyre_wide_page_bg_full','no'),(10074,10049,'pyre_wide_page_bg_repeat','repeat'),(10075,10049,'pyre_portfolio_excerpt',''),(10076,10049,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(10077,10049,'pyre_portfolio_filters','yes'),(10078,10049,'pyre_portfolio_featured_image_size','default'),(10079,10049,'pyre_page_title','default'),(10080,10049,'pyre_page_title_text','yes'),(10081,10049,'pyre_page_title_custom_text',''),(10082,10049,'pyre_page_title_custom_subheader',''),(10083,10049,'pyre_page_title_height',''),(10084,10049,'pyre_page_title_bar_bg',''),(10085,10049,'pyre_page_title_bar_bg_retina',''),(10086,10049,'pyre_page_title_bar_bg_color',''),(10087,10049,'pyre_page_title_bar_bg_full','default'),(10088,10049,'pyre_page_title_bg_parallax','default'),(10089,10049,'pyre_portfolio_content_length','default'),(10090,10049,'pyre_portfolio_text_layout','default'),(10091,10049,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10092,10049,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10093,10049,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10094,10049,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10095,10050,'_wp_page_template','portfolio-four-column.php'),(10096,10050,'slide_template','default'),(10097,10050,'fusion_builder_status','inactive'),(10098,10050,'pyre_slider_position','default'),(10099,10050,'pyre_slider_type','no'),(10100,10050,'pyre_slider','0'),(10101,10050,'pyre_wooslider','0'),(10102,10050,'pyre_revslider','0'),(10103,10050,'pyre_elasticslider','0'),(10104,10050,'pyre_fallback',''),(10105,10050,'pyre_main_top_padding',''),(10106,10050,'pyre_main_bottom_padding',''),(10107,10050,'pyre_hundredp_padding',''),(10108,10050,'pyre_display_header','yes'),(10109,10050,'pyre_header_bg',''),(10110,10050,'pyre_header_bg_color',''),(10111,10050,'pyre_header_bg_full','no'),(10112,10050,'pyre_header_bg_repeat','repeat'),(10113,10050,'pyre_transparent_header','default'),(10114,10050,'pyre_displayed_menu','default'),(10115,10050,'pyre_display_footer','default'),(10116,10050,'pyre_display_copyright','default'),(10117,10050,'pyre_sidebar_position','default'),(10118,10050,'pyre_page_bg_layout','default'),(10119,10050,'pyre_page_bg',''),(10120,10050,'pyre_page_bg_color',''),(10121,10050,'pyre_page_bg_full','no'),(10122,10050,'pyre_page_bg_repeat','repeat'),(10123,10050,'pyre_wide_page_bg',''),(10124,10050,'pyre_wide_page_bg_color',''),(10125,10050,'pyre_wide_page_bg_full','no'),(10126,10050,'pyre_wide_page_bg_repeat','repeat'),(10127,10050,'pyre_portfolio_excerpt',''),(10128,10050,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(10129,10050,'pyre_portfolio_filters','yes'),(10130,10050,'pyre_portfolio_featured_image_size','default'),(10131,10050,'pyre_page_title','default'),(10132,10050,'pyre_page_title_text','yes'),(10133,10050,'pyre_page_title_custom_text',''),(10134,10050,'pyre_page_title_custom_subheader',''),(10135,10050,'pyre_page_title_height',''),(10136,10050,'pyre_page_title_bar_bg',''),(10137,10050,'pyre_page_title_bar_bg_retina',''),(10138,10050,'pyre_page_title_bar_bg_color',''),(10139,10050,'pyre_page_title_bar_bg_full','default'),(10140,10050,'pyre_page_title_bg_parallax','default'),(10141,10050,'pyre_portfolio_content_length','default'),(10142,10050,'pyre_portfolio_text_layout','default'),(10143,10050,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10144,10050,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10145,10050,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10146,10050,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10147,10051,'_wp_page_template','portfolio-five-column.php'),(10148,10051,'slide_template','default'),(10149,10051,'fusion_builder_status','inactive'),(10150,10051,'pyre_slider_position','default'),(10151,10051,'pyre_slider_type','no'),(10152,10051,'pyre_slider','0'),(10153,10051,'pyre_wooslider','0'),(10154,10051,'pyre_revslider','0'),(10155,10051,'pyre_elasticslider','0'),(10156,10051,'pyre_fallback',''),(10157,10051,'pyre_main_top_padding',''),(10158,10051,'pyre_main_bottom_padding',''),(10159,10051,'pyre_hundredp_padding',''),(10160,10051,'pyre_display_header','yes'),(10161,10051,'pyre_header_bg',''),(10162,10051,'pyre_header_bg_color',''),(10163,10051,'pyre_header_bg_full','no'),(10164,10051,'pyre_header_bg_repeat','repeat'),(10165,10051,'pyre_transparent_header','default'),(10166,10051,'pyre_displayed_menu','default'),(10167,10051,'pyre_display_footer','default'),(10168,10051,'pyre_display_copyright','default'),(10169,10051,'pyre_sidebar_position','default'),(10170,10051,'pyre_page_bg_layout','default'),(10171,10051,'pyre_page_bg',''),(10172,10051,'pyre_page_bg_color',''),(10173,10051,'pyre_page_bg_full','no'),(10174,10051,'pyre_page_bg_repeat','repeat'),(10175,10051,'pyre_wide_page_bg',''),(10176,10051,'pyre_wide_page_bg_color',''),(10177,10051,'pyre_wide_page_bg_full','no'),(10178,10051,'pyre_wide_page_bg_repeat','repeat'),(10179,10051,'pyre_portfolio_excerpt',''),(10180,10051,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(10181,10051,'pyre_portfolio_filters','yes'),(10182,10051,'pyre_portfolio_featured_image_size','default'),(10183,10051,'pyre_page_title','default'),(10184,10051,'pyre_page_title_text','yes'),(10185,10051,'pyre_page_title_custom_text',''),(10186,10051,'pyre_page_title_custom_subheader',''),(10187,10051,'pyre_page_title_height',''),(10188,10051,'pyre_page_title_bar_bg',''),(10189,10051,'pyre_page_title_bar_bg_retina',''),(10190,10051,'pyre_page_title_bar_bg_color',''),(10191,10051,'pyre_page_title_bar_bg_full','default'),(10192,10051,'pyre_page_title_bg_parallax','default'),(10193,10051,'pyre_portfolio_content_length','default'),(10194,10051,'pyre_portfolio_text_layout','default'),(10195,10051,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10196,10051,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10197,10051,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10198,10051,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10199,10052,'_wp_page_template','portfolio-six-column.php'),(10200,10052,'slide_template','default'),(10201,10052,'fusion_builder_status','inactive'),(10202,10052,'pyre_slider_position','default'),(10203,10052,'pyre_slider_type','no'),(10204,10052,'pyre_slider','0'),(10205,10052,'pyre_wooslider','0'),(10206,10052,'pyre_revslider','0'),(10207,10052,'pyre_elasticslider','0'),(10208,10052,'pyre_fallback',''),(10209,10052,'pyre_main_top_padding',''),(10210,10052,'pyre_main_bottom_padding',''),(10211,10052,'pyre_hundredp_padding',''),(10212,10052,'pyre_display_header','yes'),(10213,10052,'pyre_header_bg',''),(10214,10052,'pyre_header_bg_color',''),(10215,10052,'pyre_header_bg_full','no'),(10216,10052,'pyre_header_bg_repeat','repeat'),(10217,10052,'pyre_transparent_header','default'),(10218,10052,'pyre_displayed_menu','default'),(10219,10052,'pyre_display_footer','default'),(10220,10052,'pyre_display_copyright','default'),(10221,10052,'pyre_sidebar_position','default'),(10222,10052,'pyre_page_bg_layout','default'),(10223,10052,'pyre_page_bg',''),(10224,10052,'pyre_page_bg_color',''),(10225,10052,'pyre_page_bg_full','no'),(10226,10052,'pyre_page_bg_repeat','repeat'),(10227,10052,'pyre_wide_page_bg',''),(10228,10052,'pyre_wide_page_bg_color',''),(10229,10052,'pyre_wide_page_bg_full','no'),(10230,10052,'pyre_wide_page_bg_repeat','repeat'),(10231,10052,'pyre_portfolio_excerpt',''),(10232,10052,'pyre_portfolio_category','a:1:{i:0;s:1:\"0\";}'),(10233,10052,'pyre_portfolio_filters','yes'),(10234,10052,'pyre_portfolio_featured_image_size','default'),(10235,10052,'pyre_page_title','default'),(10236,10052,'pyre_page_title_text','yes'),(10237,10052,'pyre_page_title_custom_text',''),(10238,10052,'pyre_page_title_custom_subheader',''),(10239,10052,'pyre_page_title_height',''),(10240,10052,'pyre_page_title_bar_bg',''),(10241,10052,'pyre_page_title_bar_bg_retina',''),(10242,10052,'pyre_page_title_bar_bg_color',''),(10243,10052,'pyre_page_title_bar_bg_full','default'),(10244,10052,'pyre_page_title_bg_parallax','default'),(10245,10052,'pyre_portfolio_content_length','default'),(10246,10052,'pyre_portfolio_text_layout','default'),(10247,10052,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10248,10052,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10249,10052,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10250,10052,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10251,10075,'_wp_page_template','100-width.php'),(10252,10075,'slide_template','default'),(10253,10075,'fusion_builder_status','active'),(10254,10075,'pyre_slider_position','default'),(10255,10075,'pyre_slider_type','no'),(10256,10075,'pyre_slider','0'),(10257,10075,'pyre_wooslider','0'),(10258,10075,'pyre_revslider','0'),(10259,10075,'pyre_elasticslider','0'),(10260,10075,'pyre_fallback',''),(10261,10075,'pyre_main_top_padding','0px'),(10262,10075,'pyre_main_bottom_padding','15px'),(10263,10075,'pyre_hundredp_padding','0px'),(10264,10075,'pyre_display_header','yes'),(10265,10075,'pyre_header_bg',''),(10266,10075,'pyre_header_bg_color',''),(10267,10075,'pyre_header_bg_full','no'),(10268,10075,'pyre_header_bg_repeat','repeat'),(10269,10075,'pyre_transparent_header','default'),(10270,10075,'pyre_displayed_menu','default'),(10271,10075,'pyre_display_footer','default'),(10272,10075,'pyre_display_copyright','default'),(10273,10075,'pyre_sidebar_position','default'),(10274,10075,'pyre_page_bg_layout','default'),(10275,10075,'pyre_page_bg',''),(10276,10075,'pyre_page_bg_color',''),(10277,10075,'pyre_page_bg_full','no'),(10278,10075,'pyre_page_bg_repeat','repeat'),(10279,10075,'pyre_wide_page_bg',''),(10280,10075,'pyre_wide_page_bg_color',''),(10281,10075,'pyre_wide_page_bg_full','no'),(10282,10075,'pyre_wide_page_bg_repeat','repeat'),(10283,10075,'pyre_portfolio_excerpt',''),(10284,10075,'pyre_portfolio_filters','yes'),(10285,10075,'pyre_portfolio_featured_image_size','default'),(10286,10075,'pyre_page_title','no'),(10287,10075,'pyre_page_title_text','yes'),(10288,10075,'pyre_page_title_custom_text',''),(10289,10075,'pyre_page_title_custom_subheader',''),(10290,10075,'pyre_page_title_height',''),(10291,10075,'pyre_page_title_bar_bg',''),(10292,10075,'pyre_page_title_bar_bg_retina',''),(10293,10075,'pyre_page_title_bar_bg_color',''),(10294,10075,'pyre_page_title_bar_bg_full','default'),(10295,10075,'pyre_page_title_bg_parallax','default'),(10296,10075,'pyre_portfolio_content_length','default'),(10297,10075,'pyre_portfolio_text_layout','default'),(10298,10075,'pyre_show_first_featured_image','no'),(10299,10075,'pyre_header_100_width','default'),(10300,10075,'pyre_header_bg_opacity',''),(10301,10075,'pyre_footer_100_width','default'),(10302,10075,'pyre_portfolio_width_100','no'),(10303,10075,'pyre_portfolio_column_spacing',''),(10304,10075,'pyre_page_title_text_alignment','default'),(10305,10075,'pyre_page_title_text_size',''),(10306,10075,'pyre_page_title_custom_subheader_text_size',''),(10307,10075,'pyre_page_title_font_color',''),(10308,10075,'pyre_page_title_breadcrumbs_search_bar','default'),(10309,10075,'pyre_avada_rev_styles','default'),(10310,10075,'pyre_page_title_100_width','default'),(10311,10075,'pyre_sidebar_bg_color',''),(10312,10075,'pyre_page_title_mobile_height',''),(10313,10075,'pyre_page_title_bar_borders_color',''),(10314,10075,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10315,10075,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10316,10075,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10317,10075,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10318,10489,'_wp_page_template','default'),(10319,10489,'slide_template','default'),(10320,10489,'fusion_builder_status','active'),(10321,10489,'pyre_slider_position','default'),(10322,10489,'pyre_slider_type','no'),(10323,10489,'pyre_slider','0'),(10324,10489,'pyre_wooslider','0'),(10325,10489,'pyre_revslider','0'),(10326,10489,'pyre_elasticslider','0'),(10327,10489,'pyre_fallback',''),(10328,10489,'pyre_main_top_padding',''),(10329,10489,'pyre_main_bottom_padding',''),(10330,10489,'pyre_hundredp_padding',''),(10331,10489,'pyre_display_header','yes'),(10332,10489,'pyre_header_bg',''),(10333,10489,'pyre_header_bg_color',''),(10334,10489,'pyre_header_bg_full','no'),(10335,10489,'pyre_header_bg_repeat','repeat'),(10336,10489,'pyre_transparent_header','default'),(10337,10489,'pyre_displayed_menu','default'),(10338,10489,'pyre_display_footer','default'),(10339,10489,'pyre_display_copyright','default'),(10340,10489,'pyre_sidebar_position','default'),(10341,10489,'pyre_page_bg_layout','default'),(10342,10489,'pyre_page_bg',''),(10343,10489,'pyre_page_bg_color',''),(10344,10489,'pyre_page_bg_full','no'),(10345,10489,'pyre_page_bg_repeat','repeat'),(10346,10489,'pyre_wide_page_bg',''),(10347,10489,'pyre_wide_page_bg_color',''),(10348,10489,'pyre_wide_page_bg_full','no'),(10349,10489,'pyre_wide_page_bg_repeat','repeat'),(10350,10489,'pyre_portfolio_content_length','default'),(10351,10489,'pyre_portfolio_excerpt',''),(10352,10489,'pyre_portfolio_filters','yes'),(10353,10489,'pyre_portfolio_text_layout','default'),(10354,10489,'pyre_portfolio_featured_image_size','default'),(10355,10489,'pyre_page_title','default'),(10356,10489,'pyre_page_title_text','yes'),(10357,10489,'pyre_page_title_custom_text',''),(10358,10489,'pyre_page_title_custom_subheader',''),(10359,10489,'pyre_page_title_height',''),(10360,10489,'pyre_page_title_bar_bg',''),(10361,10489,'pyre_page_title_bar_bg_retina',''),(10362,10489,'pyre_page_title_bar_bg_color',''),(10363,10489,'pyre_page_title_bar_bg_full','default'),(10364,10489,'pyre_page_title_bg_parallax','default'),(10365,10489,'pyre_show_first_featured_image','no'),(10366,10489,'pyre_header_100_width','default'),(10367,10489,'pyre_header_bg_opacity',''),(10368,10489,'pyre_footer_100_width','default'),(10369,10489,'pyre_portfolio_width_100','no'),(10370,10489,'pyre_portfolio_column_spacing',''),(10371,10489,'pyre_page_title_text_alignment','default'),(10372,10489,'pyre_page_title_text_size',''),(10373,10489,'pyre_page_title_custom_subheader_text_size',''),(10374,10489,'pyre_page_title_font_color',''),(10375,10489,'pyre_page_title_breadcrumbs_search_bar','default'),(10376,10489,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10377,10489,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(10378,10489,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10379,10489,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:17:\"Home Page Sidebar\";}'),(10380,10519,'_wp_page_template','100-width.php'),(10381,10519,'slide_template','default'),(10382,10519,'fusion_builder_status','active'),(10383,10519,'pyre_slider_position','default'),(10384,10519,'pyre_slider_type','flex'),(10385,10519,'pyre_slider','0'),(10386,10519,'pyre_wooslider','shortcode'),(10387,10519,'pyre_revslider','0'),(10388,10519,'pyre_elasticslider','0'),(10389,10519,'pyre_fallback',''),(10390,10519,'pyre_main_top_padding',''),(10391,10519,'pyre_main_bottom_padding','0px'),(10392,10519,'pyre_hundredp_padding',''),(10393,10519,'pyre_display_header','yes'),(10394,10519,'pyre_header_bg',''),(10395,10519,'pyre_header_bg_color',''),(10396,10519,'pyre_header_bg_full','no'),(10397,10519,'pyre_header_bg_repeat','repeat'),(10398,10519,'pyre_transparent_header','default'),(10399,10519,'pyre_displayed_menu','default'),(10400,10519,'pyre_display_footer','default'),(10401,10519,'pyre_display_copyright','default'),(10402,10519,'pyre_sidebar_position','default'),(10403,10519,'pyre_page_bg_layout','default'),(10404,10519,'pyre_page_bg',''),(10405,10519,'pyre_page_bg_color',''),(10406,10519,'pyre_page_bg_full','no'),(10407,10519,'pyre_page_bg_repeat','repeat'),(10408,10519,'pyre_wide_page_bg',''),(10409,10519,'pyre_wide_page_bg_color',''),(10410,10519,'pyre_wide_page_bg_full','no'),(10411,10519,'pyre_wide_page_bg_repeat','repeat'),(10412,10519,'pyre_portfolio_content_length','default'),(10413,10519,'pyre_portfolio_excerpt',''),(10414,10519,'pyre_portfolio_filters','yes'),(10415,10519,'pyre_portfolio_text_layout','default'),(10416,10519,'pyre_portfolio_featured_image_size','default'),(10417,10519,'pyre_page_title','no'),(10418,10519,'pyre_page_title_text','yes'),(10419,10519,'pyre_page_title_custom_text',''),(10420,10519,'pyre_page_title_custom_subheader',''),(10421,10519,'pyre_page_title_height',''),(10422,10519,'pyre_page_title_bar_bg',''),(10423,10519,'pyre_page_title_bar_bg_retina',''),(10424,10519,'pyre_page_title_bar_bg_color',''),(10425,10519,'pyre_page_title_bar_bg_full','default'),(10426,10519,'pyre_page_title_bg_parallax','default'),(10427,10519,'pyre_avada_rev_styles','default'),(10428,10519,'pyre_show_first_featured_image','no'),(10429,10519,'pyre_header_100_width','default'),(10430,10519,'pyre_header_bg_opacity',''),(10431,10519,'pyre_footer_100_width','default'),(10432,10519,'pyre_portfolio_width_100','no'),(10433,10519,'pyre_portfolio_column_spacing',''),(10434,10519,'pyre_page_title_text_alignment','default'),(10435,10519,'pyre_page_title_100_width','default'),(10436,10519,'pyre_page_title_text_size',''),(10437,10519,'pyre_page_title_custom_subheader_text_size',''),(10438,10519,'pyre_page_title_font_color',''),(10439,10519,'pyre_page_title_breadcrumbs_search_bar','default'),(10440,10519,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10441,10519,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10442,10519,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10443,10519,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10444,10522,'_wp_page_template','100-width.php'),(10445,10522,'slide_template','default'),(10446,10522,'fusion_builder_status','active'),(10447,10522,'pyre_slider_position','default'),(10448,10522,'pyre_slider_type','flex'),(10449,10522,'pyre_slider','0'),(10450,10522,'pyre_wooslider','shortcode'),(10451,10522,'pyre_revslider','0'),(10452,10522,'pyre_elasticslider','0'),(10453,10522,'pyre_fallback',''),(10454,10522,'pyre_main_top_padding',''),(10455,10522,'pyre_main_bottom_padding','0px'),(10456,10522,'pyre_hundredp_padding',''),(10457,10522,'pyre_display_header','yes'),(10458,10522,'pyre_header_bg',''),(10459,10522,'pyre_header_bg_color',''),(10460,10522,'pyre_header_bg_full','no'),(10461,10522,'pyre_header_bg_repeat','repeat'),(10462,10522,'pyre_transparent_header','default'),(10463,10522,'pyre_displayed_menu','default'),(10464,10522,'pyre_display_footer','default'),(10465,10522,'pyre_display_copyright','default'),(10466,10522,'pyre_sidebar_position','default'),(10467,10522,'pyre_page_bg_layout','default'),(10468,10522,'pyre_page_bg',''),(10469,10522,'pyre_page_bg_color',''),(10470,10522,'pyre_page_bg_full','no'),(10471,10522,'pyre_page_bg_repeat','repeat'),(10472,10522,'pyre_wide_page_bg',''),(10473,10522,'pyre_wide_page_bg_color',''),(10474,10522,'pyre_wide_page_bg_full','no'),(10475,10522,'pyre_wide_page_bg_repeat','repeat'),(10476,10522,'pyre_portfolio_content_length','default'),(10477,10522,'pyre_portfolio_excerpt',''),(10478,10522,'pyre_portfolio_filters','yes'),(10479,10522,'pyre_portfolio_text_layout','default'),(10480,10522,'pyre_portfolio_featured_image_size','default'),(10481,10522,'pyre_page_title','no'),(10482,10522,'pyre_page_title_text','yes'),(10483,10522,'pyre_page_title_custom_text',''),(10484,10522,'pyre_page_title_custom_subheader',''),(10485,10522,'pyre_page_title_height',''),(10486,10522,'pyre_page_title_bar_bg',''),(10487,10522,'pyre_page_title_bar_bg_retina',''),(10488,10522,'pyre_page_title_bar_bg_color',''),(10489,10522,'pyre_page_title_bar_bg_full','default'),(10490,10522,'pyre_page_title_bg_parallax','default'),(10491,10522,'pyre_avada_rev_styles','default'),(10492,10522,'pyre_show_first_featured_image','no'),(10493,10522,'pyre_header_100_width','default'),(10494,10522,'pyre_header_bg_opacity',''),(10495,10522,'pyre_footer_100_width','default'),(10496,10522,'pyre_portfolio_width_100','no'),(10497,10522,'pyre_portfolio_column_spacing',''),(10498,10522,'pyre_page_title_text_alignment','default'),(10499,10522,'pyre_page_title_100_width','default'),(10500,10522,'pyre_page_title_text_size',''),(10501,10522,'pyre_page_title_custom_subheader_text_size',''),(10502,10522,'pyre_page_title_font_color',''),(10503,10522,'pyre_page_title_breadcrumbs_search_bar','default'),(10504,10522,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10505,10522,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10506,10522,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10507,10522,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10508,10526,'_wp_page_template','100-width.php'),(10509,10526,'slide_template','default'),(10510,10526,'fusion_builder_status','active'),(10511,10526,'pyre_slider_position','default'),(10512,10526,'pyre_slider_type','flex'),(10513,10526,'pyre_slider','0'),(10514,10526,'pyre_wooslider','shortcode'),(10515,10526,'pyre_revslider','0'),(10516,10526,'pyre_elasticslider','0'),(10517,10526,'pyre_fallback',''),(10518,10526,'pyre_main_top_padding',''),(10519,10526,'pyre_main_bottom_padding','0px'),(10520,10526,'pyre_hundredp_padding',''),(10521,10526,'pyre_display_header','yes'),(10522,10526,'pyre_header_bg',''),(10523,10526,'pyre_header_bg_color',''),(10524,10526,'pyre_header_bg_full','no'),(10525,10526,'pyre_header_bg_repeat','repeat'),(10526,10526,'pyre_transparent_header','default'),(10527,10526,'pyre_displayed_menu','default'),(10528,10526,'pyre_display_footer','default'),(10529,10526,'pyre_display_copyright','default'),(10530,10526,'pyre_sidebar_position','default'),(10531,10526,'pyre_page_bg_layout','default'),(10532,10526,'pyre_page_bg',''),(10533,10526,'pyre_page_bg_color',''),(10534,10526,'pyre_page_bg_full','no'),(10535,10526,'pyre_page_bg_repeat','repeat'),(10536,10526,'pyre_wide_page_bg',''),(10537,10526,'pyre_wide_page_bg_color',''),(10538,10526,'pyre_wide_page_bg_full','no'),(10539,10526,'pyre_wide_page_bg_repeat','repeat'),(10540,10526,'pyre_portfolio_content_length','default'),(10541,10526,'pyre_portfolio_excerpt',''),(10542,10526,'pyre_portfolio_filters','yes'),(10543,10526,'pyre_portfolio_text_layout','default'),(10544,10526,'pyre_portfolio_featured_image_size','default'),(10545,10526,'pyre_page_title','no'),(10546,10526,'pyre_page_title_text','yes'),(10547,10526,'pyre_page_title_custom_text',''),(10548,10526,'pyre_page_title_custom_subheader',''),(10549,10526,'pyre_page_title_height',''),(10550,10526,'pyre_page_title_bar_bg',''),(10551,10526,'pyre_page_title_bar_bg_retina',''),(10552,10526,'pyre_page_title_bar_bg_color',''),(10553,10526,'pyre_page_title_bar_bg_full','default'),(10554,10526,'pyre_page_title_bg_parallax','default'),(10555,10526,'pyre_avada_rev_styles','default'),(10556,10526,'pyre_show_first_featured_image','no'),(10557,10526,'pyre_header_100_width','default'),(10558,10526,'pyre_header_bg_opacity',''),(10559,10526,'pyre_footer_100_width','default'),(10560,10526,'pyre_portfolio_width_100','no'),(10561,10526,'pyre_portfolio_column_spacing',''),(10562,10526,'pyre_page_title_text_alignment','default'),(10563,10526,'pyre_page_title_100_width','default'),(10564,10526,'pyre_page_title_text_size',''),(10565,10526,'pyre_page_title_custom_subheader_text_size',''),(10566,10526,'pyre_page_title_font_color',''),(10567,10526,'pyre_page_title_breadcrumbs_search_bar','default'),(10568,10526,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10569,10526,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10570,10526,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10571,10526,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10572,10585,'_wp_page_template','100-width.php'),(10573,10585,'slide_template','default'),(10574,10585,'fusion_builder_status','active'),(10575,10585,'pyre_slider_position','default'),(10576,10585,'pyre_slider_type','no'),(10577,10585,'pyre_slider','0'),(10578,10585,'pyre_wooslider','0'),(10579,10585,'pyre_revslider','0'),(10580,10585,'pyre_elasticslider','0'),(10581,10585,'pyre_fallback',''),(10582,10585,'pyre_main_top_padding',''),(10583,10585,'pyre_main_bottom_padding','0px'),(10584,10585,'pyre_hundredp_padding',''),(10585,10585,'pyre_display_header','yes'),(10586,10585,'pyre_header_bg',''),(10587,10585,'pyre_header_bg_color',''),(10588,10585,'pyre_header_bg_full','no'),(10589,10585,'pyre_header_bg_repeat','repeat'),(10590,10585,'pyre_transparent_header','default'),(10591,10585,'pyre_displayed_menu','default'),(10592,10585,'pyre_display_footer','default'),(10593,10585,'pyre_display_copyright','default'),(10594,10585,'pyre_sidebar_position','default'),(10595,10585,'pyre_page_bg_layout','default'),(10596,10585,'pyre_page_bg',''),(10597,10585,'pyre_page_bg_color',''),(10598,10585,'pyre_page_bg_full','no'),(10599,10585,'pyre_page_bg_repeat','repeat'),(10600,10585,'pyre_wide_page_bg',''),(10601,10585,'pyre_wide_page_bg_color',''),(10602,10585,'pyre_wide_page_bg_full','no'),(10603,10585,'pyre_wide_page_bg_repeat','repeat'),(10604,10585,'pyre_portfolio_content_length','default'),(10605,10585,'pyre_portfolio_excerpt',''),(10606,10585,'pyre_portfolio_filters','yes'),(10607,10585,'pyre_portfolio_text_layout','default'),(10608,10585,'pyre_portfolio_featured_image_size','default'),(10609,10585,'pyre_page_title','default'),(10610,10585,'pyre_page_title_text','yes'),(10611,10585,'pyre_page_title_custom_text',''),(10612,10585,'pyre_page_title_custom_subheader',''),(10613,10585,'pyre_page_title_height',''),(10614,10585,'pyre_page_title_bar_bg',''),(10615,10585,'pyre_page_title_bar_bg_retina',''),(10616,10585,'pyre_page_title_bar_bg_color',''),(10617,10585,'pyre_page_title_bar_bg_full','default'),(10618,10585,'pyre_page_title_bg_parallax','default'),(10619,10585,'pyre_avada_rev_styles','default'),(10620,10585,'pyre_show_first_featured_image','no'),(10621,10585,'pyre_header_100_width','default'),(10622,10585,'pyre_header_bg_opacity',''),(10623,10585,'pyre_footer_100_width','default'),(10624,10585,'pyre_portfolio_width_100','no'),(10625,10585,'pyre_portfolio_column_spacing',''),(10626,10585,'pyre_page_title_text_alignment','default'),(10627,10585,'pyre_page_title_100_width','default'),(10628,10585,'pyre_page_title_text_size',''),(10629,10585,'pyre_page_title_custom_subheader_text_size',''),(10630,10585,'pyre_page_title_font_color',''),(10631,10585,'pyre_page_title_breadcrumbs_search_bar','default'),(10632,10585,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10633,10585,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10634,10585,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10635,10585,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10636,10589,'_wp_page_template','100-width.php'),(10637,10589,'slide_template','default'),(10638,10589,'fusion_builder_status','active'),(10639,10589,'pyre_slider_position','default'),(10640,10589,'pyre_slider_type','flex'),(10641,10589,'pyre_slider','0'),(10642,10589,'pyre_wooslider','shortcode'),(10643,10589,'pyre_revslider','0'),(10644,10589,'pyre_elasticslider','0'),(10645,10589,'pyre_fallback',''),(10646,10589,'pyre_main_top_padding',''),(10647,10589,'pyre_main_bottom_padding','0px'),(10648,10589,'pyre_hundredp_padding',''),(10649,10589,'pyre_display_header','yes'),(10650,10589,'pyre_header_bg',''),(10651,10589,'pyre_header_bg_color',''),(10652,10589,'pyre_header_bg_full','no'),(10653,10589,'pyre_header_bg_repeat','repeat'),(10654,10589,'pyre_transparent_header','default'),(10655,10589,'pyre_displayed_menu','default'),(10656,10589,'pyre_display_footer','default'),(10657,10589,'pyre_display_copyright','default'),(10658,10589,'pyre_sidebar_position','default'),(10659,10589,'pyre_page_bg_layout','default'),(10660,10589,'pyre_page_bg',''),(10661,10589,'pyre_page_bg_color',''),(10662,10589,'pyre_page_bg_full','no'),(10663,10589,'pyre_page_bg_repeat','repeat'),(10664,10589,'pyre_wide_page_bg',''),(10665,10589,'pyre_wide_page_bg_color',''),(10666,10589,'pyre_wide_page_bg_full','no'),(10667,10589,'pyre_wide_page_bg_repeat','repeat'),(10668,10589,'pyre_portfolio_content_length','default'),(10669,10589,'pyre_portfolio_excerpt',''),(10670,10589,'pyre_portfolio_filters','yes'),(10671,10589,'pyre_portfolio_text_layout','default'),(10672,10589,'pyre_portfolio_featured_image_size','default'),(10673,10589,'pyre_page_title','no'),(10674,10589,'pyre_page_title_text','yes'),(10675,10589,'pyre_page_title_custom_text',''),(10676,10589,'pyre_page_title_custom_subheader',''),(10677,10589,'pyre_page_title_height',''),(10678,10589,'pyre_page_title_bar_bg',''),(10679,10589,'pyre_page_title_bar_bg_retina',''),(10680,10589,'pyre_page_title_bar_bg_color',''),(10681,10589,'pyre_page_title_bar_bg_full','default'),(10682,10589,'pyre_page_title_bg_parallax','default'),(10683,10589,'pyre_show_first_featured_image','no'),(10684,10589,'pyre_header_100_width','default'),(10685,10589,'pyre_header_bg_opacity',''),(10686,10589,'pyre_footer_100_width','default'),(10687,10589,'pyre_portfolio_width_100','no'),(10688,10589,'pyre_portfolio_column_spacing',''),(10689,10589,'pyre_page_title_text_alignment','default'),(10690,10589,'pyre_page_title_text_size',''),(10691,10589,'pyre_page_title_custom_subheader_text_size',''),(10692,10589,'pyre_page_title_font_color',''),(10693,10589,'pyre_page_title_breadcrumbs_search_bar','default'),(10694,10589,'pyre_avada_rev_styles','default'),(10695,10589,'pyre_page_title_100_width','default'),(10696,10589,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10697,10589,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10698,10589,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10699,10589,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10700,10595,'_wp_page_template','100-width.php'),(10701,10595,'slide_template','default'),(10702,10595,'fusion_builder_status','active'),(10703,10595,'pyre_slider_position','default'),(10704,10595,'pyre_slider_type','flex'),(10705,10595,'pyre_slider','0'),(10706,10595,'pyre_wooslider','shortcode'),(10707,10595,'pyre_revslider','0'),(10708,10595,'pyre_elasticslider','0'),(10709,10595,'pyre_fallback',''),(10710,10595,'pyre_main_top_padding',''),(10711,10595,'pyre_main_bottom_padding','0px'),(10712,10595,'pyre_hundredp_padding',''),(10713,10595,'pyre_display_header','yes'),(10714,10595,'pyre_header_bg',''),(10715,10595,'pyre_header_bg_color',''),(10716,10595,'pyre_header_bg_full','no'),(10717,10595,'pyre_header_bg_repeat','repeat'),(10718,10595,'pyre_transparent_header','default'),(10719,10595,'pyre_displayed_menu','default'),(10720,10595,'pyre_display_footer','default'),(10721,10595,'pyre_display_copyright','default'),(10722,10595,'pyre_sidebar_position','default'),(10723,10595,'pyre_page_bg_layout','default'),(10724,10595,'pyre_page_bg',''),(10725,10595,'pyre_page_bg_color',''),(10726,10595,'pyre_page_bg_full','no'),(10727,10595,'pyre_page_bg_repeat','repeat'),(10728,10595,'pyre_wide_page_bg',''),(10729,10595,'pyre_wide_page_bg_color',''),(10730,10595,'pyre_wide_page_bg_full','no'),(10731,10595,'pyre_wide_page_bg_repeat','repeat'),(10732,10595,'pyre_portfolio_content_length','default'),(10733,10595,'pyre_portfolio_excerpt',''),(10734,10595,'pyre_portfolio_filters','yes'),(10735,10595,'pyre_portfolio_text_layout','default'),(10736,10595,'pyre_portfolio_featured_image_size','default'),(10737,10595,'pyre_page_title','no'),(10738,10595,'pyre_page_title_text','yes'),(10739,10595,'pyre_page_title_custom_text',''),(10740,10595,'pyre_page_title_custom_subheader',''),(10741,10595,'pyre_page_title_height',''),(10742,10595,'pyre_page_title_bar_bg',''),(10743,10595,'pyre_page_title_bar_bg_retina',''),(10744,10595,'pyre_page_title_bar_bg_color',''),(10745,10595,'pyre_page_title_bar_bg_full','default'),(10746,10595,'pyre_page_title_bg_parallax','default'),(10747,10595,'pyre_show_first_featured_image','no'),(10748,10595,'pyre_header_100_width','default'),(10749,10595,'pyre_header_bg_opacity',''),(10750,10595,'pyre_footer_100_width','default'),(10751,10595,'pyre_portfolio_width_100','no'),(10752,10595,'pyre_portfolio_column_spacing',''),(10753,10595,'pyre_page_title_text_alignment','default'),(10754,10595,'pyre_page_title_text_size',''),(10755,10595,'pyre_page_title_custom_subheader_text_size',''),(10756,10595,'pyre_page_title_font_color',''),(10757,10595,'pyre_page_title_breadcrumbs_search_bar','default'),(10758,10595,'pyre_avada_rev_styles','default'),(10759,10595,'pyre_page_title_100_width','default'),(10760,10595,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10761,10595,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10762,10595,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10763,10595,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10764,10598,'_wp_page_template','100-width.php'),(10765,10598,'slide_template','default'),(10766,10598,'fusion_builder_status','active'),(10767,10598,'pyre_slider_position','default'),(10768,10598,'pyre_slider_type','flex'),(10769,10598,'pyre_slider','0'),(10770,10598,'pyre_wooslider','shortcode'),(10771,10598,'pyre_revslider','0'),(10772,10598,'pyre_elasticslider','0'),(10773,10598,'pyre_fallback',''),(10774,10598,'pyre_main_top_padding',''),(10775,10598,'pyre_main_bottom_padding','0px'),(10776,10598,'pyre_hundredp_padding',''),(10777,10598,'pyre_display_header','yes'),(10778,10598,'pyre_header_bg',''),(10779,10598,'pyre_header_bg_color',''),(10780,10598,'pyre_header_bg_full','no'),(10781,10598,'pyre_header_bg_repeat','repeat'),(10782,10598,'pyre_transparent_header','default'),(10783,10598,'pyre_displayed_menu','default'),(10784,10598,'pyre_display_footer','default'),(10785,10598,'pyre_display_copyright','default'),(10786,10598,'pyre_sidebar_position','default'),(10787,10598,'pyre_page_bg_layout','default'),(10788,10598,'pyre_page_bg',''),(10789,10598,'pyre_page_bg_color',''),(10790,10598,'pyre_page_bg_full','no'),(10791,10598,'pyre_page_bg_repeat','repeat'),(10792,10598,'pyre_wide_page_bg',''),(10793,10598,'pyre_wide_page_bg_color',''),(10794,10598,'pyre_wide_page_bg_full','no'),(10795,10598,'pyre_wide_page_bg_repeat','repeat'),(10796,10598,'pyre_portfolio_content_length','default'),(10797,10598,'pyre_portfolio_excerpt',''),(10798,10598,'pyre_portfolio_filters','yes'),(10799,10598,'pyre_portfolio_text_layout','default'),(10800,10598,'pyre_portfolio_featured_image_size','default'),(10801,10598,'pyre_page_title','no'),(10802,10598,'pyre_page_title_text','yes'),(10803,10598,'pyre_page_title_custom_text',''),(10804,10598,'pyre_page_title_custom_subheader',''),(10805,10598,'pyre_page_title_height',''),(10806,10598,'pyre_page_title_bar_bg',''),(10807,10598,'pyre_page_title_bar_bg_retina',''),(10808,10598,'pyre_page_title_bar_bg_color',''),(10809,10598,'pyre_page_title_bar_bg_full','default'),(10810,10598,'pyre_page_title_bg_parallax','default'),(10811,10598,'pyre_show_first_featured_image','no'),(10812,10598,'pyre_header_100_width','default'),(10813,10598,'pyre_header_bg_opacity',''),(10814,10598,'pyre_footer_100_width','default'),(10815,10598,'pyre_portfolio_width_100','no'),(10816,10598,'pyre_portfolio_column_spacing',''),(10817,10598,'pyre_page_title_text_alignment','default'),(10818,10598,'pyre_page_title_text_size',''),(10819,10598,'pyre_page_title_custom_subheader_text_size',''),(10820,10598,'pyre_page_title_font_color',''),(10821,10598,'pyre_page_title_breadcrumbs_search_bar','default'),(10822,10598,'pyre_avada_rev_styles','default'),(10823,10598,'pyre_page_title_100_width','default'),(10824,10598,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:10940;s:16:\"restored_by_user\";i:3;s:13:\"restored_time\";i:1421393901;}'),(10825,10598,'fusion_builder_content',''),(10826,10598,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10827,10598,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10828,10598,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10829,10598,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10830,10602,'_wp_page_template','100-width.php'),(10831,10602,'slide_template','default'),(10832,10602,'fusion_builder_status','active'),(10833,10602,'pyre_slider_position','default'),(10834,10602,'pyre_slider_type','flex'),(10835,10602,'pyre_slider','0'),(10836,10602,'pyre_wooslider','shortcode'),(10837,10602,'pyre_revslider','0'),(10838,10602,'pyre_elasticslider','0'),(10839,10602,'pyre_fallback',''),(10840,10602,'pyre_main_top_padding',''),(10841,10602,'pyre_main_bottom_padding','0px'),(10842,10602,'pyre_hundredp_padding',''),(10843,10602,'pyre_display_header','yes'),(10844,10602,'pyre_header_bg',''),(10845,10602,'pyre_header_bg_color',''),(10846,10602,'pyre_header_bg_full','no'),(10847,10602,'pyre_header_bg_repeat','repeat'),(10848,10602,'pyre_transparent_header','default'),(10849,10602,'pyre_displayed_menu','default'),(10850,10602,'pyre_display_footer','default'),(10851,10602,'pyre_display_copyright','default'),(10852,10602,'pyre_sidebar_position','default'),(10853,10602,'pyre_page_bg_layout','default'),(10854,10602,'pyre_page_bg',''),(10855,10602,'pyre_page_bg_color',''),(10856,10602,'pyre_page_bg_full','no'),(10857,10602,'pyre_page_bg_repeat','repeat'),(10858,10602,'pyre_wide_page_bg',''),(10859,10602,'pyre_wide_page_bg_color',''),(10860,10602,'pyre_wide_page_bg_full','no'),(10861,10602,'pyre_wide_page_bg_repeat','repeat'),(10862,10602,'pyre_portfolio_content_length','default'),(10863,10602,'pyre_portfolio_excerpt',''),(10864,10602,'pyre_portfolio_filters','yes'),(10865,10602,'pyre_portfolio_text_layout','default'),(10866,10602,'pyre_portfolio_featured_image_size','default'),(10867,10602,'pyre_page_title','no'),(10868,10602,'pyre_page_title_text','yes'),(10869,10602,'pyre_page_title_custom_text',''),(10870,10602,'pyre_page_title_custom_subheader',''),(10871,10602,'pyre_page_title_height',''),(10872,10602,'pyre_page_title_bar_bg',''),(10873,10602,'pyre_page_title_bar_bg_retina',''),(10874,10602,'pyre_page_title_bar_bg_color',''),(10875,10602,'pyre_page_title_bar_bg_full','default'),(10876,10602,'pyre_page_title_bg_parallax','default'),(10877,10602,'pyre_avada_rev_styles','default'),(10878,10602,'pyre_show_first_featured_image','no'),(10879,10602,'pyre_header_100_width','default'),(10880,10602,'pyre_header_bg_opacity',''),(10881,10602,'pyre_footer_100_width','default'),(10882,10602,'pyre_portfolio_width_100','no'),(10883,10602,'pyre_portfolio_column_spacing',''),(10884,10602,'pyre_page_title_text_alignment','default'),(10885,10602,'pyre_page_title_100_width','default'),(10886,10602,'pyre_page_title_text_size',''),(10887,10602,'pyre_page_title_custom_subheader_text_size',''),(10888,10602,'pyre_page_title_font_color',''),(10889,10602,'pyre_page_title_breadcrumbs_search_bar','default'),(10890,10602,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10891,10602,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10892,10602,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10893,10602,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10894,10643,'_wp_page_template','100-width.php'),(10895,10643,'slide_template','default'),(10896,10643,'fusion_builder_status','active'),(10897,10643,'pyre_slider_position','default'),(10898,10643,'pyre_slider_type','no'),(10899,10643,'pyre_slider','0'),(10900,10643,'pyre_wooslider','0'),(10901,10643,'pyre_revslider','0'),(10902,10643,'pyre_elasticslider','0'),(10903,10643,'pyre_fallback',''),(10904,10643,'pyre_main_top_padding','0px'),(10905,10643,'pyre_main_bottom_padding',''),(10906,10643,'pyre_hundredp_padding','0px'),(10907,10643,'pyre_display_header','yes'),(10908,10643,'pyre_header_bg',''),(10909,10643,'pyre_header_bg_color',''),(10910,10643,'pyre_header_bg_full','no'),(10911,10643,'pyre_header_bg_repeat','repeat'),(10912,10643,'pyre_transparent_header','default'),(10913,10643,'pyre_displayed_menu','default'),(10914,10643,'pyre_display_footer','default'),(10915,10643,'pyre_display_copyright','default'),(10916,10643,'pyre_sidebar_position','default'),(10917,10643,'pyre_page_bg_layout','default'),(10918,10643,'pyre_page_bg',''),(10919,10643,'pyre_page_bg_color',''),(10920,10643,'pyre_page_bg_full','no'),(10921,10643,'pyre_page_bg_repeat','repeat'),(10922,10643,'pyre_wide_page_bg',''),(10923,10643,'pyre_wide_page_bg_color',''),(10924,10643,'pyre_wide_page_bg_full','no'),(10925,10643,'pyre_wide_page_bg_repeat','repeat'),(10926,10643,'pyre_portfolio_content_length','default'),(10927,10643,'pyre_portfolio_excerpt',''),(10928,10643,'pyre_portfolio_filters','yes'),(10929,10643,'pyre_portfolio_text_layout','default'),(10930,10643,'pyre_portfolio_featured_image_size','default'),(10931,10643,'pyre_page_title','no'),(10932,10643,'pyre_page_title_text','yes'),(10933,10643,'pyre_page_title_custom_text',''),(10934,10643,'pyre_page_title_custom_subheader',''),(10935,10643,'pyre_page_title_height',''),(10936,10643,'pyre_page_title_bar_bg',''),(10937,10643,'pyre_page_title_bar_bg_retina',''),(10938,10643,'pyre_page_title_bar_bg_color',''),(10939,10643,'pyre_page_title_bar_bg_full','default'),(10940,10643,'pyre_page_title_bg_parallax','default'),(10941,10643,'pyre_show_first_featured_image','no'),(10942,10643,'pyre_header_100_width','default'),(10943,10643,'pyre_header_bg_opacity',''),(10944,10643,'pyre_footer_100_width','default'),(10945,10643,'pyre_portfolio_width_100','no'),(10946,10643,'pyre_portfolio_column_spacing',''),(10947,10643,'pyre_page_title_text_alignment','default'),(10948,10643,'pyre_page_title_text_size',''),(10949,10643,'pyre_page_title_custom_subheader_text_size',''),(10950,10643,'pyre_page_title_font_color',''),(10951,10643,'pyre_page_title_breadcrumbs_search_bar','default'),(10952,10643,'pyre_avada_rev_styles','default'),(10953,10643,'pyre_sidebar_bg_color',''),(10954,10643,'pyre_page_title_100_width','default'),(10955,10643,'pyre_page_title_mobile_height',''),(10956,10643,'pyre_page_title_bar_borders_color',''),(10957,10643,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(10958,10643,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(10959,10643,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(10960,10643,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(10961,10646,'_wp_page_template','100-width.php'),(10962,10646,'slide_template','default'),(10963,10646,'fusion_builder_status','active'),(10964,10646,'pyre_slider_position','default'),(10965,10646,'pyre_slider_type','no'),(10966,10646,'pyre_slider','0'),(10967,10646,'pyre_wooslider','0'),(10968,10646,'pyre_revslider','0'),(10969,10646,'pyre_elasticslider','0'),(10970,10646,'pyre_fallback',''),(10971,10646,'pyre_main_top_padding','0px'),(10972,10646,'pyre_main_bottom_padding',''),(10973,10646,'pyre_hundredp_padding','0px'),(10974,10646,'pyre_display_header','yes'),(10975,10646,'pyre_header_bg',''),(10976,10646,'pyre_header_bg_color',''),(10977,10646,'pyre_header_bg_full','no'),(10978,10646,'pyre_header_bg_repeat','repeat'),(10979,10646,'pyre_transparent_header','default'),(10980,10646,'pyre_displayed_menu','default'),(10981,10646,'pyre_display_footer','default'),(10982,10646,'pyre_display_copyright','default'),(10983,10646,'pyre_sidebar_position','default'),(10984,10646,'pyre_page_bg_layout','default'),(10985,10646,'pyre_page_bg',''),(10986,10646,'pyre_page_bg_color',''),(10987,10646,'pyre_page_bg_full','no'),(10988,10646,'pyre_page_bg_repeat','repeat'),(10989,10646,'pyre_wide_page_bg',''),(10990,10646,'pyre_wide_page_bg_color',''),(10991,10646,'pyre_wide_page_bg_full','no'),(10992,10646,'pyre_wide_page_bg_repeat','repeat'),(10993,10646,'pyre_portfolio_content_length','default'),(10994,10646,'pyre_portfolio_excerpt',''),(10995,10646,'pyre_portfolio_filters','yes'),(10996,10646,'pyre_portfolio_text_layout','default'),(10997,10646,'pyre_portfolio_featured_image_size','default'),(10998,10646,'pyre_page_title','no'),(10999,10646,'pyre_page_title_text','yes'),(11000,10646,'pyre_page_title_custom_text',''),(11001,10646,'pyre_page_title_custom_subheader',''),(11002,10646,'pyre_page_title_height',''),(11003,10646,'pyre_page_title_bar_bg',''),(11004,10646,'pyre_page_title_bar_bg_retina',''),(11005,10646,'pyre_page_title_bar_bg_color',''),(11006,10646,'pyre_page_title_bar_bg_full','default'),(11007,10646,'pyre_page_title_bg_parallax','default'),(11008,10646,'pyre_show_first_featured_image','no'),(11009,10646,'pyre_header_100_width','default'),(11010,10646,'pyre_header_bg_opacity',''),(11011,10646,'pyre_footer_100_width','default'),(11012,10646,'pyre_portfolio_width_100','no'),(11013,10646,'pyre_portfolio_column_spacing',''),(11014,10646,'pyre_page_title_text_alignment','default'),(11015,10646,'pyre_page_title_text_size',''),(11016,10646,'pyre_page_title_custom_subheader_text_size',''),(11017,10646,'pyre_page_title_font_color',''),(11018,10646,'pyre_page_title_breadcrumbs_search_bar','default'),(11019,10646,'pyre_avada_rev_styles','default'),(11020,10646,'pyre_sidebar_bg_color',''),(11021,10646,'pyre_page_title_100_width','default'),(11022,10646,'pyre_page_title_mobile_height',''),(11023,10646,'pyre_page_title_bar_borders_color',''),(11024,10646,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11025,10646,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11026,10646,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11027,10646,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11028,10709,'_wp_page_template','100-width.php'),(11029,10709,'slide_template','default'),(11030,10709,'fusion_builder_status','active'),(11031,10709,'pyre_slider_position','default'),(11032,10709,'pyre_slider_type','no'),(11033,10709,'pyre_slider','0'),(11034,10709,'pyre_wooslider','0'),(11035,10709,'pyre_revslider','0'),(11036,10709,'pyre_elasticslider','0'),(11037,10709,'pyre_fallback',''),(11038,10709,'pyre_main_top_padding','0px'),(11039,10709,'pyre_main_bottom_padding','0px'),(11040,10709,'pyre_hundredp_padding',''),(11041,10709,'pyre_display_header','yes'),(11042,10709,'pyre_header_bg',''),(11043,10709,'pyre_header_bg_color',''),(11044,10709,'pyre_header_bg_full','no'),(11045,10709,'pyre_header_bg_repeat','repeat'),(11046,10709,'pyre_transparent_header','default'),(11047,10709,'pyre_displayed_menu','default'),(11048,10709,'pyre_display_footer','default'),(11049,10709,'pyre_display_copyright','default'),(11050,10709,'pyre_sidebar_position','default'),(11051,10709,'pyre_page_bg_layout','default'),(11052,10709,'pyre_page_bg',''),(11053,10709,'pyre_page_bg_color',''),(11054,10709,'pyre_page_bg_full','no'),(11055,10709,'pyre_page_bg_repeat','repeat'),(11056,10709,'pyre_wide_page_bg',''),(11057,10709,'pyre_wide_page_bg_color',''),(11058,10709,'pyre_wide_page_bg_full','no'),(11059,10709,'pyre_wide_page_bg_repeat','repeat'),(11060,10709,'pyre_portfolio_content_length','default'),(11061,10709,'pyre_portfolio_excerpt',''),(11062,10709,'pyre_portfolio_filters','yes'),(11063,10709,'pyre_portfolio_text_layout','default'),(11064,10709,'pyre_portfolio_featured_image_size','default'),(11065,10709,'pyre_page_title','no'),(11066,10709,'pyre_page_title_text','yes'),(11067,10709,'pyre_page_title_custom_text',''),(11068,10709,'pyre_page_title_custom_subheader',''),(11069,10709,'pyre_page_title_height',''),(11070,10709,'pyre_page_title_bar_bg',''),(11071,10709,'pyre_page_title_bar_bg_retina',''),(11072,10709,'pyre_page_title_bar_bg_color',''),(11073,10709,'pyre_page_title_bar_bg_full','default'),(11074,10709,'pyre_page_title_bg_parallax','default'),(11075,10709,'pyre_show_first_featured_image','no'),(11076,10709,'pyre_header_100_width','default'),(11077,10709,'pyre_header_bg_opacity',''),(11078,10709,'pyre_footer_100_width','default'),(11079,10709,'pyre_portfolio_width_100','no'),(11080,10709,'pyre_portfolio_column_spacing',''),(11081,10709,'pyre_page_title_text_alignment','default'),(11082,10709,'pyre_page_title_text_size',''),(11083,10709,'pyre_page_title_custom_subheader_text_size',''),(11084,10709,'pyre_page_title_font_color',''),(11085,10709,'pyre_page_title_breadcrumbs_search_bar','default'),(11086,10709,'pyre_avada_rev_styles','default'),(11087,10709,'pyre_sidebar_bg_color',''),(11088,10709,'pyre_page_title_100_width','default'),(11089,10709,'pyre_page_title_mobile_height',''),(11090,10709,'pyre_page_title_bar_borders_color',''),(11091,10709,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11092,10709,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11093,10709,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11094,10709,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11095,10813,'_wp_page_template','default'),(11096,10813,'slide_template','default'),(11097,10813,'fusion_builder_status','active'),(11098,10813,'pyre_slider_position','default'),(11099,10813,'pyre_slider_type','no'),(11100,10813,'pyre_slider','0'),(11101,10813,'pyre_wooslider','0'),(11102,10813,'pyre_revslider','0'),(11103,10813,'pyre_elasticslider','0'),(11104,10813,'pyre_fallback',''),(11105,10813,'pyre_main_top_padding',''),(11106,10813,'pyre_main_bottom_padding',''),(11107,10813,'pyre_hundredp_padding',''),(11108,10813,'pyre_show_first_featured_image','no'),(11109,10813,'pyre_display_header','yes'),(11110,10813,'pyre_header_100_width','default'),(11111,10813,'pyre_header_bg',''),(11112,10813,'pyre_header_bg_color',''),(11113,10813,'pyre_header_bg_opacity',''),(11114,10813,'pyre_header_bg_full','no'),(11115,10813,'pyre_header_bg_repeat','repeat'),(11116,10813,'pyre_displayed_menu','default'),(11117,10813,'pyre_display_footer','default'),(11118,10813,'pyre_display_copyright','default'),(11119,10813,'pyre_footer_100_width','default'),(11120,10813,'pyre_sidebar_position','default'),(11121,10813,'pyre_page_bg_layout','default'),(11122,10813,'pyre_page_bg',''),(11123,10813,'pyre_page_bg_color',''),(11124,10813,'pyre_page_bg_full','no'),(11125,10813,'pyre_page_bg_repeat','repeat'),(11126,10813,'pyre_wide_page_bg',''),(11127,10813,'pyre_wide_page_bg_color',''),(11128,10813,'pyre_wide_page_bg_full','no'),(11129,10813,'pyre_wide_page_bg_repeat','repeat'),(11130,10813,'pyre_portfolio_width_100','no'),(11131,10813,'pyre_portfolio_content_length','default'),(11132,10813,'pyre_portfolio_excerpt',''),(11133,10813,'pyre_portfolio_filters','yes'),(11134,10813,'pyre_portfolio_text_layout','default'),(11135,10813,'pyre_portfolio_featured_image_size','default'),(11136,10813,'pyre_portfolio_column_spacing',''),(11137,10813,'pyre_page_title','default'),(11138,10813,'pyre_page_title_text','yes'),(11139,10813,'pyre_page_title_text_alignment','default'),(11140,10813,'pyre_page_title_custom_text',''),(11141,10813,'pyre_page_title_text_size',''),(11142,10813,'pyre_page_title_custom_subheader',''),(11143,10813,'pyre_page_title_custom_subheader_text_size',''),(11144,10813,'pyre_page_title_font_color',''),(11145,10813,'pyre_page_title_height',''),(11146,10813,'pyre_page_title_bar_bg',''),(11147,10813,'pyre_page_title_bar_bg_retina',''),(11148,10813,'pyre_page_title_bar_bg_color',''),(11149,10813,'pyre_page_title_bar_bg_full','default'),(11150,10813,'pyre_page_title_bg_parallax','default'),(11151,10813,'pyre_page_title_breadcrumbs_search_bar','default'),(11152,10813,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11153,10813,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11154,10813,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11155,10813,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11156,11034,'_wp_page_template','100-width.php'),(11157,11034,'slide_template','default'),(11158,11034,'fusion_builder_status','active'),(11159,11034,'pyre_slider_position','default'),(11160,11034,'pyre_slider_type','flex'),(11161,11034,'pyre_slider','0'),(11162,11034,'pyre_wooslider','shortcode'),(11163,11034,'pyre_revslider','0'),(11164,11034,'pyre_elasticslider','0'),(11165,11034,'pyre_fallback',''),(11166,11034,'pyre_avada_rev_styles','default'),(11167,11034,'pyre_main_top_padding',''),(11168,11034,'pyre_main_bottom_padding','0px'),(11169,11034,'pyre_hundredp_padding',''),(11170,11034,'pyre_show_first_featured_image','no'),(11171,11034,'pyre_display_header','yes'),(11172,11034,'pyre_header_100_width','default'),(11173,11034,'pyre_header_bg',''),(11174,11034,'pyre_header_bg_color',''),(11175,11034,'pyre_header_bg_opacity',''),(11176,11034,'pyre_header_bg_full','no'),(11177,11034,'pyre_header_bg_repeat','repeat'),(11178,11034,'pyre_displayed_menu','default'),(11179,11034,'pyre_display_footer','default'),(11180,11034,'pyre_display_copyright','default'),(11181,11034,'pyre_footer_100_width','default'),(11182,11034,'pyre_sidebar_position','default'),(11183,11034,'pyre_page_bg_layout','default'),(11184,11034,'pyre_page_bg',''),(11185,11034,'pyre_page_bg_color',''),(11186,11034,'pyre_page_bg_full','no'),(11187,11034,'pyre_page_bg_repeat','repeat'),(11188,11034,'pyre_wide_page_bg',''),(11189,11034,'pyre_wide_page_bg_color',''),(11190,11034,'pyre_wide_page_bg_full','no'),(11191,11034,'pyre_wide_page_bg_repeat','repeat'),(11192,11034,'pyre_portfolio_width_100','no'),(11193,11034,'pyre_portfolio_content_length','default'),(11194,11034,'pyre_portfolio_excerpt',''),(11195,11034,'pyre_portfolio_filters','yes'),(11196,11034,'pyre_portfolio_text_layout','default'),(11197,11034,'pyre_portfolio_featured_image_size','default'),(11198,11034,'pyre_portfolio_column_spacing',''),(11199,11034,'pyre_page_title','no'),(11200,11034,'pyre_page_title_text','yes'),(11201,11034,'pyre_page_title_text_alignment','default'),(11202,11034,'pyre_page_title_custom_text',''),(11203,11034,'pyre_page_title_100_width','default'),(11204,11034,'pyre_page_title_text_size',''),(11205,11034,'pyre_page_title_custom_subheader',''),(11206,11034,'pyre_page_title_custom_subheader_text_size',''),(11207,11034,'pyre_page_title_font_color',''),(11208,11034,'pyre_page_title_height',''),(11209,11034,'pyre_page_title_bar_bg',''),(11210,11034,'pyre_page_title_bar_bg_retina',''),(11211,11034,'pyre_page_title_bar_bg_color',''),(11212,11034,'pyre_page_title_bar_bg_full','default'),(11213,11034,'pyre_page_title_bg_parallax','default'),(11214,11034,'pyre_page_title_breadcrumbs_search_bar','default'),(11215,11034,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11216,11034,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11217,11034,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11218,11034,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11219,11177,'_wp_page_template','100-width.php'),(11220,11177,'slide_template','default'),(11221,11177,'fusion_builder_status','active'),(11222,11177,'pyre_slider_position','default'),(11223,11177,'pyre_slider_type','flex'),(11224,11177,'pyre_slider','0'),(11225,11177,'pyre_wooslider','shortcode'),(11226,11177,'pyre_revslider','0'),(11227,11177,'pyre_elasticslider','0'),(11228,11177,'pyre_fallback',''),(11229,11177,'pyre_avada_rev_styles','default'),(11230,11177,'pyre_main_top_padding',''),(11231,11177,'pyre_main_bottom_padding','0px'),(11232,11177,'pyre_hundredp_padding',''),(11233,11177,'pyre_show_first_featured_image','no'),(11234,11177,'pyre_display_header','yes'),(11235,11177,'pyre_header_100_width','default'),(11236,11177,'pyre_header_bg',''),(11237,11177,'pyre_header_bg_color',''),(11238,11177,'pyre_header_bg_opacity',''),(11239,11177,'pyre_header_bg_full','no'),(11240,11177,'pyre_header_bg_repeat','repeat'),(11241,11177,'pyre_displayed_menu','default'),(11242,11177,'pyre_display_footer','default'),(11243,11177,'pyre_display_copyright','default'),(11244,11177,'pyre_footer_100_width','default'),(11245,11177,'pyre_sidebar_position','default'),(11246,11177,'pyre_page_bg_layout','default'),(11247,11177,'pyre_page_bg',''),(11248,11177,'pyre_page_bg_color',''),(11249,11177,'pyre_page_bg_full','no'),(11250,11177,'pyre_page_bg_repeat','repeat'),(11251,11177,'pyre_wide_page_bg',''),(11252,11177,'pyre_wide_page_bg_color',''),(11253,11177,'pyre_wide_page_bg_full','no'),(11254,11177,'pyre_wide_page_bg_repeat','repeat'),(11255,11177,'pyre_portfolio_width_100','no'),(11256,11177,'pyre_portfolio_content_length','default'),(11257,11177,'pyre_portfolio_excerpt',''),(11258,11177,'pyre_portfolio_filters','yes'),(11259,11177,'pyre_portfolio_text_layout','default'),(11260,11177,'pyre_portfolio_featured_image_size','default'),(11261,11177,'pyre_portfolio_column_spacing',''),(11262,11177,'pyre_page_title','no'),(11263,11177,'pyre_page_title_text','yes'),(11264,11177,'pyre_page_title_text_alignment','default'),(11265,11177,'pyre_page_title_custom_text',''),(11266,11177,'pyre_page_title_100_width','default'),(11267,11177,'pyre_page_title_text_size',''),(11268,11177,'pyre_page_title_custom_subheader',''),(11269,11177,'pyre_page_title_custom_subheader_text_size',''),(11270,11177,'pyre_page_title_font_color',''),(11271,11177,'pyre_page_title_height',''),(11272,11177,'pyre_page_title_bar_bg',''),(11273,11177,'pyre_page_title_bar_bg_retina',''),(11274,11177,'pyre_page_title_bar_bg_color',''),(11275,11177,'pyre_page_title_bar_bg_full','default'),(11276,11177,'pyre_page_title_bg_parallax','default'),(11277,11177,'pyre_page_title_breadcrumbs_search_bar','default'),(11278,11177,'pyre_sidebar_bg_color',''),(11279,11177,'pyre_page_title_mobile_height',''),(11280,11177,'pyre_page_title_bar_borders_color',''),(11281,11177,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11282,11177,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11283,11177,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11284,11177,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11285,11188,'_wp_page_template','100-width.php'),(11286,11188,'slide_template','default'),(11287,11188,'fusion_builder_status','active'),(11288,11188,'pyre_slider_position','default'),(11289,11188,'pyre_slider_type','flex'),(11290,11188,'pyre_slider','0'),(11291,11188,'pyre_wooslider','shortcode'),(11292,11188,'pyre_revslider','0'),(11293,11188,'pyre_elasticslider','0'),(11294,11188,'pyre_fallback',''),(11295,11188,'pyre_avada_rev_styles','default'),(11296,11188,'pyre_main_top_padding',''),(11297,11188,'pyre_main_bottom_padding','0px'),(11298,11188,'pyre_hundredp_padding',''),(11299,11188,'pyre_show_first_featured_image','no'),(11300,11188,'pyre_display_header','yes'),(11301,11188,'pyre_header_100_width','default'),(11302,11188,'pyre_header_bg',''),(11303,11188,'pyre_header_bg_color',''),(11304,11188,'pyre_header_bg_opacity',''),(11305,11188,'pyre_header_bg_full','no'),(11306,11188,'pyre_header_bg_repeat','repeat'),(11307,11188,'pyre_displayed_menu','default'),(11308,11188,'pyre_display_footer','default'),(11309,11188,'pyre_display_copyright','default'),(11310,11188,'pyre_footer_100_width','default'),(11311,11188,'pyre_sidebar_position','default'),(11312,11188,'pyre_page_bg_layout','default'),(11313,11188,'pyre_page_bg',''),(11314,11188,'pyre_page_bg_color',''),(11315,11188,'pyre_page_bg_full','no'),(11316,11188,'pyre_page_bg_repeat','repeat'),(11317,11188,'pyre_wide_page_bg',''),(11318,11188,'pyre_wide_page_bg_color',''),(11319,11188,'pyre_wide_page_bg_full','no'),(11320,11188,'pyre_wide_page_bg_repeat','repeat'),(11321,11188,'pyre_portfolio_width_100','no'),(11322,11188,'pyre_portfolio_content_length','default'),(11323,11188,'pyre_portfolio_excerpt',''),(11324,11188,'pyre_portfolio_filters','yes'),(11325,11188,'pyre_portfolio_text_layout','default'),(11326,11188,'pyre_portfolio_featured_image_size','default'),(11327,11188,'pyre_portfolio_column_spacing',''),(11328,11188,'pyre_page_title','no'),(11329,11188,'pyre_page_title_text','yes'),(11330,11188,'pyre_page_title_text_alignment','default'),(11331,11188,'pyre_page_title_custom_text',''),(11332,11188,'pyre_page_title_100_width','default'),(11333,11188,'pyre_page_title_text_size',''),(11334,11188,'pyre_page_title_custom_subheader',''),(11335,11188,'pyre_page_title_custom_subheader_text_size',''),(11336,11188,'pyre_page_title_font_color',''),(11337,11188,'pyre_page_title_height',''),(11338,11188,'pyre_page_title_bar_bg',''),(11339,11188,'pyre_page_title_bar_bg_retina',''),(11340,11188,'pyre_page_title_bar_bg_color',''),(11341,11188,'pyre_page_title_bar_bg_full','default'),(11342,11188,'pyre_page_title_bg_parallax','default'),(11343,11188,'pyre_page_title_breadcrumbs_search_bar','default'),(11344,11188,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11345,11188,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11346,11188,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11347,11188,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11348,11195,'_wp_page_template','100-width.php'),(11349,11195,'slide_template','default'),(11350,11195,'fusion_builder_status','active'),(11351,11195,'pyre_slider_position','default'),(11352,11195,'pyre_slider_type','flex'),(11353,11195,'pyre_slider','0'),(11354,11195,'pyre_wooslider','shortcode'),(11355,11195,'pyre_revslider','0'),(11356,11195,'pyre_elasticslider','0'),(11357,11195,'pyre_fallback',''),(11358,11195,'pyre_avada_rev_styles','default'),(11359,11195,'pyre_main_top_padding',''),(11360,11195,'pyre_main_bottom_padding','0px'),(11361,11195,'pyre_hundredp_padding',''),(11362,11195,'pyre_show_first_featured_image','no'),(11363,11195,'pyre_display_header','yes'),(11364,11195,'pyre_header_100_width','default'),(11365,11195,'pyre_header_bg',''),(11366,11195,'pyre_header_bg_color',''),(11367,11195,'pyre_header_bg_opacity',''),(11368,11195,'pyre_header_bg_full','no'),(11369,11195,'pyre_header_bg_repeat','repeat'),(11370,11195,'pyre_displayed_menu','default'),(11371,11195,'pyre_display_footer','default'),(11372,11195,'pyre_display_copyright','default'),(11373,11195,'pyre_footer_100_width','default'),(11374,11195,'pyre_sidebar_position','default'),(11375,11195,'pyre_page_bg_layout','default'),(11376,11195,'pyre_page_bg',''),(11377,11195,'pyre_page_bg_color',''),(11378,11195,'pyre_page_bg_full','no'),(11379,11195,'pyre_page_bg_repeat','repeat'),(11380,11195,'pyre_wide_page_bg',''),(11381,11195,'pyre_wide_page_bg_color',''),(11382,11195,'pyre_wide_page_bg_full','no'),(11383,11195,'pyre_wide_page_bg_repeat','repeat'),(11384,11195,'pyre_portfolio_width_100','no'),(11385,11195,'pyre_portfolio_content_length','default'),(11386,11195,'pyre_portfolio_excerpt',''),(11387,11195,'pyre_portfolio_filters','yes'),(11388,11195,'pyre_portfolio_text_layout','default'),(11389,11195,'pyre_portfolio_featured_image_size','default'),(11390,11195,'pyre_portfolio_column_spacing',''),(11391,11195,'pyre_page_title','no'),(11392,11195,'pyre_page_title_text','yes'),(11393,11195,'pyre_page_title_text_alignment','default'),(11394,11195,'pyre_page_title_custom_text',''),(11395,11195,'pyre_page_title_100_width','default'),(11396,11195,'pyre_page_title_text_size',''),(11397,11195,'pyre_page_title_custom_subheader',''),(11398,11195,'pyre_page_title_custom_subheader_text_size',''),(11399,11195,'pyre_page_title_font_color',''),(11400,11195,'pyre_page_title_height',''),(11401,11195,'pyre_page_title_bar_bg',''),(11402,11195,'pyre_page_title_bar_bg_retina',''),(11403,11195,'pyre_page_title_bar_bg_color',''),(11404,11195,'pyre_page_title_bar_bg_full','default'),(11405,11195,'pyre_page_title_bg_parallax','default'),(11406,11195,'pyre_page_title_breadcrumbs_search_bar','default'),(11407,11195,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11408,11195,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(11409,11195,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11410,11195,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11413,11526,'pyre_video',''),(11414,11526,'pyre_overall_score','0'),(11415,11526,'pyre_page_title','yes'),(11416,11526,'pyre_sidebar_position','right'),(11417,11526,'pyre_slider_type','no'),(11418,11526,'pyre_slider','0'),(11419,11526,'pyre_wooslider','0'),(11420,11526,'pyre_flexslider','0'),(11421,11526,'pyre_revslider','0'),(11422,11526,'pyre_page_bg_color',''),(11423,11526,'pyre_page_bg',''),(11424,11526,'pyre_page_bg_full','no'),(11425,11526,'pyre_page_bg_repeat','repeat'),(11426,11526,'pyre_page_title_bar_bg',''),(11427,11526,'pyre_fimg_width',''),(11428,11526,'pyre_fimg_height',''),(11429,11526,'pyre_full_width','no'),(11430,11526,'pyre_elasticslider','0'),(11431,11526,'pyre_fallback',''),(11432,11526,'pyre_page_title_bar_bg_color',''),(11433,11526,'avada_post_views_count','7'),(11434,11526,'pyre_image_rollover_icons','default'),(11435,11526,'pyre_link_icon_url',''),(11436,11526,'pyre_related_posts','yes'),(11437,11526,'pyre_page_bg_layout','default'),(11438,11526,'pyre_wide_page_bg',''),(11439,11526,'pyre_wide_page_bg_color',''),(11440,11526,'pyre_wide_page_bg_full','no'),(11441,11526,'pyre_wide_page_bg_repeat','repeat'),(11442,11526,'pyre_header_bg',''),(11443,11526,'pyre_header_bg_color',''),(11444,11526,'pyre_header_bg_full','no'),(11445,11526,'pyre_header_bg_repeat','repeat'),(11446,11526,'pyre_page_title_text','yes'),(11447,11526,'pyre_page_title_bar_bg_retina',''),(11448,11526,'pyre_page_title_bar_bg_full','no'),(11449,11526,'_thumbnail_id','3891'),(11450,11526,'pyre_page_title_custom_text',''),(11451,11526,'pyre_page_title_custom_subheader',''),(11452,11526,'pyre_page_title_height',''),(11453,11526,'pyre_page_title_bg_parallax','default'),(11454,11526,'slide_template','default'),(11455,11526,'fusion_builder_status','inactive'),(11456,11526,'pyre_slider_position','default'),(11457,11526,'pyre_display_header','yes'),(11458,11526,'pyre_transparent_header','default'),(11459,11526,'pyre_displayed_menu','default'),(11460,11526,'pyre_display_footer','default'),(11461,11526,'pyre_display_copyright','default'),(11462,11526,'pyre_show_first_featured_image','no'),(11463,11526,'pyre_portfolio_width_100','no'),(11464,11526,'pyre_post_links_target','no'),(11465,11526,'pyre_share_box','default'),(11466,11526,'pyre_post_pagination','default'),(11467,11526,'pyre_author_info','default'),(11468,11526,'pyre_post_meta','default'),(11469,11526,'pyre_post_comments','default'),(11470,11526,'pyre_main_top_padding',''),(11471,11526,'pyre_main_bottom_padding',''),(11472,11526,'pyre_hundredp_padding',''),(11473,11526,'pyre_avada_rev_styles','default'),(11474,11526,'pyre_header_100_width','default'),(11475,11526,'pyre_header_bg_opacity',''),(11476,11526,'pyre_footer_100_width','default'),(11477,11526,'pyre_sidebar_bg_color',''),(11478,11526,'pyre_page_title_text_alignment','default'),(11479,11526,'pyre_page_title_100_width','default'),(11480,11526,'pyre_page_title_text_size',''),(11481,11526,'pyre_page_title_custom_subheader_text_size',''),(11482,11526,'pyre_page_title_font_color',''),(11483,11526,'pyre_page_title_mobile_height',''),(11484,11526,'pyre_page_title_bar_borders_color',''),(11485,11526,'pyre_page_title_breadcrumbs_search_bar','default'),(11486,11526,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11487,11526,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(11488,11526,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11489,11526,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11492,11527,'pyre_video',''),(11493,11527,'pyre_overall_score','0'),(11494,11527,'pyre_page_title','yes'),(11495,11527,'pyre_sidebar_position','right'),(11496,11527,'pyre_slider_type','no'),(11497,11527,'pyre_slider','0'),(11498,11527,'pyre_wooslider','0'),(11499,11527,'pyre_flexslider','0'),(11500,11527,'pyre_revslider','0'),(11501,11527,'pyre_page_bg_color',''),(11502,11527,'pyre_page_bg',''),(11503,11527,'pyre_page_bg_full','no'),(11504,11527,'pyre_page_bg_repeat','repeat'),(11505,11527,'pyre_page_title_bar_bg',''),(11506,11527,'pyre_fimg_width',''),(11507,11527,'pyre_fimg_height',''),(11508,11527,'pyre_full_width','no'),(11509,11527,'pyre_fallback',''),(11510,11527,'pyre_page_title_bar_bg_color',''),(11511,11527,'pyre_elasticslider','0'),(11512,11527,'_thumbnail_id','3890'),(11513,11527,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11514,11527,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(11515,11527,'avada_post_views_count','1'),(11516,11527,'pyre_video',''),(11517,11527,'pyre_overall_score','0'),(11518,11527,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(11519,11527,'pyre_page_title','yes'),(11520,11527,'pyre_sidebar_position','right'),(11521,11527,'pyre_slider_type','no'),(11522,11527,'pyre_slider','0'),(11523,11527,'pyre_wooslider','0'),(11524,11527,'pyre_flexslider','0'),(11525,11527,'pyre_revslider','0'),(11526,11527,'pyre_page_bg_color',''),(11527,11527,'pyre_page_bg',''),(11528,11527,'pyre_page_bg_full','no'),(11529,11527,'pyre_page_bg_repeat','repeat'),(11530,11527,'pyre_page_title_bar_bg',''),(11531,11527,'pyre_fimg_width',''),(11532,11527,'pyre_fimg_height',''),(11533,11527,'pyre_full_width','no'),(11534,11527,'pyre_fallback',''),(11535,11527,'pyre_page_title_bar_bg_color',''),(11536,11527,'_thumbnail_id','3508'),(11537,11527,'pyre_elasticslider','0'),(11538,11527,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11539,11527,'slide_template',''),(11542,11528,'pyre_video',''),(11543,11528,'pyre_overall_score','0'),(11544,11528,'pyre_page_title','yes'),(11545,11528,'pyre_sidebar_position','right'),(11546,11528,'pyre_slider_type','no'),(11547,11528,'pyre_slider','0'),(11548,11528,'pyre_wooslider','0'),(11549,11528,'pyre_fallback',''),(11550,11528,'pyre_flexslider','0'),(11551,11528,'pyre_revslider','0'),(11552,11528,'pyre_page_bg_color',''),(11553,11528,'pyre_page_bg',''),(11554,11528,'pyre_page_bg_full','no'),(11555,11528,'pyre_page_bg_repeat','repeat'),(11556,11528,'pyre_page_title_bar_bg',''),(11557,11528,'pyre_fimg_width',''),(11558,11528,'pyre_fimg_height',''),(11559,11528,'pyre_full_width','no'),(11560,11528,'pyre_page_title_bar_bg_color',''),(11561,11528,'pyre_elasticslider','0'),(11562,11528,'avada_post_views_count','12'),(11563,11528,'pyre_image_rollover_icons','default'),(11564,11528,'pyre_link_icon_url',''),(11565,11528,'pyre_related_posts','yes'),(11566,11528,'pyre_page_bg_layout','default'),(11567,11528,'pyre_wide_page_bg',''),(11568,11528,'pyre_wide_page_bg_color',''),(11569,11528,'pyre_wide_page_bg_full','no'),(11570,11528,'pyre_wide_page_bg_repeat','repeat'),(11571,11528,'pyre_header_bg',''),(11572,11528,'pyre_header_bg_color',''),(11573,11528,'pyre_header_bg_full','no'),(11574,11528,'pyre_header_bg_repeat','repeat'),(11575,11528,'pyre_page_title_text','yes'),(11576,11528,'pyre_page_title_bar_bg_retina',''),(11577,11528,'pyre_page_title_bar_bg_full','no'),(11578,11528,'avada_post_views_count','12'),(11579,11528,'pyre_image_rollover_icons','default'),(11580,11528,'pyre_link_icon_url',''),(11581,11528,'pyre_related_posts','yes'),(11582,11528,'pyre_page_bg_layout','default'),(11583,11528,'pyre_wide_page_bg',''),(11584,11528,'pyre_wide_page_bg_color',''),(11585,11528,'pyre_wide_page_bg_full','no'),(11586,11528,'pyre_wide_page_bg_repeat','repeat'),(11587,11528,'pyre_header_bg',''),(11588,11528,'pyre_header_bg_color',''),(11589,11528,'pyre_header_bg_full','no'),(11590,11528,'pyre_header_bg_repeat','repeat'),(11591,11528,'pyre_page_title_text','yes'),(11592,11528,'pyre_page_title_bar_bg_retina',''),(11593,11528,'pyre_page_title_bar_bg_full','no'),(11594,11528,'pyre_video',''),(11595,11528,'pyre_overall_score','0'),(11596,11528,'pyre_sidebar_position','right'),(11597,11528,'pyre_page_title','yes'),(11598,11528,'pyre_slider','0'),(11599,11528,'pyre_slider_type','no'),(11600,11528,'pyre_wooslider','0'),(11601,11528,'pyre_fallback',''),(11602,11528,'pyre_flexslider','0'),(11603,11528,'pyre_revslider','0'),(11604,11528,'pyre_page_bg_color',''),(11605,11528,'pyre_page_bg',''),(11606,11528,'pyre_page_bg_full','no'),(11607,11528,'pyre_page_bg_repeat','repeat'),(11608,11528,'pyre_page_title_bar_bg',''),(11609,11528,'pyre_fimg_width',''),(11610,11528,'pyre_fimg_height',''),(11611,11528,'pyre_full_width','no'),(11612,11528,'pyre_page_title_bar_bg_color',''),(11613,11528,'pyre_elasticslider','0'),(11614,11528,'slide_template','default'),(11615,11528,'pyre_page_title_custom_text',''),(11616,11528,'pyre_page_title_custom_subheader',''),(11617,11528,'pyre_page_title_height',''),(11618,11528,'pyre_page_title_bg_parallax','default'),(11619,11528,'_thumbnail_id','4396'),(11620,11528,'fusion_builder_status','inactive'),(11621,11528,'pyre_show_first_featured_image','no'),(11622,11528,'pyre_portfolio_width_100','no'),(11623,11528,'pyre_post_links_target','no'),(11624,11528,'pyre_share_box','default'),(11625,11528,'pyre_post_pagination','default'),(11626,11528,'pyre_author_info','default'),(11627,11528,'pyre_post_meta','default'),(11628,11528,'pyre_post_comments','default'),(11629,11528,'pyre_main_top_padding',''),(11630,11528,'pyre_main_bottom_padding',''),(11631,11528,'pyre_hundredp_padding',''),(11632,11528,'pyre_slider_position','default'),(11633,11528,'pyre_avada_rev_styles','default'),(11634,11528,'pyre_display_header','yes'),(11635,11528,'pyre_header_100_width','default'),(11636,11528,'pyre_header_bg_opacity',''),(11637,11528,'pyre_displayed_menu','default'),(11638,11528,'pyre_display_footer','default'),(11639,11528,'pyre_display_copyright','default'),(11640,11528,'pyre_footer_100_width','default'),(11641,11528,'pyre_sidebar_bg_color',''),(11642,11528,'pyre_page_title_text_alignment','default'),(11643,11528,'pyre_page_title_100_width','default'),(11644,11528,'pyre_page_title_text_size',''),(11645,11528,'pyre_page_title_custom_subheader_text_size',''),(11646,11528,'pyre_page_title_font_color',''),(11647,11528,'pyre_page_title_mobile_height',''),(11648,11528,'pyre_page_title_bar_borders_color',''),(11649,11528,'pyre_page_title_breadcrumbs_search_bar','default'),(11650,11528,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11651,11528,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(11652,11528,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11653,11528,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(14969,11511,'_edit_lock','1472502996:1'),(11656,211,'pyre_video',''),(11657,211,'pyre_overall_score','0'),(11658,211,'pyre_page_title','yes'),(11659,211,'pyre_sidebar_position','right'),(11660,211,'pyre_slider_type','no'),(11661,211,'pyre_slider','0'),(11662,211,'pyre_wooslider','0'),(11663,211,'pyre_flexslider','0'),(11664,211,'pyre_revslider','0'),(11665,211,'pyre_page_bg_color',''),(11666,211,'pyre_page_bg',''),(11667,211,'pyre_page_bg_full','no'),(11668,211,'pyre_page_bg_repeat','repeat'),(11669,211,'pyre_page_title_bar_bg',''),(11670,211,'pyre_fimg_width',''),(11671,211,'pyre_fimg_height',''),(11672,211,'pyre_full_width','no'),(11673,211,'pyre_fallback',''),(11674,211,'pyre_elasticslider','0'),(11675,211,'pyre_page_title_bar_bg_color',''),(11676,211,'_thumbnail_id','3888'),(11677,211,'avada_post_views_count','25'),(11678,211,'pyre_video',''),(11679,211,'pyre_overall_score','0'),(11680,211,'pyre_elasticslider','0'),(11681,211,'pyre_slider_type','no'),(11682,211,'pyre_page_title','yes'),(11683,211,'pyre_sidebar_position','right'),(11684,211,'pyre_slider','0'),(11685,211,'pyre_wooslider','0'),(11686,211,'pyre_flexslider','0'),(11687,211,'pyre_revslider','0'),(11688,211,'pyre_page_bg_color',''),(11689,211,'pyre_page_bg',''),(11690,211,'pyre_page_bg_full','no'),(11691,211,'pyre_page_bg_repeat','repeat'),(11692,211,'pyre_page_title_bar_bg',''),(11693,211,'pyre_fimg_width',''),(11694,211,'pyre_fimg_height',''),(11695,211,'pyre_full_width','no'),(11696,211,'pyre_fallback',''),(11697,211,'_thumbnail_id','3508'),(11698,211,'pyre_page_title_bar_bg_color',''),(11699,211,'slide_template','default'),(11700,211,'pyre_display_header','yes'),(11701,211,'pyre_transparent_header','default'),(11702,211,'pyre_displayed_menu','default'),(11703,211,'pyre_display_footer','default'),(11704,211,'pyre_display_copyright','default'),(11705,211,'pyre_image_rollover_icons','default'),(11706,211,'pyre_link_icon_url',''),(11707,211,'pyre_related_posts','default'),(11708,211,'pyre_slider_position','default'),(11709,211,'pyre_page_bg_layout','default'),(11710,211,'pyre_wide_page_bg',''),(11711,211,'pyre_wide_page_bg_color',''),(11712,211,'pyre_wide_page_bg_full','no'),(11713,211,'pyre_wide_page_bg_repeat','repeat'),(11714,211,'pyre_header_bg',''),(11715,211,'pyre_header_bg_color',''),(11716,211,'pyre_header_bg_full','no'),(11717,211,'pyre_header_bg_repeat','repeat'),(11718,211,'pyre_page_title_text','yes'),(11719,211,'pyre_page_title_custom_text',''),(11720,211,'pyre_page_title_custom_subheader',''),(11721,211,'pyre_page_title_height',''),(11722,211,'pyre_page_title_bar_bg_retina',''),(11723,211,'pyre_page_title_bar_bg_full','default'),(11724,211,'pyre_page_title_bg_parallax','default'),(11725,211,'fusion_builder_status','inactive'),(11726,211,'pyre_show_first_featured_image','no'),(11727,211,'pyre_portfolio_width_100','no'),(11728,211,'pyre_post_links_target','no'),(11729,211,'pyre_share_box','default'),(11730,211,'pyre_post_pagination','default'),(11731,211,'pyre_author_info','default'),(11732,211,'pyre_post_meta','default'),(11733,211,'pyre_post_comments','default'),(11734,211,'pyre_main_top_padding',''),(11735,211,'pyre_main_bottom_padding',''),(11736,211,'pyre_hundredp_padding',''),(11737,211,'pyre_avada_rev_styles','default'),(11738,211,'pyre_header_100_width','default'),(11739,211,'pyre_header_bg_opacity',''),(11740,211,'pyre_footer_100_width','default'),(11741,211,'pyre_sidebar_bg_color',''),(11742,211,'pyre_page_title_text_alignment','default'),(11743,211,'pyre_page_title_100_width','default'),(11744,211,'pyre_page_title_text_size',''),(11745,211,'pyre_page_title_custom_subheader_text_size',''),(11746,211,'pyre_page_title_font_color',''),(11747,211,'pyre_page_title_mobile_height',''),(11748,211,'pyre_page_title_bar_borders_color',''),(11749,211,'pyre_page_title_breadcrumbs_search_bar','default'),(11750,211,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11751,211,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(11752,211,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11753,211,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11756,11529,'pyre_video',''),(11757,11529,'pyre_overall_score','0'),(11758,11529,'pyre_page_title','yes'),(11759,11529,'pyre_sidebar_position','right'),(11760,11529,'pyre_slider_type','no'),(11761,11529,'pyre_slider','0'),(11762,11529,'pyre_wooslider','0'),(11763,11529,'pyre_flexslider','0'),(11764,11529,'pyre_revslider','0'),(11765,11529,'pyre_page_bg_color',''),(11766,11529,'pyre_page_bg',''),(11767,11529,'pyre_page_bg_full','no'),(11768,11529,'pyre_page_bg_repeat','repeat'),(11769,11529,'pyre_page_title_bar_bg',''),(11770,11529,'pyre_fimg_width',''),(11771,11529,'pyre_fimg_height',''),(11772,11529,'pyre_full_width','no'),(11773,11529,'pyre_fallback',''),(11774,11529,'pyre_page_title_bar_bg_color',''),(11775,11529,'pyre_elasticslider','0'),(11776,11529,'avada_post_views_count','466'),(11777,11529,'pyre_image_rollover_icons','default'),(11778,11529,'pyre_link_icon_url',''),(11779,11529,'pyre_related_posts','yes'),(11780,11529,'pyre_page_bg_layout','default'),(11781,11529,'pyre_wide_page_bg',''),(11782,11529,'pyre_wide_page_bg_color',''),(11783,11529,'pyre_wide_page_bg_full','no'),(11784,11529,'pyre_wide_page_bg_repeat','repeat'),(11785,11529,'pyre_header_bg',''),(11786,11529,'pyre_header_bg_color',''),(11787,11529,'pyre_header_bg_full','no'),(11788,11529,'pyre_header_bg_repeat','repeat'),(11789,11529,'pyre_page_title_text','yes'),(11790,11529,'pyre_page_title_bar_bg_retina',''),(11791,11529,'pyre_page_title_bar_bg_full','no'),(11792,11529,'_thumbnail_id','3892'),(11793,11529,'pyre_page_title_custom_text',''),(11794,11529,'pyre_page_title_custom_subheader',''),(11795,11529,'pyre_page_title_height',''),(11796,11529,'pyre_page_title_bg_parallax','default'),(11797,11529,'kd_featured-image-2_post_id','3891'),(11798,11529,'avada_post_views_count','466'),(11799,11529,'pyre_video',''),(11800,11529,'pyre_overall_score','0'),(11801,11529,'pyre_page_title_bar_bg_color',''),(11802,11529,'pyre_page_title','yes'),(11803,11529,'pyre_sidebar_position','right'),(11804,11529,'pyre_slider_type','no'),(11805,11529,'pyre_slider','0'),(11806,11529,'pyre_wooslider','0'),(11807,11529,'pyre_flexslider','0'),(11808,11529,'pyre_revslider','0'),(11809,11529,'pyre_page_bg_color',''),(11810,11529,'pyre_page_bg',''),(11811,11529,'pyre_page_bg_full','no'),(11812,11529,'pyre_page_bg_repeat','repeat'),(11813,11529,'pyre_page_title_bar_bg',''),(11814,11529,'pyre_fimg_width',''),(11815,11529,'pyre_fimg_height',''),(11816,11529,'pyre_full_width','no'),(11817,11529,'pyre_fallback',''),(11818,11529,'pyre_elasticslider','0'),(11819,11529,'_thumbnail_id','3508'),(11820,11529,'kd_featured-image-2_post_id','3508'),(11821,11529,'slide_template','default'),(11822,11529,'pyre_display_header','yes'),(11823,11529,'pyre_transparent_header','default'),(11824,11529,'pyre_displayed_menu','default'),(11825,11529,'pyre_display_footer','default'),(11826,11529,'pyre_display_copyright','default'),(11827,11529,'pyre_slider_position','default'),(11828,11529,'fusion_builder_status','inactive'),(11829,11529,'pyre_show_first_featured_image','no'),(11830,11529,'pyre_portfolio_width_100','no'),(11831,11529,'pyre_post_links_target','no'),(11832,11529,'pyre_share_box','default'),(11833,11529,'pyre_post_pagination','default'),(11834,11529,'pyre_author_info','default'),(11835,11529,'pyre_post_meta','default'),(11836,11529,'pyre_post_comments','default'),(11837,11529,'pyre_main_top_padding',''),(11838,11529,'pyre_main_bottom_padding',''),(11839,11529,'pyre_hundredp_padding',''),(11840,11529,'pyre_avada_rev_styles','default'),(11841,11529,'pyre_header_100_width','default'),(11842,11529,'pyre_header_bg_opacity',''),(11843,11529,'pyre_footer_100_width','default'),(11844,11529,'pyre_sidebar_bg_color',''),(11845,11529,'pyre_page_title_text_alignment','default'),(11846,11529,'pyre_page_title_100_width','default'),(11847,11529,'pyre_page_title_text_size',''),(11848,11529,'pyre_page_title_custom_subheader_text_size',''),(11849,11529,'pyre_page_title_font_color',''),(11850,11529,'pyre_page_title_mobile_height',''),(11851,11529,'pyre_page_title_bar_borders_color',''),(11852,11529,'pyre_page_title_breadcrumbs_search_bar','default'),(11853,11529,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11854,11529,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(11855,11529,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11856,11529,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(14968,11515,'_edit_lock','1472502171:1'),(11859,11530,'pyre_video',''),(11860,11530,'pyre_overall_score','0'),(11861,11530,'pyre_page_title','yes'),(11862,11530,'pyre_sidebar_position','right'),(11863,11530,'pyre_slider_type','no'),(11864,11530,'pyre_slider','0'),(11865,11530,'pyre_wooslider','0'),(11866,11530,'pyre_fallback',''),(11867,11530,'pyre_flexslider','0'),(11868,11530,'pyre_revslider','0'),(11869,11530,'pyre_page_bg_color',''),(11870,11530,'pyre_page_bg',''),(11871,11530,'pyre_page_bg_full','no'),(11872,11530,'pyre_page_bg_repeat','repeat'),(11873,11530,'pyre_page_title_bar_bg',''),(11874,11530,'pyre_fimg_width',''),(11875,11530,'pyre_fimg_height',''),(11876,11530,'pyre_full_width','no'),(11877,11530,'pyre_page_title_bar_bg_color',''),(11878,11530,'pyre_elasticslider','0'),(11879,11530,'_thumbnail_id','3887'),(11880,11530,'avada_post_views_count','48'),(11881,11530,'pyre_image_rollover_icons','default'),(11882,11530,'pyre_link_icon_url',''),(11883,11530,'pyre_related_posts','yes'),(11884,11530,'pyre_page_bg_layout','default'),(11885,11530,'pyre_wide_page_bg',''),(11886,11530,'pyre_wide_page_bg_color',''),(11887,11530,'pyre_wide_page_bg_full','no'),(11888,11530,'pyre_wide_page_bg_repeat','repeat'),(11889,11530,'pyre_header_bg',''),(11890,11530,'pyre_header_bg_color',''),(11891,11530,'pyre_header_bg_full','no'),(11892,11530,'pyre_header_bg_repeat','repeat'),(11893,11530,'pyre_page_title_text','yes'),(11894,11530,'pyre_page_title_bar_bg_retina',''),(11895,11530,'pyre_page_title_bar_bg_full','no'),(11896,11530,'pyre_video',''),(11897,11530,'pyre_page_title_bar_bg_color',''),(11898,11530,'pyre_slider_type','no'),(11899,11530,'pyre_overall_score','0'),(11900,11530,'pyre_page_title','yes'),(11901,11530,'pyre_sidebar_position','right'),(11902,11530,'pyre_fallback',''),(11903,11530,'pyre_wooslider','0'),(11904,11530,'pyre_slider','0'),(11905,11530,'pyre_flexslider','0'),(11906,11530,'pyre_revslider','0'),(11907,11530,'pyre_page_bg_color',''),(11908,11530,'pyre_page_bg',''),(11909,11530,'pyre_page_bg_full','no'),(11910,11530,'pyre_page_bg_repeat','repeat'),(11911,11530,'pyre_page_title_bar_bg',''),(11912,11530,'pyre_fimg_width',''),(11913,11530,'pyre_fimg_height',''),(11914,11530,'pyre_full_width','no'),(11915,11530,'avada_post_views_count','48'),(11916,11530,'pyre_elasticslider','0'),(11917,11530,'_thumbnail_id','3508'),(11918,11530,'slide_template','default'),(11919,11530,'pyre_page_title_custom_text',''),(11920,11530,'pyre_page_title_custom_subheader',''),(11921,11530,'pyre_page_title_height',''),(11922,11530,'pyre_page_title_bg_parallax','default'),(11923,11530,'fusion_builder_status','inactive'),(11924,11530,'pyre_slider_position','default'),(11925,11530,'pyre_display_header','yes'),(11926,11530,'pyre_transparent_header','default'),(11927,11530,'pyre_displayed_menu','default'),(11928,11530,'pyre_display_footer','default'),(11929,11530,'pyre_display_copyright','default'),(11930,11530,'pyre_show_first_featured_image','no'),(11931,11530,'pyre_portfolio_width_100','no'),(11932,11530,'pyre_post_links_target','no'),(11933,11530,'pyre_share_box','default'),(11934,11530,'pyre_post_pagination','default'),(11935,11530,'pyre_author_info','default'),(11936,11530,'pyre_post_meta','default'),(11937,11530,'pyre_post_comments','default'),(11938,11530,'pyre_main_top_padding',''),(11939,11530,'pyre_main_bottom_padding',''),(11940,11530,'pyre_hundredp_padding',''),(11941,11530,'pyre_avada_rev_styles','default'),(11942,11530,'pyre_header_100_width','default'),(11943,11530,'pyre_header_bg_opacity',''),(11944,11530,'pyre_footer_100_width','default'),(11945,11530,'pyre_sidebar_bg_color',''),(11946,11530,'pyre_page_title_text_alignment','default'),(11947,11530,'pyre_page_title_100_width','default'),(11948,11530,'pyre_page_title_text_size',''),(11949,11530,'pyre_page_title_custom_subheader_text_size',''),(11950,11530,'pyre_page_title_font_color',''),(11951,11530,'pyre_page_title_mobile_height',''),(11952,11530,'pyre_page_title_bar_borders_color',''),(11953,11530,'pyre_page_title_breadcrumbs_search_bar','default'),(11954,11530,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(11955,11530,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(11956,11530,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(11957,11530,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(11958,4112,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(11959,4112,'_thumbnail_id','4113'),(11960,4112,'_visibility','visible'),(11961,4112,'_stock_status','instock'),(11962,4112,'total_sales','0'),(11963,4112,'_downloadable','no'),(11964,4112,'_virtual','no'),(11965,4112,'_product_image_gallery','4113,4113,4113'),(11966,4112,'_regular_price','85'),(11967,4112,'_sale_price',''),(11968,4112,'_purchase_note',''),(11969,4112,'_featured','yes'),(11970,4112,'_weight',''),(11971,4112,'_length',''),(11972,4112,'_width',''),(11973,4112,'_height',''),(11974,4112,'_sku','001'),(11975,4112,'_sale_price_dates_from',''),(11976,4112,'_sale_price_dates_to',''),(11977,4112,'_price','85'),(11978,4112,'_sold_individually',''),(11979,4112,'_stock',''),(11980,4112,'_backorders','no'),(11981,4112,'_manage_stock','no'),(11982,4112,'pyre_full_width','yes'),(11983,4112,'pyre_sidebar_position','default'),(11984,4112,'pyre_slider_type','no'),(11985,4112,'pyre_slider','0'),(11986,4112,'pyre_wooslider','0'),(11987,4112,'pyre_flexslider','0'),(11988,4112,'pyre_revslider','0'),(11989,4112,'pyre_elasticslider','0'),(11990,4112,'pyre_fallback',''),(11991,4112,'pyre_page_bg_layout','default'),(11992,4112,'pyre_page_bg',''),(11993,4112,'pyre_page_bg_color',''),(11994,4112,'pyre_page_bg_full','no'),(11995,4112,'pyre_page_bg_repeat','repeat'),(11996,4112,'pyre_wide_page_bg',''),(11997,4112,'pyre_wide_page_bg_color',''),(11998,4112,'pyre_wide_page_bg_full','no'),(11999,4112,'pyre_wide_page_bg_repeat','repeat'),(12000,4112,'pyre_header_bg',''),(12001,4112,'pyre_header_bg_color',''),(12002,4112,'pyre_header_bg_full','no'),(12003,4112,'pyre_header_bg_repeat','repeat'),(12004,4112,'pyre_page_title','yes'),(12005,4112,'pyre_page_title_text','yes'),(12006,4112,'pyre_page_title_custom_text',''),(12007,4112,'pyre_page_title_custom_subheader',''),(12008,4112,'pyre_page_title_height',''),(12009,4112,'pyre_page_title_bar_bg',''),(12010,4112,'pyre_page_title_bar_bg_retina',''),(12011,4112,'pyre_page_title_bar_bg_full','default'),(12012,4112,'pyre_page_title_bar_bg_color',''),(12013,4112,'pyre_page_title_bg_parallax','default'),(12014,4112,'slide_template',''),(12015,4112,'pyre_display_header','yes'),(12016,4112,'pyre_transparent_header','default'),(12017,4112,'pyre_displayed_menu','default'),(12018,4112,'pyre_display_footer','default'),(12019,4112,'pyre_display_copyright','default'),(12020,4112,'pyre_slider_position','default'),(12021,4112,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12022,4112,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(12023,4114,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12024,4114,'_height',''),(12025,4114,'_width',''),(12026,4114,'_sale_price_dates_to',''),(12027,4114,'_price','75'),(12028,4114,'_sold_individually',''),(12029,4114,'_stock',''),(12030,4114,'_backorders','no'),(12031,4114,'_manage_stock','no'),(12032,4114,'pyre_full_width','no'),(12033,4114,'pyre_sidebar_position','default'),(12034,4114,'pyre_slider_type','no'),(12035,4114,'pyre_slider','0'),(12036,4114,'pyre_wooslider','0'),(12037,4114,'pyre_flexslider','0'),(12038,4114,'pyre_revslider','0'),(12039,4114,'pyre_elasticslider','0'),(12040,4114,'pyre_fallback',''),(12041,4114,'pyre_page_bg_layout','default'),(12042,4114,'pyre_page_bg',''),(12043,4114,'pyre_page_bg_color',''),(12044,4114,'pyre_page_bg_full','no'),(12045,4114,'pyre_page_bg_repeat','repeat'),(12046,4114,'pyre_wide_page_bg',''),(12047,4114,'pyre_wide_page_bg_color',''),(12048,4114,'pyre_wide_page_bg_full','no'),(12049,4114,'pyre_wide_page_bg_repeat','repeat'),(12050,4114,'pyre_header_bg',''),(12051,4114,'pyre_header_bg_color',''),(12052,4114,'pyre_header_bg_full','no'),(12053,4114,'pyre_header_bg_repeat','repeat'),(12054,4114,'pyre_page_title','yes'),(12055,4114,'pyre_page_title_text','yes'),(12056,4114,'pyre_page_title_custom_text',''),(12057,4114,'pyre_page_title_custom_subheader',''),(12058,4114,'pyre_page_title_height',''),(12059,4114,'pyre_page_title_bar_bg',''),(12060,4114,'pyre_page_title_bar_bg_retina',''),(12061,4114,'pyre_page_title_bar_bg_full','default'),(12062,4114,'_sale_price_dates_from',''),(12063,4114,'_thumbnail_id','4113'),(12064,4114,'_visibility','visible'),(12065,4114,'_stock_status','instock'),(12066,4114,'total_sales','0'),(12067,4114,'_downloadable','no'),(12068,4114,'_virtual','no'),(12069,4114,'_product_image_gallery','4113,4113'),(12070,4114,'_regular_price','85'),(12071,4114,'_sale_price','75'),(12072,4114,'_purchase_note',''),(12073,4114,'_featured','yes'),(12074,4114,'_weight',''),(12075,4114,'_length',''),(12076,4114,'_sku','002'),(12077,4114,'pyre_page_title_bar_bg_color',''),(12078,4114,'pyre_page_title_bg_parallax','default'),(12079,4114,'slide_template','default'),(12080,4114,'pyre_display_header','yes'),(12081,4114,'pyre_transparent_header','default'),(12082,4114,'pyre_displayed_menu','default'),(12083,4114,'pyre_display_footer','default'),(12084,4114,'pyre_display_copyright','default'),(12085,4114,'pyre_slider_position','default'),(12086,4114,'pyre_number_of_related_products','default'),(12087,4114,'pyre_portfolio_excerpt',''),(12088,4114,'pyre_portfolio_filters','yes'),(12089,4114,'pyre_portfolio_featured_image_size','default'),(12090,4114,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12091,4114,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(12092,4114,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12093,4114,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12094,4115,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12095,4115,'_height',''),(12096,4115,'_width',''),(12097,4115,'_sale_price_dates_to',''),(12098,4115,'_price','105'),(12099,4115,'_sold_individually',''),(12100,4115,'_stock',''),(12101,4115,'_backorders','no'),(12102,4115,'_manage_stock','no'),(12103,4115,'pyre_full_width','yes'),(12104,4115,'pyre_sidebar_position','default'),(12105,4115,'pyre_slider_type','no'),(12106,4115,'pyre_slider','0'),(12107,4115,'pyre_wooslider','0'),(12108,4115,'pyre_flexslider','0'),(12109,4115,'pyre_revslider','0'),(12110,4115,'pyre_elasticslider','0'),(12111,4115,'pyre_fallback',''),(12112,4115,'pyre_page_bg_layout','default'),(12113,4115,'pyre_page_bg',''),(12114,4115,'pyre_page_bg_color',''),(12115,4115,'pyre_page_bg_full','no'),(12116,4115,'pyre_page_bg_repeat','repeat'),(12117,4115,'pyre_wide_page_bg',''),(12118,4115,'pyre_wide_page_bg_color',''),(12119,4115,'pyre_wide_page_bg_full','no'),(12120,4115,'pyre_wide_page_bg_repeat','repeat'),(12121,4115,'pyre_header_bg',''),(12122,4115,'pyre_header_bg_color',''),(12123,4115,'pyre_header_bg_full','no'),(12124,4115,'pyre_header_bg_repeat','repeat'),(12125,4115,'pyre_page_title','yes'),(12126,4115,'pyre_page_title_text','yes'),(12127,4115,'pyre_page_title_custom_text',''),(12128,4115,'pyre_page_title_custom_subheader',''),(12129,4115,'pyre_page_title_height',''),(12130,4115,'pyre_page_title_bar_bg',''),(12131,4115,'pyre_page_title_bar_bg_retina',''),(12132,4115,'pyre_page_title_bar_bg_full','default'),(12133,4115,'_sale_price_dates_from',''),(12134,4115,'_thumbnail_id','4113'),(12135,4115,'_visibility','visible'),(12136,4115,'_stock_status','instock'),(12137,4115,'total_sales','0'),(12138,4115,'_downloadable','no'),(12139,4115,'_virtual','no'),(12140,4115,'_product_image_gallery','4113,4113,4113'),(12141,4115,'_regular_price','105'),(12142,4115,'_sale_price',''),(12143,4115,'_purchase_note',''),(12144,4115,'_featured','yes'),(12145,4115,'_weight',''),(12146,4115,'_length',''),(12147,4115,'_sku','003'),(12148,4115,'pyre_page_title_bar_bg_color',''),(12149,4115,'pyre_page_title_bg_parallax','default'),(12150,4115,'slide_template',''),(12151,4115,'pyre_display_header','yes'),(12152,4115,'pyre_transparent_header','default'),(12153,4115,'pyre_displayed_menu','default'),(12154,4115,'pyre_display_footer','default'),(12155,4115,'pyre_display_copyright','default'),(12156,4115,'pyre_slider_position','default'),(12157,4115,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12158,4115,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(12159,4116,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12160,4116,'_height',''),(12161,4116,'_width',''),(12162,4116,'_sale_price_dates_to',''),(12163,4116,'_price','35'),(12164,4116,'_sold_individually',''),(12165,4116,'_stock',''),(12166,4116,'_backorders','no'),(12167,4116,'_manage_stock','no'),(12168,4116,'pyre_full_width','yes'),(12169,4116,'pyre_sidebar_position','default'),(12170,4116,'pyre_slider_type','no'),(12171,4116,'pyre_slider','0'),(12172,4116,'pyre_wooslider','0'),(12173,4116,'pyre_flexslider','0'),(12174,4116,'pyre_revslider','0'),(12175,4116,'pyre_elasticslider','0'),(12176,4116,'pyre_fallback',''),(12177,4116,'pyre_page_bg_layout','default'),(12178,4116,'pyre_page_bg',''),(12179,4116,'pyre_page_bg_color',''),(12180,4116,'pyre_page_bg_full','no'),(12181,4116,'pyre_page_bg_repeat','repeat'),(12182,4116,'pyre_wide_page_bg',''),(12183,4116,'pyre_wide_page_bg_color',''),(12184,4116,'pyre_wide_page_bg_full','no'),(12185,4116,'pyre_wide_page_bg_repeat','repeat'),(12186,4116,'pyre_header_bg',''),(12187,4116,'pyre_header_bg_color',''),(12188,4116,'pyre_header_bg_full','no'),(12189,4116,'pyre_header_bg_repeat','repeat'),(12190,4116,'pyre_page_title','yes'),(12191,4116,'pyre_page_title_text','yes'),(12192,4116,'pyre_page_title_custom_text',''),(12193,4116,'pyre_page_title_custom_subheader',''),(12194,4116,'pyre_page_title_height',''),(12195,4116,'pyre_page_title_bar_bg',''),(12196,4116,'pyre_page_title_bar_bg_retina',''),(12197,4116,'pyre_page_title_bar_bg_full','default'),(12198,4116,'_sale_price_dates_from',''),(12199,4116,'_thumbnail_id','4113'),(12200,4116,'_visibility','visible'),(12201,4116,'_stock_status','instock'),(12202,4116,'total_sales','0'),(12203,4116,'_downloadable','no'),(12204,4116,'_virtual','no'),(12205,4116,'_product_image_gallery','4113,4113,4113'),(12206,4116,'_regular_price','49'),(12207,4116,'_sale_price','35'),(12208,4116,'_purchase_note',''),(12209,4116,'_featured','yes'),(12210,4116,'_weight',''),(12211,4116,'_length',''),(12212,4116,'_sku','004'),(12213,4116,'pyre_page_title_bar_bg_color',''),(12214,4116,'pyre_page_title_bg_parallax','default'),(12215,4116,'slide_template',''),(12216,4116,'pyre_display_header','yes'),(12217,4116,'pyre_transparent_header','default'),(12218,4116,'pyre_displayed_menu','default'),(12219,4116,'pyre_display_footer','default'),(12220,4116,'pyre_display_copyright','default'),(12221,4116,'pyre_slider_position','default'),(12222,4116,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12223,4116,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(12224,4117,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12225,4117,'_height',''),(12226,4117,'_width',''),(12227,4117,'_sale_price_dates_to',''),(12228,4117,'_price','100'),(12229,4117,'_sold_individually',''),(12230,4117,'_stock',''),(12231,4117,'_backorders','no'),(12232,4117,'_manage_stock','no'),(12233,4117,'pyre_full_width','yes'),(12234,4117,'pyre_sidebar_position','default'),(12235,4117,'pyre_slider_type','no'),(12236,4117,'pyre_slider','0'),(12237,4117,'pyre_wooslider','0'),(12238,4117,'pyre_flexslider','0'),(12239,4117,'pyre_revslider','0'),(12240,4117,'pyre_elasticslider','0'),(12241,4117,'pyre_fallback',''),(12242,4117,'pyre_page_bg_layout','default'),(12243,4117,'pyre_page_bg',''),(12244,4117,'pyre_page_bg_color',''),(12245,4117,'pyre_page_bg_full','no'),(12246,4117,'pyre_page_bg_repeat','repeat'),(12247,4117,'pyre_wide_page_bg',''),(12248,4117,'pyre_wide_page_bg_color',''),(12249,4117,'pyre_wide_page_bg_full','no'),(12250,4117,'pyre_wide_page_bg_repeat','repeat'),(12251,4117,'pyre_header_bg',''),(12252,4117,'pyre_header_bg_color',''),(12253,4117,'pyre_header_bg_full','no'),(12254,4117,'pyre_header_bg_repeat','repeat'),(12255,4117,'pyre_page_title','yes'),(12256,4117,'pyre_page_title_text','yes'),(12257,4117,'pyre_page_title_custom_text',''),(12258,4117,'pyre_page_title_custom_subheader',''),(12259,4117,'pyre_page_title_height',''),(12260,4117,'pyre_page_title_bar_bg',''),(12261,4117,'pyre_page_title_bar_bg_retina',''),(12262,4117,'pyre_page_title_bar_bg_full','default'),(12263,4117,'_sale_price_dates_from',''),(12264,4117,'_thumbnail_id','4113'),(12265,4117,'_visibility','visible'),(12266,4117,'_stock_status','instock'),(12267,4117,'total_sales','0'),(12268,4117,'_downloadable','no'),(12269,4117,'_virtual','no'),(12270,4117,'_product_image_gallery','4113,4113,4113'),(12271,4117,'_regular_price','100'),(12272,4117,'_sale_price',''),(12273,4117,'_purchase_note',''),(12274,4117,'_featured','yes'),(12275,4117,'_weight',''),(12276,4117,'_length',''),(12277,4117,'_sku','005'),(12278,4117,'pyre_page_title_bar_bg_color',''),(12279,4117,'pyre_page_title_bg_parallax','default'),(12280,4117,'slide_template',''),(12281,4117,'pyre_display_header','yes'),(12282,4117,'pyre_transparent_header','default'),(12283,4117,'pyre_displayed_menu','default'),(12284,4117,'pyre_display_footer','default'),(12285,4117,'pyre_display_copyright','default'),(12286,4117,'pyre_slider_position','default'),(12287,4117,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12288,4117,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(12289,11204,'_wp_page_template','100-width.php'),(12290,11204,'slide_template','default'),(12291,11204,'fusion_builder_status','active'),(12292,11204,'pyre_slider_position','default'),(12293,11204,'pyre_slider_type','flex'),(12294,11204,'pyre_slider','0'),(12295,11204,'pyre_wooslider','shortcode'),(12296,11204,'pyre_revslider','0'),(12297,11204,'pyre_elasticslider','0'),(12298,11204,'pyre_fallback',''),(12299,11204,'pyre_avada_rev_styles','default'),(12300,11204,'pyre_main_top_padding',''),(12301,11204,'pyre_main_bottom_padding','0px'),(12302,11204,'pyre_hundredp_padding',''),(12303,11204,'pyre_show_first_featured_image','no'),(12304,11204,'pyre_display_header','yes'),(12305,11204,'pyre_header_100_width','default'),(12306,11204,'pyre_header_bg',''),(12307,11204,'pyre_header_bg_color',''),(12308,11204,'pyre_header_bg_opacity',''),(12309,11204,'pyre_header_bg_full','no'),(12310,11204,'pyre_header_bg_repeat','repeat'),(12311,11204,'pyre_displayed_menu','default'),(12312,11204,'pyre_display_footer','default'),(12313,11204,'pyre_display_copyright','default'),(12314,11204,'pyre_footer_100_width','default'),(12315,11204,'pyre_sidebar_position','default'),(12316,11204,'pyre_page_bg_layout','default'),(12317,11204,'pyre_page_bg',''),(12318,11204,'pyre_page_bg_color',''),(12319,11204,'pyre_page_bg_full','no'),(12320,11204,'pyre_page_bg_repeat','repeat'),(12321,11204,'pyre_wide_page_bg',''),(12322,11204,'pyre_wide_page_bg_color',''),(12323,11204,'pyre_wide_page_bg_full','no'),(12324,11204,'pyre_wide_page_bg_repeat','repeat'),(12325,11204,'pyre_portfolio_width_100','no'),(12326,11204,'pyre_portfolio_content_length','default'),(12327,11204,'pyre_portfolio_excerpt',''),(12328,11204,'pyre_portfolio_filters','yes'),(12329,11204,'pyre_portfolio_text_layout','default'),(12330,11204,'pyre_portfolio_featured_image_size','default'),(12331,11204,'pyre_portfolio_column_spacing',''),(12332,11204,'pyre_page_title','no'),(12333,11204,'pyre_page_title_text','yes'),(12334,11204,'pyre_page_title_text_alignment','default'),(12335,11204,'pyre_page_title_custom_text',''),(12336,11204,'pyre_page_title_100_width','default'),(12337,11204,'pyre_page_title_text_size',''),(12338,11204,'pyre_page_title_custom_subheader',''),(12339,11204,'pyre_page_title_custom_subheader_text_size',''),(12340,11204,'pyre_page_title_font_color',''),(12341,11204,'pyre_page_title_height',''),(12342,11204,'pyre_page_title_bar_bg',''),(12343,11204,'pyre_page_title_bar_bg_retina',''),(12344,11204,'pyre_page_title_bar_bg_color',''),(12345,11204,'pyre_page_title_bar_bg_full','default'),(12346,11204,'pyre_page_title_bg_parallax','default'),(12347,11204,'pyre_page_title_breadcrumbs_search_bar','default'),(12348,11204,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12349,11204,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12350,11204,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12351,11204,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12352,11229,'_wp_page_template','100-width.php'),(12353,11229,'slide_template','default'),(12354,11229,'fusion_builder_status','active'),(12355,11229,'pyre_slider_position','default'),(12356,11229,'pyre_slider_type','flex'),(12357,11229,'pyre_slider','0'),(12358,11229,'pyre_wooslider','shortcode'),(12359,11229,'pyre_revslider','0'),(12360,11229,'pyre_elasticslider','0'),(12361,11229,'pyre_fallback',''),(12362,11229,'pyre_avada_rev_styles','default'),(12363,11229,'pyre_main_top_padding',''),(12364,11229,'pyre_main_bottom_padding','0px'),(12365,11229,'pyre_hundredp_padding',''),(12366,11229,'pyre_show_first_featured_image','no'),(12367,11229,'pyre_display_header','yes'),(12368,11229,'pyre_header_100_width','default'),(12369,11229,'pyre_header_bg',''),(12370,11229,'pyre_header_bg_color',''),(12371,11229,'pyre_header_bg_opacity',''),(12372,11229,'pyre_header_bg_full','no'),(12373,11229,'pyre_header_bg_repeat','repeat'),(12374,11229,'pyre_displayed_menu','default'),(12375,11229,'pyre_display_footer','default'),(12376,11229,'pyre_display_copyright','default'),(12377,11229,'pyre_footer_100_width','default'),(12378,11229,'pyre_sidebar_position','default'),(12379,11229,'pyre_page_bg_layout','default'),(12380,11229,'pyre_page_bg',''),(12381,11229,'pyre_page_bg_color',''),(12382,11229,'pyre_page_bg_full','no'),(12383,11229,'pyre_page_bg_repeat','repeat'),(12384,11229,'pyre_wide_page_bg',''),(12385,11229,'pyre_wide_page_bg_color',''),(12386,11229,'pyre_wide_page_bg_full','no'),(12387,11229,'pyre_wide_page_bg_repeat','repeat'),(12388,11229,'pyre_portfolio_width_100','no'),(12389,11229,'pyre_portfolio_content_length','default'),(12390,11229,'pyre_portfolio_excerpt',''),(12391,11229,'pyre_portfolio_filters','yes'),(12392,11229,'pyre_portfolio_text_layout','default'),(12393,11229,'pyre_portfolio_featured_image_size','default'),(12394,11229,'pyre_portfolio_column_spacing',''),(12395,11229,'pyre_page_title','no'),(12396,11229,'pyre_page_title_text','yes'),(12397,11229,'pyre_page_title_text_alignment','default'),(12398,11229,'pyre_page_title_custom_text',''),(12399,11229,'pyre_page_title_100_width','default'),(12400,11229,'pyre_page_title_text_size',''),(12401,11229,'pyre_page_title_custom_subheader',''),(12402,11229,'pyre_page_title_custom_subheader_text_size',''),(12403,11229,'pyre_page_title_font_color',''),(12404,11229,'pyre_page_title_height',''),(12405,11229,'pyre_page_title_bar_bg',''),(12406,11229,'pyre_page_title_bar_bg_retina',''),(12407,11229,'pyre_page_title_bar_bg_color',''),(12408,11229,'pyre_page_title_bar_bg_full','default'),(12409,11229,'pyre_page_title_bg_parallax','default'),(12410,11229,'pyre_page_title_breadcrumbs_search_bar','default'),(12411,11229,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12412,11229,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12413,11229,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12414,11229,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12415,11234,'_wp_page_template','100-width.php'),(12416,11234,'slide_template','default'),(12417,11234,'fusion_builder_status','active'),(12418,11234,'pyre_slider_position','default'),(12419,11234,'pyre_slider_type','flex'),(12420,11234,'pyre_slider','0'),(12421,11234,'pyre_wooslider','shortcode'),(12422,11234,'pyre_revslider','0'),(12423,11234,'pyre_elasticslider','0'),(12424,11234,'pyre_fallback',''),(12425,11234,'pyre_avada_rev_styles','default'),(12426,11234,'pyre_main_top_padding',''),(12427,11234,'pyre_main_bottom_padding','0px'),(12428,11234,'pyre_hundredp_padding',''),(12429,11234,'pyre_show_first_featured_image','no'),(12430,11234,'pyre_display_header','yes'),(12431,11234,'pyre_header_100_width','default'),(12432,11234,'pyre_header_bg',''),(12433,11234,'pyre_header_bg_color',''),(12434,11234,'pyre_header_bg_opacity',''),(12435,11234,'pyre_header_bg_full','no'),(12436,11234,'pyre_header_bg_repeat','repeat'),(12437,11234,'pyre_displayed_menu','default'),(12438,11234,'pyre_display_footer','default'),(12439,11234,'pyre_display_copyright','default'),(12440,11234,'pyre_footer_100_width','default'),(12441,11234,'pyre_sidebar_position','default'),(12442,11234,'pyre_page_bg_layout','default'),(12443,11234,'pyre_page_bg',''),(12444,11234,'pyre_page_bg_color',''),(12445,11234,'pyre_page_bg_full','no'),(12446,11234,'pyre_page_bg_repeat','repeat'),(12447,11234,'pyre_wide_page_bg',''),(12448,11234,'pyre_wide_page_bg_color',''),(12449,11234,'pyre_wide_page_bg_full','no'),(12450,11234,'pyre_wide_page_bg_repeat','repeat'),(12451,11234,'pyre_portfolio_width_100','no'),(12452,11234,'pyre_portfolio_content_length','default'),(12453,11234,'pyre_portfolio_excerpt',''),(12454,11234,'pyre_portfolio_filters','yes'),(12455,11234,'pyre_portfolio_text_layout','default'),(12456,11234,'pyre_portfolio_featured_image_size','default'),(12457,11234,'pyre_portfolio_column_spacing',''),(12458,11234,'pyre_page_title','no'),(12459,11234,'pyre_page_title_text','yes'),(12460,11234,'pyre_page_title_text_alignment','default'),(12461,11234,'pyre_page_title_custom_text',''),(12462,11234,'pyre_page_title_100_width','default'),(12463,11234,'pyre_page_title_text_size',''),(12464,11234,'pyre_page_title_custom_subheader',''),(12465,11234,'pyre_page_title_custom_subheader_text_size',''),(12466,11234,'pyre_page_title_font_color',''),(12467,11234,'pyre_page_title_height',''),(12468,11234,'pyre_page_title_bar_bg',''),(12469,11234,'pyre_page_title_bar_bg_retina',''),(12470,11234,'pyre_page_title_bar_bg_color',''),(12471,11234,'pyre_page_title_bar_bg_full','default'),(12472,11234,'pyre_page_title_bg_parallax','default'),(12473,11234,'pyre_page_title_breadcrumbs_search_bar','default'),(12474,11234,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12475,11234,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12476,11234,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12477,11234,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12478,11245,'_wp_page_template','100-width.php'),(12479,11245,'slide_template','default'),(12480,11245,'fusion_builder_status','inactive'),(12481,11245,'pyre_slider_position','default'),(12482,11245,'pyre_slider_type','flex'),(12483,11245,'pyre_slider','0'),(12484,11245,'pyre_wooslider','shortcode'),(12485,11245,'pyre_revslider','0'),(12486,11245,'pyre_elasticslider','0'),(12487,11245,'pyre_fallback',''),(12488,11245,'pyre_avada_rev_styles','default'),(12489,11245,'pyre_main_top_padding',''),(12490,11245,'pyre_main_bottom_padding','0px'),(12491,11245,'pyre_hundredp_padding',''),(12492,11245,'pyre_show_first_featured_image','no'),(12493,11245,'pyre_display_header','yes'),(12494,11245,'pyre_header_100_width','default'),(12495,11245,'pyre_header_bg',''),(12496,11245,'pyre_header_bg_color',''),(12497,11245,'pyre_header_bg_opacity',''),(12498,11245,'pyre_header_bg_full','no'),(12499,11245,'pyre_header_bg_repeat','repeat'),(12500,11245,'pyre_displayed_menu','default'),(12501,11245,'pyre_display_footer','default'),(12502,11245,'pyre_display_copyright','default'),(12503,11245,'pyre_footer_100_width','default'),(12504,11245,'pyre_sidebar_position','default'),(12505,11245,'pyre_page_bg_layout','default'),(12506,11245,'pyre_page_bg',''),(12507,11245,'pyre_page_bg_color',''),(12508,11245,'pyre_page_bg_full','no'),(12509,11245,'pyre_page_bg_repeat','repeat'),(12510,11245,'pyre_wide_page_bg',''),(12511,11245,'pyre_wide_page_bg_color',''),(12512,11245,'pyre_wide_page_bg_full','no'),(12513,11245,'pyre_wide_page_bg_repeat','repeat'),(12514,11245,'pyre_portfolio_width_100','no'),(12515,11245,'pyre_portfolio_content_length','default'),(12516,11245,'pyre_portfolio_excerpt',''),(12517,11245,'pyre_portfolio_filters','yes'),(12518,11245,'pyre_portfolio_text_layout','default'),(12519,11245,'pyre_portfolio_featured_image_size','default'),(12520,11245,'pyre_portfolio_column_spacing',''),(12521,11245,'pyre_page_title','no'),(12522,11245,'pyre_page_title_text','yes'),(12523,11245,'pyre_page_title_text_alignment','default'),(12524,11245,'pyre_page_title_custom_text',''),(12525,11245,'pyre_page_title_100_width','default'),(12526,11245,'pyre_page_title_text_size',''),(12527,11245,'pyre_page_title_custom_subheader',''),(12528,11245,'pyre_page_title_custom_subheader_text_size',''),(12529,11245,'pyre_page_title_font_color',''),(12530,11245,'pyre_page_title_height',''),(12531,11245,'pyre_page_title_bar_bg',''),(12532,11245,'pyre_page_title_bar_bg_retina',''),(12533,11245,'pyre_page_title_bar_bg_color',''),(12534,11245,'pyre_page_title_bar_bg_full','default'),(12535,11245,'pyre_page_title_bg_parallax','default'),(12536,11245,'pyre_page_title_breadcrumbs_search_bar','default'),(12537,11245,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12538,11245,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12539,11245,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12540,11245,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12541,11251,'_wp_page_template','100-width.php'),(12542,11251,'slide_template','default'),(12543,11251,'fusion_builder_status','active'),(12544,11251,'pyre_slider_position','default'),(12545,11251,'pyre_slider_type','flex'),(12546,11251,'pyre_slider','0'),(12547,11251,'pyre_wooslider','shortcode'),(12548,11251,'pyre_revslider','0'),(12549,11251,'pyre_elasticslider','0'),(12550,11251,'pyre_fallback',''),(12551,11251,'pyre_avada_rev_styles','default'),(12552,11251,'pyre_main_top_padding',''),(12553,11251,'pyre_main_bottom_padding','0px'),(12554,11251,'pyre_hundredp_padding',''),(12555,11251,'pyre_show_first_featured_image','no'),(12556,11251,'pyre_display_header','yes'),(12557,11251,'pyre_header_100_width','default'),(12558,11251,'pyre_header_bg',''),(12559,11251,'pyre_header_bg_color',''),(12560,11251,'pyre_header_bg_opacity',''),(12561,11251,'pyre_header_bg_full','no'),(12562,11251,'pyre_header_bg_repeat','repeat'),(12563,11251,'pyre_displayed_menu','default'),(12564,11251,'pyre_display_footer','default'),(12565,11251,'pyre_display_copyright','default'),(12566,11251,'pyre_footer_100_width','default'),(12567,11251,'pyre_sidebar_position','default'),(12568,11251,'pyre_page_bg_layout','default'),(12569,11251,'pyre_page_bg',''),(12570,11251,'pyre_page_bg_color',''),(12571,11251,'pyre_page_bg_full','no'),(12572,11251,'pyre_page_bg_repeat','repeat'),(12573,11251,'pyre_wide_page_bg',''),(12574,11251,'pyre_wide_page_bg_color',''),(12575,11251,'pyre_wide_page_bg_full','no'),(12576,11251,'pyre_wide_page_bg_repeat','repeat'),(12577,11251,'pyre_portfolio_width_100','no'),(12578,11251,'pyre_portfolio_content_length','default'),(12579,11251,'pyre_portfolio_excerpt',''),(12580,11251,'pyre_portfolio_filters','yes'),(12581,11251,'pyre_portfolio_text_layout','default'),(12582,11251,'pyre_portfolio_featured_image_size','default'),(12583,11251,'pyre_portfolio_column_spacing',''),(12584,11251,'pyre_page_title','no'),(12585,11251,'pyre_page_title_text','yes'),(12586,11251,'pyre_page_title_text_alignment','default'),(12587,11251,'pyre_page_title_custom_text',''),(12588,11251,'pyre_page_title_100_width','default'),(12589,11251,'pyre_page_title_text_size',''),(12590,11251,'pyre_page_title_custom_subheader',''),(12591,11251,'pyre_page_title_custom_subheader_text_size',''),(12592,11251,'pyre_page_title_font_color',''),(12593,11251,'pyre_page_title_height',''),(12594,11251,'pyre_page_title_bar_bg',''),(12595,11251,'pyre_page_title_bar_bg_retina',''),(12596,11251,'pyre_page_title_bar_bg_color',''),(12597,11251,'pyre_page_title_bar_bg_full','default'),(12598,11251,'pyre_page_title_bg_parallax','default'),(12599,11251,'pyre_page_title_breadcrumbs_search_bar','default'),(12600,11251,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12601,11251,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12602,11251,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12603,11251,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12604,11255,'_wp_page_template','100-width.php'),(12605,11255,'slide_template','default'),(12606,11255,'fusion_builder_status','active'),(12607,11255,'pyre_slider_position','default'),(12608,11255,'pyre_slider_type','flex'),(12609,11255,'pyre_slider','0'),(12610,11255,'pyre_wooslider','shortcode'),(12611,11255,'pyre_revslider','0'),(12612,11255,'pyre_elasticslider','0'),(12613,11255,'pyre_fallback',''),(12614,11255,'pyre_avada_rev_styles','default'),(12615,11255,'pyre_main_top_padding',''),(12616,11255,'pyre_main_bottom_padding','0px'),(12617,11255,'pyre_hundredp_padding',''),(12618,11255,'pyre_show_first_featured_image','no'),(12619,11255,'pyre_display_header','yes'),(12620,11255,'pyre_header_100_width','default'),(12621,11255,'pyre_header_bg',''),(12622,11255,'pyre_header_bg_color',''),(12623,11255,'pyre_header_bg_opacity',''),(12624,11255,'pyre_header_bg_full','no'),(12625,11255,'pyre_header_bg_repeat','repeat'),(12626,11255,'pyre_displayed_menu','default'),(12627,11255,'pyre_display_footer','default'),(12628,11255,'pyre_display_copyright','default'),(12629,11255,'pyre_footer_100_width','default'),(12630,11255,'pyre_sidebar_position','default'),(12631,11255,'pyre_page_bg_layout','default'),(12632,11255,'pyre_page_bg',''),(12633,11255,'pyre_page_bg_color',''),(12634,11255,'pyre_page_bg_full','no'),(12635,11255,'pyre_page_bg_repeat','repeat'),(12636,11255,'pyre_wide_page_bg',''),(12637,11255,'pyre_wide_page_bg_color',''),(12638,11255,'pyre_wide_page_bg_full','no'),(12639,11255,'pyre_wide_page_bg_repeat','repeat'),(12640,11255,'pyre_portfolio_width_100','no'),(12641,11255,'pyre_portfolio_content_length','default'),(12642,11255,'pyre_portfolio_excerpt',''),(12643,11255,'pyre_portfolio_filters','yes'),(12644,11255,'pyre_portfolio_text_layout','default'),(12645,11255,'pyre_portfolio_featured_image_size','default'),(12646,11255,'pyre_portfolio_column_spacing',''),(12647,11255,'pyre_page_title','no'),(12648,11255,'pyre_page_title_text','yes'),(12649,11255,'pyre_page_title_text_alignment','default'),(12650,11255,'pyre_page_title_custom_text',''),(12651,11255,'pyre_page_title_100_width','default'),(12652,11255,'pyre_page_title_text_size',''),(12653,11255,'pyre_page_title_custom_subheader',''),(12654,11255,'pyre_page_title_custom_subheader_text_size',''),(12655,11255,'pyre_page_title_font_color',''),(12656,11255,'pyre_page_title_height',''),(12657,11255,'pyre_page_title_bar_bg',''),(12658,11255,'pyre_page_title_bar_bg_retina',''),(12659,11255,'pyre_page_title_bar_bg_color',''),(12660,11255,'pyre_page_title_bar_bg_full','default'),(12661,11255,'pyre_page_title_bg_parallax','default'),(12662,11255,'pyre_page_title_breadcrumbs_search_bar','default'),(12663,11255,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12664,11255,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12665,11255,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12666,11255,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12667,11297,'_wp_page_template','100-width.php'),(12668,11297,'slide_template','default'),(12669,11297,'fusion_builder_status','active'),(12670,11297,'pyre_slider_position','default'),(12671,11297,'pyre_slider_type','flex'),(12672,11297,'pyre_slider','0'),(12673,11297,'pyre_wooslider','avada-home'),(12674,11297,'pyre_revslider','0'),(12675,11297,'pyre_elasticslider','0'),(12676,11297,'pyre_fallback',''),(12677,11297,'pyre_avada_rev_styles','default'),(12678,11297,'pyre_main_top_padding','0px'),(12679,11297,'pyre_main_bottom_padding','0px'),(12680,11297,'pyre_hundredp_padding',''),(12681,11297,'pyre_show_first_featured_image','no'),(12682,11297,'pyre_display_header','yes'),(12683,11297,'pyre_header_100_width','default'),(12684,11297,'pyre_header_bg',''),(12685,11297,'pyre_header_bg_color',''),(12686,11297,'pyre_header_bg_opacity',''),(12687,11297,'pyre_header_bg_full','no'),(12688,11297,'pyre_header_bg_repeat','repeat'),(12689,11297,'pyre_displayed_menu','default'),(12690,11297,'pyre_display_footer','default'),(12691,11297,'pyre_display_copyright','default'),(12692,11297,'pyre_footer_100_width','default'),(12693,11297,'pyre_sidebar_position','default'),(12694,11297,'pyre_sidebar_bg_color',''),(12695,11297,'pyre_page_bg_layout','default'),(12696,11297,'pyre_page_bg',''),(12697,11297,'pyre_page_bg_color',''),(12698,11297,'pyre_page_bg_full','no'),(12699,11297,'pyre_page_bg_repeat','repeat'),(12700,11297,'pyre_wide_page_bg',''),(12701,11297,'pyre_wide_page_bg_color',''),(12702,11297,'pyre_wide_page_bg_full','no'),(12703,11297,'pyre_wide_page_bg_repeat','repeat'),(12704,11297,'pyre_portfolio_width_100','no'),(12705,11297,'pyre_portfolio_content_length','default'),(12706,11297,'pyre_portfolio_excerpt',''),(12707,11297,'pyre_portfolio_filters','yes'),(12708,11297,'pyre_portfolio_text_layout','default'),(12709,11297,'pyre_portfolio_featured_image_size','default'),(12710,11297,'pyre_portfolio_column_spacing',''),(12711,11297,'pyre_page_title','no'),(12712,11297,'pyre_page_title_text','default'),(12713,11297,'pyre_page_title_text_alignment','default'),(12714,11297,'pyre_page_title_100_width','default'),(12715,11297,'pyre_page_title_custom_text',''),(12716,11297,'pyre_page_title_text_size',''),(12717,11297,'pyre_page_title_custom_subheader',''),(12718,11297,'pyre_page_title_custom_subheader_text_size',''),(12719,11297,'pyre_page_title_font_color',''),(12720,11297,'pyre_page_title_height',''),(12721,11297,'pyre_page_title_mobile_height',''),(12722,11297,'pyre_page_title_bar_bg',''),(12723,11297,'pyre_page_title_bar_bg_retina',''),(12724,11297,'pyre_page_title_bar_bg_color',''),(12725,11297,'pyre_page_title_bar_borders_color',''),(12726,11297,'pyre_page_title_bar_bg_full','default'),(12727,11297,'pyre_page_title_bg_parallax','default'),(12728,11297,'pyre_page_title_breadcrumbs_search_bar','default'),(12729,11297,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12730,11297,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12731,11297,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12732,11297,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12733,11304,'_wp_page_template','100-width.php'),(12734,11304,'slide_template','default'),(12735,11304,'fusion_builder_status','active'),(12736,11304,'pyre_slider_position','default'),(12737,11304,'pyre_slider_type','no'),(12738,11304,'pyre_slider','0'),(12739,11304,'pyre_wooslider','0'),(12740,11304,'pyre_revslider','0'),(12741,11304,'pyre_elasticslider','0'),(12742,11304,'pyre_fallback',''),(12743,11304,'pyre_avada_rev_styles','default'),(12744,11304,'pyre_main_top_padding','0px'),(12745,11304,'pyre_main_bottom_padding','0px'),(12746,11304,'pyre_hundredp_padding',''),(12747,11304,'pyre_show_first_featured_image','no'),(12748,11304,'pyre_display_header','yes'),(12749,11304,'pyre_header_100_width','default'),(12750,11304,'pyre_header_bg',''),(12751,11304,'pyre_header_bg_color',''),(12752,11304,'pyre_header_bg_opacity',''),(12753,11304,'pyre_header_bg_full','no'),(12754,11304,'pyre_header_bg_repeat','repeat'),(12755,11304,'pyre_displayed_menu','default'),(12756,11304,'pyre_display_footer','default'),(12757,11304,'pyre_display_copyright','default'),(12758,11304,'pyre_footer_100_width','default'),(12759,11304,'pyre_sidebar_position','default'),(12760,11304,'pyre_sidebar_bg_color',''),(12761,11304,'pyre_page_bg_layout','default'),(12762,11304,'pyre_page_bg',''),(12763,11304,'pyre_page_bg_color',''),(12764,11304,'pyre_page_bg_full','no'),(12765,11304,'pyre_page_bg_repeat','repeat'),(12766,11304,'pyre_wide_page_bg',''),(12767,11304,'pyre_wide_page_bg_color',''),(12768,11304,'pyre_wide_page_bg_full','no'),(12769,11304,'pyre_wide_page_bg_repeat','repeat'),(12770,11304,'pyre_portfolio_width_100','no'),(12771,11304,'pyre_portfolio_content_length','default'),(12772,11304,'pyre_portfolio_excerpt',''),(12773,11304,'pyre_portfolio_filters','yes'),(12774,11304,'pyre_portfolio_text_layout','default'),(12775,11304,'pyre_portfolio_featured_image_size','default'),(12776,11304,'pyre_portfolio_column_spacing',''),(12777,11304,'pyre_page_title','no'),(12778,11304,'pyre_page_title_text','default'),(12779,11304,'pyre_page_title_text_alignment','default'),(12780,11304,'pyre_page_title_100_width','default'),(12781,11304,'pyre_page_title_custom_text',''),(12782,11304,'pyre_page_title_text_size',''),(12783,11304,'pyre_page_title_custom_subheader',''),(12784,11304,'pyre_page_title_custom_subheader_text_size',''),(12785,11304,'pyre_page_title_font_color',''),(12786,11304,'pyre_page_title_height',''),(12787,11304,'pyre_page_title_mobile_height',''),(12788,11304,'pyre_page_title_bar_bg',''),(12789,11304,'pyre_page_title_bar_bg_retina',''),(12790,11304,'pyre_page_title_bar_bg_color',''),(12791,11304,'pyre_page_title_bar_borders_color',''),(12792,11304,'pyre_page_title_bar_bg_full','default'),(12793,11304,'pyre_page_title_bg_parallax','default'),(12794,11304,'pyre_page_title_breadcrumbs_search_bar','default'),(12795,11304,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12796,11304,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12797,11304,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12798,11304,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12799,11313,'_wp_page_template','100-width.php'),(12800,11313,'slide_template','default'),(12801,11313,'fusion_builder_status','active'),(12802,11313,'pyre_slider_position','default'),(12803,11313,'pyre_slider_type','flex'),(12804,11313,'pyre_slider','0'),(12805,11313,'pyre_wooslider','avada-home'),(12806,11313,'pyre_revslider','0'),(12807,11313,'pyre_elasticslider','0'),(12808,11313,'pyre_fallback',''),(12809,11313,'pyre_avada_rev_styles','default'),(12810,11313,'pyre_main_top_padding','25px'),(12811,11313,'pyre_main_bottom_padding','0px'),(12812,11313,'pyre_hundredp_padding',''),(12813,11313,'pyre_show_first_featured_image','no'),(12814,11313,'pyre_display_header','yes'),(12815,11313,'pyre_header_100_width','default'),(12816,11313,'pyre_header_bg',''),(12817,11313,'pyre_header_bg_color',''),(12818,11313,'pyre_header_bg_opacity',''),(12819,11313,'pyre_header_bg_full','no'),(12820,11313,'pyre_header_bg_repeat','repeat'),(12821,11313,'pyre_displayed_menu','default'),(12822,11313,'pyre_display_footer','default'),(12823,11313,'pyre_display_copyright','default'),(12824,11313,'pyre_footer_100_width','default'),(12825,11313,'pyre_sidebar_position','default'),(12826,11313,'pyre_sidebar_bg_color',''),(12827,11313,'pyre_page_bg_layout','default'),(12828,11313,'pyre_page_bg',''),(12829,11313,'pyre_page_bg_color',''),(12830,11313,'pyre_page_bg_full','no'),(12831,11313,'pyre_page_bg_repeat','repeat'),(12832,11313,'pyre_wide_page_bg',''),(12833,11313,'pyre_wide_page_bg_color',''),(12834,11313,'pyre_wide_page_bg_full','no'),(12835,11313,'pyre_wide_page_bg_repeat','repeat'),(12836,11313,'pyre_portfolio_width_100','no'),(12837,11313,'pyre_portfolio_content_length','default'),(12838,11313,'pyre_portfolio_excerpt',''),(12839,11313,'pyre_portfolio_filters','yes'),(12840,11313,'pyre_portfolio_text_layout','default'),(12841,11313,'pyre_portfolio_featured_image_size','default'),(12842,11313,'pyre_portfolio_column_spacing',''),(12843,11313,'pyre_page_title','no'),(12844,11313,'pyre_page_title_text','default'),(12845,11313,'pyre_page_title_text_alignment','default'),(12846,11313,'pyre_page_title_100_width','default'),(12847,11313,'pyre_page_title_custom_text',''),(12848,11313,'pyre_page_title_text_size',''),(12849,11313,'pyre_page_title_custom_subheader',''),(12850,11313,'pyre_page_title_custom_subheader_text_size',''),(12851,11313,'pyre_page_title_font_color',''),(12852,11313,'pyre_page_title_height',''),(12853,11313,'pyre_page_title_mobile_height',''),(12854,11313,'pyre_page_title_bar_bg',''),(12855,11313,'pyre_page_title_bar_bg_retina',''),(12856,11313,'pyre_page_title_bar_bg_color',''),(12857,11313,'pyre_page_title_bar_borders_color',''),(12858,11313,'pyre_page_title_bar_bg_full','default'),(12859,11313,'pyre_page_title_bg_parallax','default'),(12860,11313,'pyre_page_title_breadcrumbs_search_bar','default'),(12861,11313,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12862,11313,'sbg_selected_sidebar_replacement','a:1:{i:0;s:0:\"\";}'),(12863,11313,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(12864,11313,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:0:\"\";}'),(12865,4118,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12866,4118,'_height',''),(12867,4118,'_width',''),(12868,4118,'_sale_price_dates_to',''),(12869,4118,'_price','80'),(12870,4118,'_sold_individually',''),(12871,4118,'_stock',''),(12872,4118,'_backorders','no'),(12873,4118,'_manage_stock','no'),(12874,4118,'pyre_full_width','yes'),(12875,4118,'pyre_sidebar_position','default'),(12876,4118,'pyre_slider_type','no'),(12877,4118,'pyre_slider','0'),(12878,4118,'pyre_wooslider','0'),(12879,4118,'pyre_flexslider','0'),(12880,4118,'pyre_revslider','0'),(12881,4118,'pyre_elasticslider','0'),(12882,4118,'pyre_fallback',''),(12883,4118,'pyre_page_bg_layout','default'),(12884,4118,'pyre_page_bg',''),(12885,4118,'pyre_page_bg_color',''),(12886,4118,'pyre_page_bg_full','no'),(12887,4118,'pyre_page_bg_repeat','repeat'),(12888,4118,'pyre_wide_page_bg',''),(12889,4118,'pyre_wide_page_bg_color',''),(12890,4118,'pyre_wide_page_bg_full','no'),(12891,4118,'pyre_wide_page_bg_repeat','repeat'),(12892,4118,'pyre_header_bg',''),(12893,4118,'pyre_header_bg_color',''),(12894,4118,'pyre_header_bg_full','no'),(12895,4118,'pyre_header_bg_repeat','repeat'),(12896,4118,'pyre_page_title','yes'),(12897,4118,'pyre_page_title_text','yes'),(12898,4118,'pyre_page_title_custom_text',''),(12899,4118,'pyre_page_title_custom_subheader',''),(12900,4118,'pyre_page_title_height',''),(12901,4118,'pyre_page_title_bar_bg',''),(12902,4118,'pyre_page_title_bar_bg_retina',''),(12903,4118,'pyre_page_title_bar_bg_full','default'),(12904,4118,'_sale_price_dates_from',''),(12905,4118,'_thumbnail_id','4113'),(12906,4118,'_visibility','visible'),(12907,4118,'_stock_status','instock'),(12908,4118,'total_sales','0'),(12909,4118,'_downloadable','no'),(12910,4118,'_virtual','no'),(12911,4118,'_product_image_gallery','4113,4113,4113'),(12912,4118,'_regular_price','80'),(12913,4118,'_sale_price',''),(12914,4118,'_purchase_note',''),(12915,4118,'_featured','yes'),(12916,4118,'_weight',''),(12917,4118,'_length',''),(12918,4118,'_sku','006'),(12919,4118,'pyre_page_title_bar_bg_color',''),(12920,4118,'pyre_page_title_bg_parallax','default'),(12921,4118,'slide_template',''),(12922,4118,'pyre_display_header','yes'),(12923,4118,'pyre_transparent_header','default'),(12924,4118,'pyre_displayed_menu','default'),(12925,4118,'pyre_display_footer','default'),(12926,4118,'pyre_display_copyright','default'),(12927,4118,'pyre_slider_position','default'),(12928,4118,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12929,4118,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(12930,4124,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12931,4124,'_height',''),(12932,4124,'_width',''),(12933,4124,'_sale_price_dates_to',''),(12934,4124,'_price','75'),(12935,4124,'_sold_individually',''),(12936,4124,'_stock',''),(12937,4124,'_backorders','no'),(12938,4124,'_manage_stock','no'),(12939,4124,'pyre_full_width','no'),(12940,4124,'pyre_sidebar_position','default'),(12941,4124,'pyre_slider_type','no'),(12942,4124,'pyre_slider','0'),(12943,4124,'pyre_wooslider','0'),(12944,4124,'pyre_flexslider','0'),(12945,4124,'pyre_revslider','0'),(12946,4124,'pyre_elasticslider','0'),(12947,4124,'pyre_fallback',''),(12948,4124,'pyre_page_bg_layout','default'),(12949,4124,'pyre_page_bg',''),(12950,4124,'pyre_page_bg_color',''),(12951,4124,'pyre_page_bg_full','no'),(12952,4124,'pyre_page_bg_repeat','repeat'),(12953,4124,'pyre_wide_page_bg',''),(12954,4124,'pyre_wide_page_bg_color',''),(12955,4124,'pyre_wide_page_bg_full','no'),(12956,4124,'pyre_wide_page_bg_repeat','repeat'),(12957,4124,'pyre_header_bg',''),(12958,4124,'pyre_header_bg_color',''),(12959,4124,'pyre_header_bg_full','no'),(12960,4124,'pyre_header_bg_repeat','repeat'),(12961,4124,'pyre_page_title','yes'),(12962,4124,'pyre_page_title_text','yes'),(12963,4124,'pyre_page_title_custom_text',''),(12964,4124,'pyre_page_title_custom_subheader',''),(12965,4124,'pyre_page_title_height',''),(12966,4124,'pyre_page_title_bar_bg',''),(12967,4124,'pyre_page_title_bar_bg_retina',''),(12968,4124,'pyre_page_title_bar_bg_full','default'),(12969,4124,'_sale_price_dates_from',''),(12970,4124,'_thumbnail_id','4113'),(12971,4124,'_visibility','visible'),(12972,4124,'_stock_status','instock'),(12973,4124,'total_sales','0'),(12974,4124,'_downloadable','no'),(12975,4124,'_virtual','no'),(12976,4124,'_product_image_gallery','4113,4113'),(12977,4124,'_regular_price','85'),(12978,4124,'_sale_price','75'),(12979,4124,'_purchase_note',''),(12980,4124,'_featured','yes'),(12981,4124,'_weight',''),(12982,4124,'_length',''),(12983,4124,'_sku','007'),(12984,4124,'pyre_page_title_bar_bg_color',''),(12985,4124,'pyre_page_title_bg_parallax','default'),(12986,4124,'slide_template',''),(12987,4124,'pyre_display_header','yes'),(12988,4124,'pyre_transparent_header','default'),(12989,4124,'pyre_displayed_menu','default'),(12990,4124,'pyre_display_footer','default'),(12991,4124,'pyre_display_copyright','default'),(12992,4124,'pyre_slider_position','default'),(12993,4124,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(12994,4124,'sbg_selected_sidebar_replacement','a:1:{i:0;s:12:\"Blog Sidebar\";}'),(12995,4125,'_product_attributes','a:5:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:38:\"X-Small, Small, Medium, Large, X-Large\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:24:\"Comes in Earth Tone Grey\";s:8:\"position\";s:1:\"1\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:8:\"material\";a:6:{s:4:\"name\";s:8:\"Material\";s:5:\"value\";s:30:\"CoolMax Cotton/Polyester Blend\";s:8:\"position\";s:1:\"2\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:5:\"other\";a:6:{s:4:\"name\";s:5:\"Other\";s:5:\"value\";s:29:\"Printed Internal Label Detail\";s:8:\"position\";s:1:\"3\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"weight\";a:6:{s:4:\"name\";s:6:\"Weight\";s:5:\"value\";s:3:\"N/A\";s:8:\"position\";s:1:\"4\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(12996,4125,'_height',''),(12997,4125,'_width',''),(12998,4125,'_sale_price_dates_to',''),(12999,4125,'_price','80'),(13000,4125,'_sold_individually',''),(13001,4125,'_stock',''),(13002,4125,'_backorders','no'),(13003,4125,'_manage_stock','no'),(13004,4125,'pyre_full_width','yes'),(13005,4125,'pyre_sidebar_position','default'),(13006,4125,'pyre_slider_type','no'),(13007,4125,'pyre_slider','0'),(13008,4125,'pyre_wooslider','0'),(13009,4125,'pyre_flexslider','0'),(13010,4125,'pyre_revslider','0'),(13011,4125,'pyre_elasticslider','0'),(13012,4125,'pyre_fallback',''),(13013,4125,'pyre_page_bg_layout','default'),(13014,4125,'pyre_page_bg',''),(13015,4125,'pyre_page_bg_color',''),(13016,4125,'pyre_page_bg_full','no'),(13017,4125,'pyre_page_bg_repeat','repeat'),(13018,4125,'pyre_wide_page_bg',''),(13019,4125,'pyre_wide_page_bg_color',''),(13020,4125,'pyre_wide_page_bg_full','no'),(13021,4125,'pyre_wide_page_bg_repeat','repeat'),(13022,4125,'pyre_header_bg',''),(13023,4125,'pyre_header_bg_color',''),(13024,4125,'pyre_header_bg_full','no'),(13025,4125,'pyre_header_bg_repeat','repeat'),(13026,4125,'pyre_page_title','yes'),(13027,4125,'pyre_page_title_text','yes'),(13028,4125,'pyre_page_title_custom_text',''),(13029,4125,'pyre_page_title_custom_subheader',''),(13030,4125,'pyre_page_title_height',''),(13031,4125,'pyre_page_title_bar_bg',''),(13032,4125,'pyre_page_title_bar_bg_retina',''),(13033,4125,'pyre_page_title_bar_bg_full','default'),(13034,4125,'_sale_price_dates_from',''),(13035,4125,'_thumbnail_id','4113'),(13036,4125,'_visibility','visible'),(13037,4125,'_stock_status','instock'),(13038,4125,'total_sales','0'),(13039,4125,'_downloadable','no'),(13040,4125,'_virtual','no'),(13041,4125,'_product_image_gallery','4113,4113,4113'),(13042,4125,'_regular_price','80'),(13043,4125,'_sale_price',''),(13044,4125,'_purchase_note',''),(13045,4125,'_featured','yes'),(13046,4125,'_weight',''),(13047,4125,'_length',''),(13048,4125,'_sku','008'),(13049,4125,'pyre_page_title_bar_bg_color',''),(13050,4125,'pyre_page_title_bg_parallax','default'),(13051,4125,'slide_template',''),(13052,4125,'pyre_display_header','yes'),(13053,4125,'pyre_transparent_header','default'),(13054,4125,'pyre_displayed_menu','default'),(13055,4125,'pyre_display_footer','default'),(13056,4125,'pyre_display_copyright','default'),(13057,4125,'pyre_slider_position','default'),(13058,4125,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(13059,4125,'sbg_selected_sidebar_replacement','a:1:{i:0;s:1:\"0\";}'),(13060,11531,'_menu_item_type','post_type'),(13061,11531,'_menu_item_menu_item_parent','11498'),(13062,11531,'_menu_item_object_id','11508'),(13063,11531,'_menu_item_object','page'),(13064,11531,'_menu_item_target',''),(13065,11531,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13066,11531,'_menu_item_xfn',''),(13067,11531,'_menu_item_url',''),(13068,11531,'_menu_item_fusion_megamenu_icon',''),(13069,11531,'_menu_item_fusion_megamenu_title',''),(13070,11531,'_menu_item_fusion_megamenu_widgetarea','0'),(13071,11531,'_menu_item_fusion_megamenu_columnwidth',''),(13072,11531,'_menu_item_fusion_megamenu_thumbnail',''),(13073,11532,'_menu_item_type','post_type'),(13074,11532,'_menu_item_menu_item_parent','11498'),(13075,11532,'_menu_item_object_id','11510'),(13076,11532,'_menu_item_object','page'),(13077,11532,'_menu_item_target',''),(13078,11532,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13079,11532,'_menu_item_xfn',''),(13080,11532,'_menu_item_url',''),(13081,11532,'_menu_item_fusion_megamenu_icon',''),(13082,11532,'_menu_item_fusion_megamenu_title',''),(13083,11532,'_menu_item_fusion_megamenu_widgetarea','0'),(13084,11532,'_menu_item_fusion_megamenu_columnwidth',''),(13085,11532,'_menu_item_fusion_megamenu_thumbnail',''),(13086,11533,'_menu_item_type','post_type'),(13087,11533,'_menu_item_menu_item_parent','11475'),(13088,11533,'_menu_item_object_id','54'),(13089,11533,'_menu_item_object','page'),(13090,11533,'_menu_item_target',''),(13091,11533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13092,11533,'_menu_item_xfn',''),(13093,11533,'_menu_item_url',''),(13094,11533,'_menu_item_fusion_megamenu_icon',''),(13095,11533,'_menu_item_fusion_megamenu_title',''),(13096,11533,'_menu_item_fusion_megamenu_widgetarea','0'),(13097,11533,'_menu_item_fusion_megamenu_columnwidth',''),(13098,11533,'_menu_item_fusion_megamenu_thumbnail',''),(13099,11534,'_menu_item_type','post_type'),(13100,11534,'_menu_item_menu_item_parent','11477'),(13101,11534,'_menu_item_object_id','11512'),(13102,11534,'_menu_item_object','page'),(13103,11534,'_menu_item_target',''),(13104,11534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13105,11534,'_menu_item_xfn',''),(13106,11534,'_menu_item_url',''),(13107,11534,'_menu_item_fusion_megamenu_icon',''),(13108,11534,'_menu_item_fusion_megamenu_title',''),(13109,11534,'_menu_item_fusion_megamenu_widgetarea','0'),(13110,11534,'_menu_item_fusion_megamenu_columnwidth',''),(13111,11534,'_menu_item_fusion_megamenu_thumbnail',''),(13112,11535,'_menu_item_type','post_type'),(13113,11535,'_menu_item_menu_item_parent','11477'),(13114,11535,'_menu_item_object_id','11511'),(13115,11535,'_menu_item_object','page'),(13116,11535,'_menu_item_target',''),(13117,11535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13118,11535,'_menu_item_xfn',''),(13119,11535,'_menu_item_url',''),(13120,11535,'_menu_item_fusion_megamenu_icon',''),(13121,11535,'_menu_item_fusion_megamenu_title',''),(13122,11535,'_menu_item_fusion_megamenu_widgetarea','0'),(13123,11535,'_menu_item_fusion_megamenu_columnwidth',''),(13124,11535,'_menu_item_fusion_megamenu_thumbnail',''),(13125,11536,'_menu_item_type','post_type'),(13126,11536,'_menu_item_menu_item_parent','11477'),(13127,11536,'_menu_item_object_id','11514'),(13128,11536,'_menu_item_object','page'),(13129,11536,'_menu_item_target',''),(13130,11536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13131,11536,'_menu_item_xfn',''),(13132,11536,'_menu_item_url',''),(13133,11536,'_menu_item_fusion_megamenu_icon',''),(13134,11536,'_menu_item_fusion_megamenu_title',''),(13135,11536,'_menu_item_fusion_megamenu_widgetarea','0'),(13136,11536,'_menu_item_fusion_megamenu_columnwidth',''),(13137,11536,'_menu_item_fusion_megamenu_thumbnail',''),(13138,11537,'_menu_item_type','post_type'),(13139,11537,'_menu_item_menu_item_parent','11477'),(13140,11537,'_menu_item_object_id','11513'),(13141,11537,'_menu_item_object','page'),(13142,11537,'_menu_item_target',''),(13143,11537,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13144,11537,'_menu_item_xfn',''),(13145,11537,'_menu_item_url',''),(13146,11537,'_menu_item_fusion_megamenu_icon',''),(13147,11537,'_menu_item_fusion_megamenu_title',''),(13148,11537,'_menu_item_fusion_megamenu_widgetarea','0'),(13149,11537,'_menu_item_fusion_megamenu_columnwidth',''),(13150,11537,'_menu_item_fusion_megamenu_thumbnail',''),(13151,11538,'_menu_item_type','post_type'),(13152,11538,'_menu_item_menu_item_parent','11485'),(13153,11538,'_menu_item_object_id','1298'),(13154,11538,'_menu_item_object','page'),(13155,11538,'_menu_item_target',''),(13156,11538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13157,11538,'_menu_item_xfn',''),(13158,11538,'_menu_item_url',''),(13159,11538,'_menu_item_fusion_megamenu_icon',''),(13160,11538,'_menu_item_fusion_megamenu_title',''),(13161,11538,'_menu_item_fusion_megamenu_widgetarea','0'),(13162,11538,'_menu_item_fusion_megamenu_columnwidth',''),(13163,11538,'_menu_item_fusion_megamenu_thumbnail',''),(13164,11539,'_menu_item_type','post_type'),(13165,11539,'_menu_item_menu_item_parent','11485'),(13166,11539,'_menu_item_object_id','1290'),(13167,11539,'_menu_item_object','page'),(13168,11539,'_menu_item_target',''),(13169,11539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13170,11539,'_menu_item_xfn',''),(13171,11539,'_menu_item_url',''),(13172,11539,'_menu_item_fusion_megamenu_icon',''),(13173,11539,'_menu_item_fusion_megamenu_title',''),(13174,11539,'_menu_item_fusion_megamenu_widgetarea','0'),(13175,11539,'_menu_item_fusion_megamenu_columnwidth',''),(13176,11539,'_menu_item_fusion_megamenu_thumbnail',''),(13177,11540,'_menu_item_type','post_type'),(13178,11540,'_menu_item_menu_item_parent','11498'),(13179,11540,'_menu_item_object_id','1345'),(13180,11540,'_menu_item_object','page'),(13181,11540,'_menu_item_target',''),(13182,11540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13183,11540,'_menu_item_xfn',''),(13184,11540,'_menu_item_url',''),(13185,11540,'_menu_item_fusion_megamenu_icon',''),(13186,11540,'_menu_item_fusion_megamenu_title',''),(13187,11540,'_menu_item_fusion_megamenu_widgetarea','0'),(13188,11540,'_menu_item_fusion_megamenu_columnwidth',''),(13189,11540,'_menu_item_fusion_megamenu_thumbnail',''),(13190,11541,'_menu_item_type','post_type'),(13191,11541,'_menu_item_menu_item_parent','11477'),(13192,11541,'_menu_item_object_id','80'),(13193,11541,'_menu_item_object','page'),(13194,11541,'_menu_item_target',''),(13195,11541,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13196,11541,'_menu_item_xfn',''),(13197,11541,'_menu_item_url',''),(13198,11541,'_menu_item_fusion_megamenu_icon',''),(13199,11541,'_menu_item_fusion_megamenu_title',''),(13200,11541,'_menu_item_fusion_megamenu_widgetarea','0'),(13201,11541,'_menu_item_fusion_megamenu_columnwidth',''),(13202,11541,'_menu_item_fusion_megamenu_thumbnail',''),(13203,11542,'_menu_item_type','post_type'),(13204,11542,'_menu_item_menu_item_parent','11477'),(13205,11542,'_menu_item_object_id','1693'),(13206,11542,'_menu_item_object','page'),(13207,11542,'_menu_item_target',''),(13208,11542,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13209,11542,'_menu_item_xfn',''),(13210,11542,'_menu_item_url',''),(13211,11542,'_menu_item_fusion_megamenu_icon',''),(13212,11542,'_menu_item_fusion_megamenu_title',''),(13213,11542,'_menu_item_fusion_megamenu_widgetarea','0'),(13214,11542,'_menu_item_fusion_megamenu_columnwidth',''),(13215,11542,'_menu_item_fusion_megamenu_thumbnail',''),(13216,11543,'_menu_item_type','post_type'),(13217,11543,'_menu_item_menu_item_parent','11477'),(13218,11543,'_menu_item_object_id','2291'),(13219,11543,'_menu_item_object','page'),(13220,11543,'_menu_item_target',''),(13221,11543,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13222,11543,'_menu_item_xfn',''),(13223,11543,'_menu_item_url',''),(13224,11543,'_menu_item_fusion_megamenu_icon',''),(13225,11543,'_menu_item_fusion_megamenu_title',''),(13226,11543,'_menu_item_fusion_megamenu_widgetarea','0'),(13227,11543,'_menu_item_fusion_megamenu_columnwidth',''),(13228,11543,'_menu_item_fusion_megamenu_thumbnail',''),(13229,11544,'_menu_item_type','post_type'),(13230,11544,'_menu_item_menu_item_parent','11498'),(13231,11544,'_menu_item_object_id','2300'),(13232,11544,'_menu_item_object','page'),(13233,11544,'_menu_item_target',''),(13234,11544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13235,11544,'_menu_item_xfn',''),(13236,11544,'_menu_item_url',''),(13237,11544,'_menu_item_fusion_megamenu_icon',''),(13238,11544,'_menu_item_fusion_megamenu_title',''),(13239,11544,'_menu_item_fusion_megamenu_widgetarea','0'),(13240,11544,'_menu_item_fusion_megamenu_columnwidth',''),(13241,11544,'_menu_item_fusion_megamenu_thumbnail',''),(13242,11545,'_menu_item_type','post_type'),(13243,11545,'_menu_item_menu_item_parent','11498'),(13244,11545,'_menu_item_object_id','2318'),(13245,11545,'_menu_item_object','page'),(13246,11545,'_menu_item_target',''),(13247,11545,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13248,11545,'_menu_item_xfn',''),(13249,11545,'_menu_item_url',''),(13250,11545,'_menu_item_fusion_megamenu_icon',''),(13251,11545,'_menu_item_fusion_megamenu_title',''),(13252,11545,'_menu_item_fusion_megamenu_widgetarea','0'),(13253,11545,'_menu_item_fusion_megamenu_columnwidth',''),(13254,11545,'_menu_item_fusion_megamenu_thumbnail',''),(13255,11546,'_menu_item_type','post_type'),(13256,11546,'_menu_item_menu_item_parent','11498'),(13257,11546,'_menu_item_object_id','2367'),(13258,11546,'_menu_item_object','page'),(13259,11546,'_menu_item_target',''),(13260,11546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13261,11546,'_menu_item_xfn',''),(13262,11546,'_menu_item_url',''),(13263,11546,'_menu_item_fusion_megamenu_icon',''),(13264,11546,'_menu_item_fusion_megamenu_title',''),(13265,11546,'_menu_item_fusion_megamenu_widgetarea','0'),(13266,11546,'_menu_item_fusion_megamenu_columnwidth',''),(13267,11546,'_menu_item_fusion_megamenu_thumbnail',''),(13268,11547,'_menu_item_type','post_type'),(13269,11547,'_menu_item_menu_item_parent','11498'),(13270,11547,'_menu_item_object_id','2398'),(13271,11547,'_menu_item_object','page'),(13272,11547,'_menu_item_target',''),(13273,11547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13274,11547,'_menu_item_xfn',''),(13275,11547,'_menu_item_url',''),(13276,11547,'_menu_item_fusion_megamenu_icon',''),(13277,11547,'_menu_item_fusion_megamenu_title',''),(13278,11547,'_menu_item_fusion_megamenu_widgetarea','0'),(13279,11547,'_menu_item_fusion_megamenu_columnwidth',''),(13280,11547,'_menu_item_fusion_megamenu_thumbnail',''),(13281,11548,'_menu_item_type','post_type'),(13282,11548,'_menu_item_menu_item_parent','11477'),(13283,11548,'_menu_item_object_id','2466'),(13284,11548,'_menu_item_object','page'),(13285,11548,'_menu_item_target',''),(13286,11548,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13287,11548,'_menu_item_xfn',''),(13288,11548,'_menu_item_url',''),(13289,11548,'_menu_item_fusion_megamenu_icon',''),(13290,11548,'_menu_item_fusion_megamenu_title',''),(13291,11548,'_menu_item_fusion_megamenu_widgetarea','0'),(13292,11548,'_menu_item_fusion_megamenu_columnwidth',''),(13293,11548,'_menu_item_fusion_megamenu_thumbnail',''),(13294,11549,'_menu_item_type','post_type'),(13295,11549,'_menu_item_menu_item_parent','11498'),(13296,11549,'_menu_item_object_id','2660'),(13297,11549,'_menu_item_object','page'),(13298,11549,'_menu_item_target',''),(13299,11549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13300,11549,'_menu_item_xfn',''),(13301,11549,'_menu_item_url',''),(13302,11549,'_menu_item_fusion_megamenu_icon',''),(13303,11549,'_menu_item_fusion_megamenu_title',''),(13304,11549,'_menu_item_fusion_megamenu_widgetarea','0'),(13305,11549,'_menu_item_fusion_megamenu_columnwidth',''),(13306,11549,'_menu_item_fusion_megamenu_thumbnail',''),(13307,11550,'_menu_item_type','post_type'),(13308,11550,'_menu_item_menu_item_parent','11477'),(13309,11550,'_menu_item_object_id','2712'),(13310,11550,'_menu_item_object','page'),(13311,11550,'_menu_item_target',''),(13312,11550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13313,11550,'_menu_item_xfn',''),(13314,11550,'_menu_item_url',''),(13315,11550,'_menu_item_fusion_megamenu_icon',''),(13316,11550,'_menu_item_fusion_megamenu_title',''),(13317,11550,'_menu_item_fusion_megamenu_widgetarea','0'),(13318,11550,'_menu_item_fusion_megamenu_columnwidth',''),(13319,11550,'_menu_item_fusion_megamenu_thumbnail',''),(13320,11551,'_menu_item_type','post_type'),(13321,11551,'_menu_item_menu_item_parent','11499'),(13322,11551,'_menu_item_object_id','2745'),(13323,11551,'_menu_item_object','page'),(13324,11551,'_menu_item_target',''),(13325,11551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13326,11551,'_menu_item_xfn',''),(13327,11551,'_menu_item_url',''),(13328,11551,'_menu_item_fusion_megamenu_icon',''),(13329,11551,'_menu_item_fusion_megamenu_title',''),(13330,11551,'_menu_item_fusion_megamenu_widgetarea','0'),(13331,11551,'_menu_item_fusion_megamenu_columnwidth',''),(13332,11551,'_menu_item_fusion_megamenu_thumbnail',''),(13333,11552,'_menu_item_type','post_type'),(13334,11552,'_menu_item_menu_item_parent','11477'),(13335,11552,'_menu_item_object_id','2776'),(13336,11552,'_menu_item_object','page'),(13337,11552,'_menu_item_target',''),(13338,11552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13339,11552,'_menu_item_xfn',''),(13340,11552,'_menu_item_url',''),(13341,11552,'_menu_item_fusion_megamenu_icon',''),(13342,11552,'_menu_item_fusion_megamenu_title',''),(13343,11552,'_menu_item_fusion_megamenu_widgetarea','0'),(13344,11552,'_menu_item_fusion_megamenu_columnwidth',''),(13345,11552,'_menu_item_fusion_megamenu_thumbnail',''),(13346,11553,'_menu_item_type','post_type'),(13347,11553,'_menu_item_menu_item_parent','11477'),(13348,11553,'_menu_item_object_id','2803'),(13349,11553,'_menu_item_object','page'),(13350,11553,'_menu_item_target',''),(13351,11553,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13352,11553,'_menu_item_xfn',''),(13353,11553,'_menu_item_url',''),(13354,11553,'_menu_item_fusion_megamenu_icon',''),(13355,11553,'_menu_item_fusion_megamenu_title',''),(13356,11553,'_menu_item_fusion_megamenu_widgetarea','0'),(13357,11553,'_menu_item_fusion_megamenu_columnwidth',''),(13358,11553,'_menu_item_fusion_megamenu_thumbnail',''),(13359,11554,'_menu_item_type','post_type'),(13360,11554,'_menu_item_menu_item_parent','0'),(13361,11554,'_menu_item_object_id','11511'),(13362,11554,'_menu_item_object','page'),(13363,11554,'_menu_item_target',''),(13364,11554,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13365,11554,'_menu_item_xfn',''),(13366,11554,'_menu_item_url',''),(13367,11554,'_menu_item_fusion_menu_style',''),(13368,11554,'_menu_item_fusion_megamenu_icon',''),(13369,11554,'_menu_item_fusion_megamenu_status',''),(13370,11554,'_menu_item_fusion_megamenu_width',''),(13371,11554,'_menu_item_fusion_megamenu_columns','auto'),(13372,11554,'_menu_item_fusion_megamenu_columnwidth',''),(13373,11554,'_menu_item_fusion_megamenu_thumbnail',''),(13374,11555,'_menu_item_type','post_type'),(13375,11555,'_menu_item_menu_item_parent','0'),(13376,11555,'_menu_item_object_id','11514'),(13377,11555,'_menu_item_object','page'),(13378,11555,'_menu_item_target',''),(13379,11555,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13380,11555,'_menu_item_xfn',''),(13381,11555,'_menu_item_url',''),(13382,11555,'_menu_item_fusion_menu_style',''),(13383,11555,'_menu_item_fusion_megamenu_icon',''),(13384,11555,'_menu_item_fusion_megamenu_status',''),(13385,11555,'_menu_item_fusion_megamenu_width',''),(13386,11555,'_menu_item_fusion_megamenu_columns','auto'),(13387,11555,'_menu_item_fusion_megamenu_columnwidth',''),(13388,11555,'_menu_item_fusion_megamenu_thumbnail',''),(13389,11556,'_menu_item_type','post_type'),(13390,11556,'_menu_item_menu_item_parent','0'),(13391,11556,'_menu_item_object_id','2466'),(13392,11556,'_menu_item_object','page'),(13393,11556,'_menu_item_target',''),(13394,11556,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13395,11556,'_menu_item_xfn',''),(13396,11556,'_menu_item_url',''),(13397,11556,'_menu_item_fusion_menu_style',''),(13398,11556,'_menu_item_fusion_megamenu_icon',''),(13399,11556,'_menu_item_fusion_megamenu_status',''),(13400,11556,'_menu_item_fusion_megamenu_width',''),(13401,11556,'_menu_item_fusion_megamenu_columns','auto'),(13402,11556,'_menu_item_fusion_megamenu_columnwidth',''),(13403,11556,'_menu_item_fusion_megamenu_thumbnail',''),(13404,11557,'_menu_item_type','post_type'),(13405,11557,'_menu_item_menu_item_parent','0'),(13406,11557,'_menu_item_object_id','11512'),(13407,11557,'_menu_item_object','page'),(13408,11557,'_menu_item_target',''),(13409,11557,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13410,11557,'_menu_item_xfn',''),(13411,11557,'_menu_item_url',''),(13412,11557,'_menu_item_fusion_menu_style',''),(13413,11557,'_menu_item_fusion_megamenu_icon',''),(13414,11557,'_menu_item_fusion_megamenu_status',''),(13415,11557,'_menu_item_fusion_megamenu_width',''),(13416,11557,'_menu_item_fusion_megamenu_columns','auto'),(13417,11557,'_menu_item_fusion_megamenu_columnwidth',''),(13418,11557,'_menu_item_fusion_megamenu_thumbnail',''),(13419,11558,'_menu_item_type','post_type'),(13420,11558,'_menu_item_menu_item_parent','11499'),(13421,11558,'_menu_item_object_id','3073'),(13422,11558,'_menu_item_object','page'),(13423,11558,'_menu_item_target',''),(13424,11558,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13425,11558,'_menu_item_xfn',''),(13426,11558,'_menu_item_url',''),(13427,11558,'_menu_item_fusion_megamenu_icon',''),(13428,11558,'_menu_item_fusion_megamenu_title',''),(13429,11558,'_menu_item_fusion_megamenu_widgetarea','0'),(13430,11558,'_menu_item_fusion_megamenu_columnwidth',''),(13431,11558,'_menu_item_fusion_megamenu_thumbnail',''),(13432,11559,'_menu_item_type','post_type'),(13433,11559,'_menu_item_menu_item_parent','11485'),(13434,11559,'_menu_item_object_id','3089'),(13435,11559,'_menu_item_object','page'),(13436,11559,'_menu_item_target',''),(13437,11559,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13438,11559,'_menu_item_xfn',''),(13439,11559,'_menu_item_url',''),(13440,11559,'_menu_item_fusion_megamenu_icon',''),(13441,11559,'_menu_item_fusion_megamenu_title',''),(13442,11559,'_menu_item_fusion_megamenu_widgetarea','0'),(13443,11559,'_menu_item_fusion_megamenu_columnwidth',''),(13444,11559,'_menu_item_fusion_megamenu_thumbnail',''),(13445,11560,'_menu_item_type','post_type'),(13446,11560,'_menu_item_menu_item_parent','11477'),(13447,11560,'_menu_item_object_id','3496'),(13448,11560,'_menu_item_object','page'),(13449,11560,'_menu_item_target',''),(13450,11560,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13451,11560,'_menu_item_xfn',''),(13452,11560,'_menu_item_url',''),(13453,11560,'_menu_item_fusion_megamenu_icon',''),(13454,11560,'_menu_item_fusion_megamenu_title',''),(13455,11560,'_menu_item_fusion_megamenu_widgetarea','0'),(13456,11560,'_menu_item_fusion_megamenu_columnwidth',''),(13457,11560,'_menu_item_fusion_megamenu_thumbnail',''),(13458,11561,'_menu_item_type','post_type'),(13459,11561,'_menu_item_menu_item_parent','11499'),(13460,11561,'_menu_item_object_id','3494'),(13461,11561,'_menu_item_object','page'),(13462,11561,'_menu_item_target',''),(13463,11561,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13464,11561,'_menu_item_xfn',''),(13465,11561,'_menu_item_url',''),(13466,11561,'_menu_item_fusion_megamenu_icon',''),(13467,11561,'_menu_item_fusion_megamenu_title',''),(13468,11561,'_menu_item_fusion_megamenu_widgetarea','0'),(13469,11561,'_menu_item_fusion_megamenu_columnwidth',''),(13470,11561,'_menu_item_fusion_megamenu_thumbnail',''),(13471,11562,'_menu_item_type','post_type'),(13472,11562,'_menu_item_menu_item_parent','11499'),(13473,11562,'_menu_item_object_id','3492'),(13474,11562,'_menu_item_object','page'),(13475,11562,'_menu_item_target',''),(13476,11562,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13477,11562,'_menu_item_xfn',''),(13478,11562,'_menu_item_url',''),(13479,11562,'_menu_item_fusion_megamenu_icon',''),(13480,11562,'_menu_item_fusion_megamenu_title',''),(13481,11562,'_menu_item_fusion_megamenu_widgetarea','0'),(13482,11562,'_menu_item_fusion_megamenu_columnwidth',''),(13483,11562,'_menu_item_fusion_megamenu_thumbnail',''),(13484,11563,'_menu_item_type','post_type'),(13485,11563,'_menu_item_menu_item_parent','11533'),(13486,11563,'_menu_item_object_id','3474'),(13487,11563,'_menu_item_object','page'),(13488,11563,'_menu_item_target',''),(13489,11563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13490,11563,'_menu_item_xfn',''),(13491,11563,'_menu_item_url',''),(13492,11563,'_menu_item_fusion_megamenu_icon',''),(13493,11563,'_menu_item_fusion_megamenu_title',''),(13494,11563,'_menu_item_fusion_megamenu_widgetarea','0'),(13495,11563,'_menu_item_fusion_megamenu_columnwidth',''),(13496,11563,'_menu_item_fusion_megamenu_thumbnail',''),(13497,11564,'_menu_item_type','post_type'),(13498,11564,'_menu_item_menu_item_parent','11477'),(13499,11564,'_menu_item_object_id','3678'),(13500,11564,'_menu_item_object','page'),(13501,11564,'_menu_item_target',''),(13502,11564,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13503,11564,'_menu_item_xfn',''),(13504,11564,'_menu_item_url',''),(13505,11564,'_menu_item_fusion_megamenu_icon',''),(13506,11564,'_menu_item_fusion_megamenu_title',''),(13507,11564,'_menu_item_fusion_megamenu_widgetarea','0'),(13508,11564,'_menu_item_fusion_megamenu_columnwidth',''),(13509,11564,'_menu_item_fusion_megamenu_thumbnail',''),(13510,11565,'_menu_item_type','post_type'),(13511,11565,'_menu_item_menu_item_parent','11477'),(13512,11565,'_menu_item_object_id','3662'),(13513,11565,'_menu_item_object','page'),(13514,11565,'_menu_item_target',''),(13515,11565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13516,11565,'_menu_item_xfn',''),(13517,11565,'_menu_item_url',''),(13518,11565,'_menu_item_fusion_megamenu_icon',''),(13519,11565,'_menu_item_fusion_megamenu_title',''),(13520,11565,'_menu_item_fusion_megamenu_widgetarea','0'),(13521,11565,'_menu_item_fusion_megamenu_columnwidth',''),(13522,11565,'_menu_item_fusion_megamenu_thumbnail',''),(13523,11566,'_menu_item_type','post_type'),(13524,11566,'_menu_item_menu_item_parent','11499'),(13525,11566,'_menu_item_object_id','3638'),(13526,11566,'_menu_item_object','page'),(13527,11566,'_menu_item_target',''),(13528,11566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13529,11566,'_menu_item_xfn',''),(13530,11566,'_menu_item_url',''),(13531,11566,'_menu_item_fusion_megamenu_icon',''),(13532,11566,'_menu_item_fusion_megamenu_title',''),(13533,11566,'_menu_item_fusion_megamenu_widgetarea','0'),(13534,11566,'_menu_item_fusion_megamenu_columnwidth',''),(13535,11566,'_menu_item_fusion_megamenu_thumbnail',''),(13536,11567,'_menu_item_type','post_type'),(13537,11567,'_menu_item_menu_item_parent','11499'),(13538,11567,'_menu_item_object_id','3628'),(13539,11567,'_menu_item_object','page'),(13540,11567,'_menu_item_target',''),(13541,11567,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13542,11567,'_menu_item_xfn',''),(13543,11567,'_menu_item_url',''),(13544,11567,'_menu_item_fusion_megamenu_icon',''),(13545,11567,'_menu_item_fusion_megamenu_title',''),(13546,11567,'_menu_item_fusion_megamenu_widgetarea','0'),(13547,11567,'_menu_item_fusion_megamenu_columnwidth',''),(13548,11567,'_menu_item_fusion_megamenu_thumbnail',''),(13549,11568,'_menu_item_type','post_type'),(13550,11568,'_menu_item_menu_item_parent','11499'),(13551,11568,'_menu_item_object_id','3610'),(13552,11568,'_menu_item_object','page'),(13553,11568,'_menu_item_target',''),(13554,11568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13555,11568,'_menu_item_xfn',''),(13556,11568,'_menu_item_url',''),(13557,11568,'_menu_item_fusion_megamenu_icon',''),(13558,11568,'_menu_item_fusion_megamenu_title',''),(13559,11568,'_menu_item_fusion_megamenu_widgetarea','0'),(13560,11568,'_menu_item_fusion_megamenu_columnwidth',''),(13561,11568,'_menu_item_fusion_megamenu_thumbnail',''),(13562,11569,'_menu_item_type','post_type'),(13563,11569,'_menu_item_menu_item_parent','11485'),(13564,11569,'_menu_item_object_id','3705'),(13565,11569,'_menu_item_object','page'),(13566,11569,'_menu_item_target',''),(13567,11569,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13568,11569,'_menu_item_xfn',''),(13569,11569,'_menu_item_url',''),(13570,11569,'_menu_item_fusion_megamenu_icon',''),(13571,11569,'_menu_item_fusion_megamenu_title',''),(13572,11569,'_menu_item_fusion_megamenu_widgetarea','0'),(13573,11569,'_menu_item_fusion_megamenu_columnwidth',''),(13574,11569,'_menu_item_fusion_megamenu_thumbnail',''),(13575,11570,'_menu_item_type','post_type'),(13576,11570,'_menu_item_menu_item_parent','11477'),(13577,11570,'_menu_item_object_id','3713'),(13578,11570,'_menu_item_object','page'),(13579,11570,'_menu_item_target',''),(13580,11570,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13581,11570,'_menu_item_xfn',''),(13582,11570,'_menu_item_url',''),(13583,11570,'_menu_item_fusion_megamenu_icon',''),(13584,11570,'_menu_item_fusion_megamenu_title',''),(13585,11570,'_menu_item_fusion_megamenu_widgetarea','0'),(13586,11570,'_menu_item_fusion_megamenu_columnwidth',''),(13587,11570,'_menu_item_fusion_megamenu_thumbnail',''),(13588,11571,'_menu_item_type','post_type'),(13589,11571,'_menu_item_menu_item_parent','11518'),(13590,11571,'_menu_item_object_id','3745'),(13591,11571,'_menu_item_object','page'),(13592,11571,'_menu_item_target',''),(13593,11571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13594,11571,'_menu_item_xfn',''),(13595,11571,'_menu_item_url',''),(13596,11571,'_menu_item_fusion_megamenu_icon',''),(13597,11571,'_menu_item_fusion_megamenu_title',''),(13598,11571,'_menu_item_fusion_megamenu_widgetarea','0'),(13599,11571,'_menu_item_fusion_megamenu_columnwidth',''),(13600,11571,'_menu_item_fusion_megamenu_thumbnail',''),(13601,11572,'_menu_item_type','post_type'),(13602,11572,'_menu_item_menu_item_parent','11518'),(13603,11572,'_menu_item_object_id','3741'),(13604,11572,'_menu_item_object','page'),(13605,11572,'_menu_item_target',''),(13606,11572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13607,11572,'_menu_item_xfn',''),(13608,11572,'_menu_item_url',''),(13609,11572,'_menu_item_fusion_megamenu_icon',''),(13610,11572,'_menu_item_fusion_megamenu_title',''),(13611,11572,'_menu_item_fusion_megamenu_widgetarea','0'),(13612,11572,'_menu_item_fusion_megamenu_columnwidth',''),(13613,11572,'_menu_item_fusion_megamenu_thumbnail',''),(13614,11573,'_menu_item_type','post_type'),(13615,11573,'_menu_item_menu_item_parent','11519'),(13616,11573,'_menu_item_object_id','3756'),(13617,11573,'_menu_item_object','page'),(13618,11573,'_menu_item_target',''),(13619,11573,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13620,11573,'_menu_item_xfn',''),(13621,11573,'_menu_item_url',''),(13622,11573,'_menu_item_fusion_megamenu_icon',''),(13623,11573,'_menu_item_fusion_megamenu_title',''),(13624,11573,'_menu_item_fusion_megamenu_widgetarea','0'),(13625,11573,'_menu_item_fusion_megamenu_columnwidth',''),(13626,11573,'_menu_item_fusion_megamenu_thumbnail',''),(13627,11574,'_menu_item_type','post_type'),(13628,11574,'_menu_item_menu_item_parent','11519'),(13629,11574,'_menu_item_object_id','3754'),(13630,11574,'_menu_item_object','page'),(13631,11574,'_menu_item_target',''),(13632,11574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13633,11574,'_menu_item_xfn',''),(13634,11574,'_menu_item_url',''),(13635,11574,'_menu_item_fusion_megamenu_icon',''),(13636,11574,'_menu_item_fusion_megamenu_title',''),(13637,11574,'_menu_item_fusion_megamenu_widgetarea','0'),(13638,11574,'_menu_item_fusion_megamenu_columnwidth',''),(13639,11574,'_menu_item_fusion_megamenu_thumbnail',''),(13640,11575,'_menu_item_type','post_type'),(13641,11575,'_menu_item_menu_item_parent','11519'),(13642,11575,'_menu_item_object_id','3749'),(13643,11575,'_menu_item_object','page'),(13644,11575,'_menu_item_target',''),(13645,11575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13646,11575,'_menu_item_xfn',''),(13647,11575,'_menu_item_url',''),(13648,11575,'_menu_item_fusion_megamenu_icon',''),(13649,11575,'_menu_item_fusion_megamenu_title',''),(13650,11575,'_menu_item_fusion_megamenu_widgetarea','0'),(13651,11575,'_menu_item_fusion_megamenu_columnwidth',''),(13652,11575,'_menu_item_fusion_megamenu_thumbnail',''),(13653,11576,'_menu_item_type','post_type'),(13654,11576,'_menu_item_menu_item_parent','11518'),(13655,11576,'_menu_item_object_id','3747'),(13656,11576,'_menu_item_object','page'),(13657,11576,'_menu_item_target',''),(13658,11576,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13659,11576,'_menu_item_xfn',''),(13660,11576,'_menu_item_url',''),(13661,11576,'_menu_item_fusion_megamenu_icon',''),(13662,11576,'_menu_item_fusion_megamenu_title',''),(13663,11576,'_menu_item_fusion_megamenu_widgetarea','0'),(13664,11576,'_menu_item_fusion_megamenu_columnwidth',''),(13665,11576,'_menu_item_fusion_megamenu_thumbnail',''),(13666,11577,'_menu_item_type','post_type'),(13667,11577,'_menu_item_menu_item_parent','11517'),(13668,11577,'_menu_item_object_id','3739'),(13669,11577,'_menu_item_object','page'),(13670,11577,'_menu_item_target',''),(13671,11577,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13672,11577,'_menu_item_xfn',''),(13673,11577,'_menu_item_url',''),(13674,11577,'_menu_item_fusion_megamenu_icon',''),(13675,11577,'_menu_item_fusion_megamenu_title',''),(13676,11577,'_menu_item_fusion_megamenu_widgetarea','0'),(13677,11577,'_menu_item_fusion_megamenu_columnwidth',''),(13678,11577,'_menu_item_fusion_megamenu_thumbnail',''),(13679,11578,'_menu_item_type','post_type'),(13680,11578,'_menu_item_menu_item_parent','11517'),(13681,11578,'_menu_item_object_id','3737'),(13682,11578,'_menu_item_object','page'),(13683,11578,'_menu_item_target',''),(13684,11578,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13685,11578,'_menu_item_xfn',''),(13686,11578,'_menu_item_url',''),(13687,11578,'_menu_item_fusion_megamenu_icon',''),(13688,11578,'_menu_item_fusion_megamenu_title',''),(13689,11578,'_menu_item_fusion_megamenu_widgetarea','0'),(13690,11578,'_menu_item_fusion_megamenu_columnwidth',''),(13691,11578,'_menu_item_fusion_megamenu_thumbnail',''),(13692,11579,'_menu_item_type','post_type'),(13693,11579,'_menu_item_menu_item_parent','11517'),(13694,11579,'_menu_item_object_id','3735'),(13695,11579,'_menu_item_object','page'),(13696,11579,'_menu_item_target',''),(13697,11579,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13698,11579,'_menu_item_xfn',''),(13699,11579,'_menu_item_url',''),(13700,11579,'_menu_item_fusion_megamenu_icon',''),(13701,11579,'_menu_item_fusion_megamenu_title',''),(13702,11579,'_menu_item_fusion_megamenu_widgetarea','0'),(13703,11579,'_menu_item_fusion_megamenu_columnwidth',''),(13704,11579,'_menu_item_fusion_megamenu_thumbnail',''),(13705,11580,'_menu_item_type','post_type'),(13706,11580,'_menu_item_menu_item_parent','11517'),(13707,11580,'_menu_item_object_id','3733'),(13708,11580,'_menu_item_object','page'),(13709,11580,'_menu_item_target',''),(13710,11580,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13711,11580,'_menu_item_xfn',''),(13712,11580,'_menu_item_url',''),(13713,11580,'_menu_item_fusion_megamenu_icon',''),(13714,11580,'_menu_item_fusion_megamenu_title',''),(13715,11580,'_menu_item_fusion_megamenu_widgetarea','0'),(13716,11580,'_menu_item_fusion_megamenu_columnwidth',''),(13717,11580,'_menu_item_fusion_megamenu_thumbnail',''),(13718,11581,'_menu_item_type','post_type'),(13719,11581,'_menu_item_menu_item_parent','11517'),(13720,11581,'_menu_item_object_id','3731'),(13721,11581,'_menu_item_object','page'),(13722,11581,'_menu_item_target',''),(13723,11581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13724,11581,'_menu_item_xfn',''),(13725,11581,'_menu_item_url',''),(13726,11581,'_menu_item_fusion_megamenu_icon',''),(13727,11581,'_menu_item_fusion_megamenu_title',''),(13728,11581,'_menu_item_fusion_megamenu_widgetarea','0'),(13729,11581,'_menu_item_fusion_megamenu_columnwidth',''),(13730,11581,'_menu_item_fusion_megamenu_thumbnail',''),(13731,11582,'_menu_item_type','post_type'),(13732,11582,'_menu_item_menu_item_parent','11517'),(13733,11582,'_menu_item_object_id','3729'),(13734,11582,'_menu_item_object','page'),(13735,11582,'_menu_item_target',''),(13736,11582,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13737,11582,'_menu_item_xfn',''),(13738,11582,'_menu_item_url',''),(13739,11582,'_menu_item_fusion_megamenu_icon',''),(13740,11582,'_menu_item_fusion_megamenu_title',''),(13741,11582,'_menu_item_fusion_megamenu_widgetarea','0'),(13742,11582,'_menu_item_fusion_megamenu_columnwidth',''),(13743,11582,'_menu_item_fusion_megamenu_thumbnail',''),(13744,11583,'_menu_item_type','post_type'),(13745,11583,'_menu_item_menu_item_parent','11516'),(13746,11583,'_menu_item_object_id','3727'),(13747,11583,'_menu_item_object','page'),(13748,11583,'_menu_item_target',''),(13749,11583,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13750,11583,'_menu_item_xfn',''),(13751,11583,'_menu_item_url',''),(13752,11583,'_menu_item_fusion_megamenu_icon',''),(13753,11583,'_menu_item_fusion_megamenu_title',''),(13754,11583,'_menu_item_fusion_megamenu_widgetarea','0'),(13755,11583,'_menu_item_fusion_megamenu_columnwidth',''),(13756,11583,'_menu_item_fusion_megamenu_thumbnail',''),(13757,11584,'_menu_item_type','post_type'),(13758,11584,'_menu_item_menu_item_parent','11519'),(13759,11584,'_menu_item_object_id','3717'),(13760,11584,'_menu_item_object','page'),(13761,11584,'_menu_item_target',''),(13762,11584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13763,11584,'_menu_item_xfn',''),(13764,11584,'_menu_item_url',''),(13765,11584,'_menu_item_fusion_megamenu_icon',''),(13766,11584,'_menu_item_fusion_megamenu_title',''),(13767,11584,'_menu_item_fusion_megamenu_widgetarea','0'),(13768,11584,'_menu_item_fusion_megamenu_columnwidth',''),(13769,11584,'_menu_item_fusion_megamenu_thumbnail',''),(13770,11585,'_menu_item_type','post_type'),(13771,11585,'_menu_item_menu_item_parent','11516'),(13772,11585,'_menu_item_object_id','3719'),(13773,11585,'_menu_item_object','page'),(13774,11585,'_menu_item_target',''),(13775,11585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13776,11585,'_menu_item_xfn',''),(13777,11585,'_menu_item_url',''),(13778,11585,'_menu_item_fusion_megamenu_icon',''),(13779,11585,'_menu_item_fusion_megamenu_title',''),(13780,11585,'_menu_item_fusion_megamenu_widgetarea','0'),(13781,11585,'_menu_item_fusion_megamenu_columnwidth',''),(13782,11585,'_menu_item_fusion_megamenu_thumbnail',''),(13783,11586,'_menu_item_type','post_type'),(13784,11586,'_menu_item_menu_item_parent','11516'),(13785,11586,'_menu_item_object_id','3725'),(13786,11586,'_menu_item_object','page'),(13787,11586,'_menu_item_target',''),(13788,11586,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13789,11586,'_menu_item_xfn',''),(13790,11586,'_menu_item_url',''),(13791,11586,'_menu_item_fusion_megamenu_icon',''),(13792,11586,'_menu_item_fusion_megamenu_title',''),(13793,11586,'_menu_item_fusion_megamenu_widgetarea','0'),(13794,11586,'_menu_item_fusion_megamenu_columnwidth',''),(13795,11586,'_menu_item_fusion_megamenu_thumbnail',''),(13796,11587,'_menu_item_type','post_type'),(13797,11587,'_menu_item_menu_item_parent','11518'),(13798,11587,'_menu_item_object_id','3705'),(13799,11587,'_menu_item_object','page'),(13800,11587,'_menu_item_target',''),(13801,11587,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13802,11587,'_menu_item_xfn',''),(13803,11587,'_menu_item_url',''),(13804,11587,'_menu_item_fusion_megamenu_icon',''),(13805,11587,'_menu_item_fusion_megamenu_title',''),(13806,11587,'_menu_item_fusion_megamenu_widgetarea','0'),(13807,11587,'_menu_item_fusion_megamenu_columnwidth',''),(13808,11587,'_menu_item_fusion_megamenu_thumbnail',''),(13809,11588,'_menu_item_type','post_type'),(13810,11588,'_menu_item_menu_item_parent','11500'),(13811,11588,'_menu_item_object_id','3815'),(13812,11588,'_menu_item_object','page'),(13813,11588,'_menu_item_target',''),(13814,11588,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13815,11588,'_menu_item_xfn',''),(13816,11588,'_menu_item_url',''),(13817,11588,'_menu_item_fusion_megamenu_icon',''),(13818,11588,'_menu_item_fusion_megamenu_title',''),(13819,11588,'_menu_item_fusion_megamenu_widgetarea','0'),(13820,11588,'_menu_item_fusion_megamenu_columnwidth',''),(13821,11588,'_menu_item_fusion_megamenu_thumbnail',''),(13822,11589,'_menu_item_type','post_type'),(13823,11589,'_menu_item_menu_item_parent','11500'),(13824,11589,'_menu_item_object_id','3813'),(13825,11589,'_menu_item_object','page'),(13826,11589,'_menu_item_target',''),(13827,11589,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13828,11589,'_menu_item_xfn',''),(13829,11589,'_menu_item_url',''),(13830,11589,'_menu_item_fusion_megamenu_icon',''),(13831,11589,'_menu_item_fusion_megamenu_title',''),(13832,11589,'_menu_item_fusion_megamenu_widgetarea','0'),(13833,11589,'_menu_item_fusion_megamenu_columnwidth',''),(13834,11589,'_menu_item_fusion_megamenu_thumbnail',''),(13835,11590,'_menu_item_type','post_type'),(13836,11590,'_menu_item_menu_item_parent','0'),(13837,11590,'_menu_item_object_id','11511'),(13838,11590,'_menu_item_object','page'),(13839,11590,'_menu_item_target',''),(13840,11590,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13841,11590,'_menu_item_xfn',''),(13842,11590,'_menu_item_url',''),(13843,11590,'_menu_item_fusion_menu_style',''),(13844,11590,'_menu_item_fusion_megamenu_icon',''),(13845,11590,'_menu_item_fusion_megamenu_status',''),(13846,11590,'_menu_item_fusion_megamenu_width',''),(13847,11590,'_menu_item_fusion_megamenu_columns','auto'),(13848,11590,'_menu_item_fusion_megamenu_columnwidth',''),(13849,11590,'_menu_item_fusion_megamenu_thumbnail',''),(13850,11591,'_menu_item_type','post_type'),(13851,11591,'_menu_item_menu_item_parent','0'),(13852,11591,'_menu_item_object_id','11509'),(13853,11591,'_menu_item_object','page'),(13854,11591,'_menu_item_target',''),(13855,11591,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13856,11591,'_menu_item_xfn',''),(13857,11591,'_menu_item_url',''),(13858,11591,'_menu_item_fusion_menu_style',''),(13859,11591,'_menu_item_fusion_megamenu_icon',''),(13860,11591,'_menu_item_fusion_megamenu_status',''),(13861,11591,'_menu_item_fusion_megamenu_width',''),(13862,11591,'_menu_item_fusion_megamenu_columns','auto'),(13863,11591,'_menu_item_fusion_megamenu_columnwidth',''),(13864,11591,'_menu_item_fusion_megamenu_thumbnail',''),(13865,11592,'_menu_item_type','post_type'),(13866,11592,'_menu_item_menu_item_parent','0'),(13867,11592,'_menu_item_object_id','2466'),(13868,11592,'_menu_item_object','page'),(13869,11592,'_menu_item_target',''),(13870,11592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13871,11592,'_menu_item_xfn',''),(13872,11592,'_menu_item_url',''),(13873,11592,'_menu_item_fusion_menu_style',''),(13874,11592,'_menu_item_fusion_megamenu_icon',''),(13875,11592,'_menu_item_fusion_megamenu_status',''),(13876,11592,'_menu_item_fusion_megamenu_width',''),(13877,11592,'_menu_item_fusion_megamenu_columns','auto'),(13878,11592,'_menu_item_fusion_megamenu_columnwidth',''),(13879,11592,'_menu_item_fusion_megamenu_thumbnail',''),(13880,11593,'_menu_item_type','post_type'),(13881,11593,'_menu_item_menu_item_parent','11522'),(13882,11593,'_menu_item_object_id','4100'),(13883,11593,'_menu_item_object','page'),(13884,11593,'_menu_item_target',''),(13885,11593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13886,11593,'_menu_item_xfn',''),(13887,11593,'_menu_item_url',''),(13888,11593,'_menu_item_fusion_megamenu_icon',''),(13889,11593,'_menu_item_fusion_megamenu_title',''),(13890,11593,'_menu_item_fusion_megamenu_widgetarea','0'),(13891,11593,'_menu_item_fusion_megamenu_columnwidth',''),(13892,11593,'_menu_item_fusion_megamenu_thumbnail',''),(13893,11594,'_menu_item_type','post_type'),(13894,11594,'_menu_item_menu_item_parent','11522'),(13895,11594,'_menu_item_object_id','4099'),(13896,11594,'_menu_item_object','page'),(13897,11594,'_menu_item_target',''),(13898,11594,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13899,11594,'_menu_item_xfn',''),(13900,11594,'_menu_item_url',''),(13901,11594,'_menu_item_fusion_megamenu_icon',''),(13902,11594,'_menu_item_fusion_megamenu_title',''),(13903,11594,'_menu_item_fusion_megamenu_widgetarea','0'),(13904,11594,'_menu_item_fusion_megamenu_columnwidth',''),(13905,11594,'_menu_item_fusion_megamenu_thumbnail',''),(13906,11595,'_menu_item_type','post_type'),(13907,11595,'_menu_item_menu_item_parent','11522'),(13908,11595,'_menu_item_object_id','4098'),(13909,11595,'_menu_item_object','page'),(13910,11595,'_menu_item_target',''),(13911,11595,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13912,11595,'_menu_item_xfn',''),(13913,11595,'_menu_item_url',''),(13914,11595,'_menu_item_fusion_megamenu_icon',''),(13915,11595,'_menu_item_fusion_megamenu_title',''),(13916,11595,'_menu_item_fusion_megamenu_widgetarea','0'),(13917,11595,'_menu_item_fusion_megamenu_columnwidth',''),(13918,11595,'_menu_item_fusion_megamenu_thumbnail',''),(13919,11596,'_menu_item_type','post_type'),(13920,11596,'_menu_item_menu_item_parent','0'),(13921,11596,'_menu_item_object_id','4097'),(13922,11596,'_menu_item_object','page'),(13923,11596,'_menu_item_target',''),(13924,11596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13925,11596,'_menu_item_xfn',''),(13926,11596,'_menu_item_url',''),(13927,11596,'_menu_item_fusion_menu_style',''),(13928,11596,'_menu_item_fusion_megamenu_icon',''),(13929,11596,'_menu_item_fusion_megamenu_status',''),(13930,11596,'_menu_item_fusion_megamenu_width','fullwidth'),(13931,11596,'_menu_item_fusion_megamenu_columns','3'),(13932,11596,'_menu_item_fusion_megamenu_columnwidth',''),(13933,11596,'_menu_item_fusion_megamenu_thumbnail',''),(13934,11597,'_menu_item_type','post_type'),(13935,11597,'_menu_item_menu_item_parent','11500'),(13936,11597,'_menu_item_object_id','4126'),(13937,11597,'_menu_item_object','page'),(13938,11597,'_menu_item_target',''),(13939,11597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13940,11597,'_menu_item_xfn',''),(13941,11597,'_menu_item_url',''),(13942,11597,'_menu_item_fusion_megamenu_icon',''),(13943,11597,'_menu_item_fusion_megamenu_title',''),(13944,11597,'_menu_item_fusion_megamenu_widgetarea','0'),(13945,11597,'_menu_item_fusion_megamenu_columnwidth',''),(13946,11597,'_menu_item_fusion_megamenu_thumbnail',''),(13947,11598,'_menu_item_type','post_type'),(13948,11598,'_menu_item_menu_item_parent','11500'),(13949,11598,'_menu_item_object_id','4120'),(13950,11598,'_menu_item_object','page'),(13951,11598,'_menu_item_target',''),(13952,11598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13953,11598,'_menu_item_xfn',''),(13954,11598,'_menu_item_url',''),(13955,11598,'_menu_item_fusion_megamenu_icon',''),(13956,11598,'_menu_item_fusion_megamenu_title',''),(13957,11598,'_menu_item_fusion_megamenu_widgetarea','0'),(13958,11598,'_menu_item_fusion_megamenu_columnwidth',''),(13959,11598,'_menu_item_fusion_megamenu_thumbnail',''),(13960,11599,'_menu_item_type','post_type'),(13961,11599,'_menu_item_menu_item_parent','11522'),(13962,11599,'_menu_item_object_id','4097'),(13963,11599,'_menu_item_object','page'),(13964,11599,'_menu_item_target',''),(13965,11599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13966,11599,'_menu_item_xfn',''),(13967,11599,'_menu_item_url',''),(13968,11599,'_menu_item_fusion_megamenu_icon',''),(13969,11599,'_menu_item_fusion_megamenu_title',''),(13970,11599,'_menu_item_fusion_megamenu_widgetarea','0'),(13971,11599,'_menu_item_fusion_megamenu_columnwidth',''),(13972,11599,'_menu_item_fusion_megamenu_thumbnail',''),(13973,11600,'_menu_item_type','post_type'),(13974,11600,'_menu_item_menu_item_parent','11487'),(13975,11600,'_menu_item_object_id','4150'),(13976,11600,'_menu_item_object','page'),(13977,11600,'_menu_item_target',''),(13978,11600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13979,11600,'_menu_item_xfn',''),(13980,11600,'_menu_item_url',''),(13981,11600,'_menu_item_fusion_megamenu_icon',''),(13982,11600,'_menu_item_fusion_megamenu_title',''),(13983,11600,'_menu_item_fusion_megamenu_widgetarea','0'),(13984,11600,'_menu_item_fusion_megamenu_columnwidth',''),(13985,11600,'_menu_item_fusion_megamenu_thumbnail',''),(13986,11601,'_menu_item_type','post_type'),(13987,11601,'_menu_item_menu_item_parent','11487'),(13988,11601,'_menu_item_object_id','4148'),(13989,11601,'_menu_item_object','page'),(13990,11601,'_menu_item_target',''),(13991,11601,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13992,11601,'_menu_item_xfn',''),(13993,11601,'_menu_item_url',''),(13994,11601,'_menu_item_fusion_megamenu_icon',''),(13995,11601,'_menu_item_fusion_megamenu_title',''),(13996,11601,'_menu_item_fusion_megamenu_widgetarea','0'),(13997,11601,'_menu_item_fusion_megamenu_columnwidth',''),(13998,11601,'_menu_item_fusion_megamenu_thumbnail',''),(13999,11602,'_menu_item_type','post_type'),(14000,11602,'_menu_item_menu_item_parent','11487'),(14001,11602,'_menu_item_object_id','4146'),(14002,11602,'_menu_item_object','page'),(14003,11602,'_menu_item_target',''),(14004,11602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14005,11602,'_menu_item_xfn',''),(14006,11602,'_menu_item_url',''),(14007,11602,'_menu_item_fusion_megamenu_icon',''),(14008,11602,'_menu_item_fusion_megamenu_title',''),(14009,11602,'_menu_item_fusion_megamenu_widgetarea','0'),(14010,11602,'_menu_item_fusion_megamenu_columnwidth',''),(14011,11602,'_menu_item_fusion_megamenu_thumbnail',''),(14012,11603,'_menu_item_type','post_type'),(14013,11603,'_menu_item_menu_item_parent','11487'),(14014,11603,'_menu_item_object_id','4144'),(14015,11603,'_menu_item_object','page'),(14016,11603,'_menu_item_target',''),(14017,11603,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14018,11603,'_menu_item_xfn',''),(14019,11603,'_menu_item_url',''),(14020,11603,'_menu_item_fusion_megamenu_icon',''),(14021,11603,'_menu_item_fusion_megamenu_title',''),(14022,11603,'_menu_item_fusion_megamenu_widgetarea','0'),(14023,11603,'_menu_item_fusion_megamenu_columnwidth',''),(14024,11603,'_menu_item_fusion_megamenu_thumbnail',''),(14025,11604,'_menu_item_type','post_type'),(14026,11604,'_menu_item_menu_item_parent','11487'),(14027,11604,'_menu_item_object_id','4142'),(14028,11604,'_menu_item_object','page'),(14029,11604,'_menu_item_target',''),(14030,11604,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14031,11604,'_menu_item_xfn',''),(14032,11604,'_menu_item_url',''),(14033,11604,'_menu_item_fusion_megamenu_icon',''),(14034,11604,'_menu_item_fusion_megamenu_title',''),(14035,11604,'_menu_item_fusion_megamenu_widgetarea','0'),(14036,11604,'_menu_item_fusion_megamenu_columnwidth',''),(14037,11604,'_menu_item_fusion_megamenu_thumbnail',''),(14038,11605,'_menu_item_type','post_type'),(14039,11605,'_menu_item_menu_item_parent','11487'),(14040,11605,'_menu_item_object_id','4140'),(14041,11605,'_menu_item_object','page'),(14042,11605,'_menu_item_target',''),(14043,11605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14044,11605,'_menu_item_xfn',''),(14045,11605,'_menu_item_url',''),(14046,11605,'_menu_item_fusion_megamenu_icon',''),(14047,11605,'_menu_item_fusion_megamenu_title',''),(14048,11605,'_menu_item_fusion_megamenu_widgetarea','0'),(14049,11605,'_menu_item_fusion_megamenu_columnwidth',''),(14050,11605,'_menu_item_fusion_megamenu_thumbnail',''),(14051,11606,'_menu_item_type','post_type'),(14052,11606,'_menu_item_menu_item_parent','11487'),(14053,11606,'_menu_item_object_id','4138'),(14054,11606,'_menu_item_object','page'),(14055,11606,'_menu_item_target',''),(14056,11606,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14057,11606,'_menu_item_xfn',''),(14058,11606,'_menu_item_url',''),(14059,11606,'_menu_item_fusion_megamenu_icon',''),(14060,11606,'_menu_item_fusion_megamenu_title',''),(14061,11606,'_menu_item_fusion_megamenu_widgetarea','0'),(14062,11606,'_menu_item_fusion_megamenu_columnwidth',''),(14063,11606,'_menu_item_fusion_megamenu_thumbnail',''),(14064,11607,'_menu_item_type','post_type'),(14065,11607,'_menu_item_menu_item_parent','11506'),(14066,11607,'_menu_item_object_id','11525'),(14067,11607,'_menu_item_object','page'),(14068,11607,'_menu_item_target',''),(14069,11607,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14070,11607,'_menu_item_xfn',''),(14071,11607,'_menu_item_url',''),(14072,11607,'_menu_item_fusion_megamenu_icon',''),(14073,11607,'_menu_item_fusion_megamenu_title',''),(14074,11607,'_menu_item_fusion_megamenu_widgetarea','0'),(14075,11607,'_menu_item_fusion_megamenu_columnwidth',''),(14076,11607,'_menu_item_fusion_megamenu_thumbnail',''),(14077,11608,'_menu_item_type','post_type'),(14078,11608,'_menu_item_menu_item_parent','11506'),(14079,11608,'_menu_item_object_id','11524'),(14080,11608,'_menu_item_object','page'),(14081,11608,'_menu_item_target',''),(14082,11608,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14083,11608,'_menu_item_xfn',''),(14084,11608,'_menu_item_url',''),(14085,11608,'_menu_item_fusion_megamenu_icon',''),(14086,11608,'_menu_item_fusion_megamenu_title',''),(14087,11608,'_menu_item_fusion_megamenu_widgetarea','0'),(14088,11608,'_menu_item_fusion_megamenu_columnwidth',''),(14089,11608,'_menu_item_fusion_megamenu_thumbnail',''),(14090,11609,'_menu_item_type','post_type'),(14091,11609,'_menu_item_menu_item_parent','11506'),(14092,11609,'_menu_item_object_id','11523'),(14093,11609,'_menu_item_object','page'),(14094,11609,'_menu_item_target',''),(14095,11609,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14096,11609,'_menu_item_xfn',''),(14097,11609,'_menu_item_url',''),(14098,11609,'_menu_item_fusion_megamenu_icon',''),(14099,11609,'_menu_item_fusion_megamenu_title',''),(14100,11609,'_menu_item_fusion_megamenu_widgetarea','0'),(14101,11609,'_menu_item_fusion_megamenu_columnwidth',''),(14102,11609,'_menu_item_fusion_megamenu_thumbnail',''),(14103,11610,'_menu_item_type','post_type'),(14104,11610,'_menu_item_menu_item_parent','11506'),(14105,11610,'_menu_item_object_id','11515'),(14106,11610,'_menu_item_object','page'),(14107,11610,'_menu_item_target',''),(14108,11610,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14109,11610,'_menu_item_xfn',''),(14110,11610,'_menu_item_url',''),(14111,11610,'_menu_item_fusion_megamenu_icon',''),(14112,11610,'_menu_item_fusion_megamenu_title',''),(14113,11610,'_menu_item_fusion_megamenu_widgetarea','0'),(14114,11610,'_menu_item_fusion_megamenu_columnwidth',''),(14115,11610,'_menu_item_fusion_megamenu_thumbnail',''),(14116,11611,'_menu_item_type','post_type'),(14117,11611,'_menu_item_menu_item_parent','11489'),(14118,11611,'_menu_item_object_id','11509'),(14119,11611,'_menu_item_object','page'),(14120,11611,'_menu_item_target',''),(14121,11611,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14122,11611,'_menu_item_xfn',''),(14123,11611,'_menu_item_url',''),(14124,11611,'_menu_item_fusion_megamenu_icon',''),(14125,11611,'_menu_item_fusion_megamenu_title',''),(14126,11611,'_menu_item_fusion_megamenu_widgetarea','0'),(14127,11611,'_menu_item_fusion_megamenu_columnwidth',''),(14128,11611,'_menu_item_fusion_megamenu_thumbnail',''),(14129,11612,'_menu_item_type','post_type'),(14130,11612,'_menu_item_menu_item_parent','11489'),(14131,11612,'_menu_item_object_id','730'),(14132,11612,'_menu_item_object','page'),(14133,11612,'_menu_item_target',''),(14134,11612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14135,11612,'_menu_item_xfn',''),(14136,11612,'_menu_item_url',''),(14137,11612,'_menu_item_fusion_megamenu_icon',''),(14138,11612,'_menu_item_fusion_megamenu_title',''),(14139,11612,'_menu_item_fusion_megamenu_widgetarea','0'),(14140,11612,'_menu_item_fusion_megamenu_columnwidth',''),(14141,11612,'_menu_item_fusion_megamenu_thumbnail',''),(14142,11613,'_menu_item_type','post_type'),(14143,11613,'_menu_item_menu_item_parent','11489'),(14144,11613,'_menu_item_object_id','1522'),(14145,11613,'_menu_item_object','page'),(14146,11613,'_menu_item_target',''),(14147,11613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14148,11613,'_menu_item_xfn',''),(14149,11613,'_menu_item_url',''),(14150,11613,'_menu_item_fusion_megamenu_icon',''),(14151,11613,'_menu_item_fusion_megamenu_title',''),(14152,11613,'_menu_item_fusion_megamenu_widgetarea','0'),(14153,11613,'_menu_item_fusion_megamenu_columnwidth',''),(14154,11613,'_menu_item_fusion_megamenu_thumbnail',''),(14155,11614,'_menu_item_type','post_type'),(14156,11614,'_menu_item_menu_item_parent','11507'),(14157,11614,'_menu_item_object_id','3530'),(14158,11614,'_menu_item_object','page'),(14159,11614,'_menu_item_target',''),(14160,11614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14161,11614,'_menu_item_xfn',''),(14162,11614,'_menu_item_url',''),(14163,11614,'_menu_item_fusion_megamenu_icon',''),(14164,11614,'_menu_item_fusion_megamenu_title',''),(14165,11614,'_menu_item_fusion_megamenu_widgetarea','0'),(14166,11614,'_menu_item_fusion_megamenu_columnwidth',''),(14167,11614,'_menu_item_fusion_megamenu_thumbnail',''),(14168,11615,'_menu_item_type','post_type'),(14169,11615,'_menu_item_menu_item_parent','11507'),(14170,11615,'_menu_item_object_id','3528'),(14171,11615,'_menu_item_object','page'),(14172,11615,'_menu_item_target',''),(14173,11615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14174,11615,'_menu_item_xfn',''),(14175,11615,'_menu_item_url',''),(14176,11615,'_menu_item_fusion_megamenu_icon',''),(14177,11615,'_menu_item_fusion_megamenu_title',''),(14178,11615,'_menu_item_fusion_megamenu_widgetarea','0'),(14179,11615,'_menu_item_fusion_megamenu_columnwidth',''),(14180,11615,'_menu_item_fusion_megamenu_thumbnail',''),(14181,11616,'_menu_item_type','post_type'),(14182,11616,'_menu_item_menu_item_parent','11507'),(14183,11616,'_menu_item_object_id','3526'),(14184,11616,'_menu_item_object','page'),(14185,11616,'_menu_item_target',''),(14186,11616,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14187,11616,'_menu_item_xfn',''),(14188,11616,'_menu_item_url',''),(14189,11616,'_menu_item_fusion_megamenu_icon',''),(14190,11616,'_menu_item_fusion_megamenu_title',''),(14191,11616,'_menu_item_fusion_megamenu_widgetarea','0'),(14192,11616,'_menu_item_fusion_megamenu_columnwidth',''),(14193,11616,'_menu_item_fusion_megamenu_thumbnail',''),(14194,11617,'_menu_item_type','post_type'),(14195,11617,'_menu_item_menu_item_parent','11507'),(14196,11617,'_menu_item_object_id','3524'),(14197,11617,'_menu_item_object','page'),(14198,11617,'_menu_item_target',''),(14199,11617,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14200,11617,'_menu_item_xfn',''),(14201,11617,'_menu_item_url',''),(14202,11617,'_menu_item_fusion_megamenu_icon',''),(14203,11617,'_menu_item_fusion_megamenu_title',''),(14204,11617,'_menu_item_fusion_megamenu_widgetarea','0'),(14205,11617,'_menu_item_fusion_megamenu_columnwidth',''),(14206,11617,'_menu_item_fusion_megamenu_thumbnail',''),(14207,11618,'_menu_item_type','post_type'),(14208,11618,'_menu_item_menu_item_parent','11520'),(14209,11618,'_menu_item_object_id','4204'),(14210,11618,'_menu_item_object','page'),(14211,11618,'_menu_item_target',''),(14212,11618,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14213,11618,'_menu_item_xfn',''),(14214,11618,'_menu_item_url',''),(14215,11618,'_menu_item_fusion_megamenu_icon',''),(14216,11618,'_menu_item_fusion_megamenu_title',''),(14217,11618,'_menu_item_fusion_megamenu_widgetarea','0'),(14218,11618,'_menu_item_fusion_megamenu_columnwidth',''),(14219,11618,'_menu_item_fusion_megamenu_thumbnail',''),(14220,11619,'_menu_item_type','post_type'),(14221,11619,'_menu_item_menu_item_parent','11501'),(14222,11619,'_menu_item_object_id','3655'),(14223,11619,'_menu_item_object','page'),(14224,11619,'_menu_item_target',''),(14225,11619,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14226,11619,'_menu_item_xfn',''),(14227,11619,'_menu_item_url',''),(14228,11619,'_menu_item_fusion_megamenu_icon',''),(14229,11619,'_menu_item_fusion_megamenu_title',''),(14230,11619,'_menu_item_fusion_megamenu_widgetarea','0'),(14231,11619,'_menu_item_fusion_megamenu_columnwidth',''),(14232,11619,'_menu_item_fusion_megamenu_thumbnail',''),(14233,11620,'_menu_item_type','post_type'),(14234,11620,'_menu_item_menu_item_parent','11501'),(14235,11620,'_menu_item_object_id','3652'),(14236,11620,'_menu_item_object','page'),(14237,11620,'_menu_item_target',''),(14238,11620,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14239,11620,'_menu_item_xfn',''),(14240,11620,'_menu_item_url',''),(14241,11620,'_menu_item_fusion_megamenu_icon',''),(14242,11620,'_menu_item_fusion_megamenu_title',''),(14243,11620,'_menu_item_fusion_megamenu_widgetarea','0'),(14244,11620,'_menu_item_fusion_megamenu_columnwidth',''),(14245,11620,'_menu_item_fusion_megamenu_thumbnail',''),(14246,11621,'_menu_item_type','post_type'),(14247,11621,'_menu_item_menu_item_parent','11501'),(14248,11621,'_menu_item_object_id','3660'),(14249,11621,'_menu_item_object','page'),(14250,11621,'_menu_item_target',''),(14251,11621,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14252,11621,'_menu_item_xfn',''),(14253,11621,'_menu_item_url',''),(14254,11621,'_menu_item_fusion_megamenu_icon',''),(14255,11621,'_menu_item_fusion_megamenu_title',''),(14256,11621,'_menu_item_fusion_megamenu_widgetarea','0'),(14257,11621,'_menu_item_fusion_megamenu_columnwidth',''),(14258,11621,'_menu_item_fusion_megamenu_thumbnail',''),(14259,11622,'_menu_item_type','post_type'),(14260,11622,'_menu_item_menu_item_parent','11501'),(14261,11622,'_menu_item_object_id','3658'),(14262,11622,'_menu_item_object','page'),(14263,11622,'_menu_item_target',''),(14264,11622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14265,11622,'_menu_item_xfn',''),(14266,11622,'_menu_item_url',''),(14267,11622,'_menu_item_fusion_megamenu_icon',''),(14268,11622,'_menu_item_fusion_megamenu_title',''),(14269,11622,'_menu_item_fusion_megamenu_widgetarea','0'),(14270,11622,'_menu_item_fusion_megamenu_columnwidth',''),(14271,11622,'_menu_item_fusion_megamenu_thumbnail',''),(14272,11623,'_menu_item_type','post_type'),(14273,11623,'_menu_item_menu_item_parent','11489'),(14274,11623,'_menu_item_object_id','3700'),(14275,11623,'_menu_item_object','page'),(14276,11623,'_menu_item_target',''),(14277,11623,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14278,11623,'_menu_item_xfn',''),(14279,11623,'_menu_item_url',''),(14280,11623,'_menu_item_fusion_megamenu_icon',''),(14281,11623,'_menu_item_fusion_megamenu_title',''),(14282,11623,'_menu_item_fusion_megamenu_widgetarea','0'),(14283,11623,'_menu_item_fusion_megamenu_columnwidth',''),(14284,11623,'_menu_item_fusion_megamenu_thumbnail',''),(14285,11624,'_menu_item_type','post_type'),(14286,11624,'_menu_item_menu_item_parent','11489'),(14287,11624,'_menu_item_object_id','3699'),(14288,11624,'_menu_item_object','page'),(14289,11624,'_menu_item_target',''),(14290,11624,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14291,11624,'_menu_item_xfn',''),(14292,11624,'_menu_item_url',''),(14293,11624,'_menu_item_fusion_megamenu_icon',''),(14294,11624,'_menu_item_fusion_megamenu_title',''),(14295,11624,'_menu_item_fusion_megamenu_widgetarea','0'),(14296,11624,'_menu_item_fusion_megamenu_columnwidth',''),(14297,11624,'_menu_item_fusion_megamenu_thumbnail',''),(14298,11625,'_menu_item_type','post_type'),(14299,11625,'_menu_item_menu_item_parent','11489'),(14300,11625,'_menu_item_object_id','3698'),(14301,11625,'_menu_item_object','page'),(14302,11625,'_menu_item_target',''),(14303,11625,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14304,11625,'_menu_item_xfn',''),(14305,11625,'_menu_item_url',''),(14306,11625,'_menu_item_fusion_megamenu_icon',''),(14307,11625,'_menu_item_fusion_megamenu_title',''),(14308,11625,'_menu_item_fusion_megamenu_widgetarea','0'),(14309,11625,'_menu_item_fusion_megamenu_columnwidth',''),(14310,11625,'_menu_item_fusion_megamenu_thumbnail',''),(14311,11626,'_menu_item_type','post_type'),(14312,11626,'_menu_item_menu_item_parent','11489'),(14313,11626,'_menu_item_object_id','3697'),(14314,11626,'_menu_item_object','page'),(14315,11626,'_menu_item_target',''),(14316,11626,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14317,11626,'_menu_item_xfn',''),(14318,11626,'_menu_item_url',''),(14319,11626,'_menu_item_fusion_megamenu_icon',''),(14320,11626,'_menu_item_fusion_megamenu_title',''),(14321,11626,'_menu_item_fusion_megamenu_widgetarea','0'),(14322,11626,'_menu_item_fusion_megamenu_columnwidth',''),(14323,11626,'_menu_item_fusion_megamenu_thumbnail',''),(14324,11627,'_menu_item_type','post_type'),(14325,11627,'_menu_item_menu_item_parent','11488'),(14326,11627,'_menu_item_object_id','4356'),(14327,11627,'_menu_item_object','page'),(14328,11627,'_menu_item_target',''),(14329,11627,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14330,11627,'_menu_item_xfn',''),(14331,11627,'_menu_item_url',''),(14332,11627,'_menu_item_fusion_megamenu_icon',''),(14333,11627,'_menu_item_fusion_megamenu_title',''),(14334,11627,'_menu_item_fusion_megamenu_widgetarea','0'),(14335,11627,'_menu_item_fusion_megamenu_columnwidth',''),(14336,11627,'_menu_item_fusion_megamenu_thumbnail',''),(14337,11628,'_menu_item_type','post_type'),(14338,11628,'_menu_item_menu_item_parent','11477'),(14339,11628,'_menu_item_object_id','4172'),(14340,11628,'_menu_item_object','page'),(14341,11628,'_menu_item_target',''),(14342,11628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14343,11628,'_menu_item_xfn',''),(14344,11628,'_menu_item_url',''),(14345,11628,'_menu_item_fusion_megamenu_icon',''),(14346,11628,'_menu_item_fusion_megamenu_title',''),(14347,11628,'_menu_item_fusion_megamenu_widgetarea','0'),(14348,11628,'_menu_item_fusion_megamenu_columnwidth',''),(14349,11628,'_menu_item_fusion_megamenu_thumbnail',''),(14350,11629,'_menu_item_type','post_type'),(14351,11629,'_menu_item_menu_item_parent','11477'),(14352,11629,'_menu_item_object_id','4169'),(14353,11629,'_menu_item_object','page'),(14354,11629,'_menu_item_target',''),(14355,11629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14356,11629,'_menu_item_xfn',''),(14357,11629,'_menu_item_url',''),(14358,11629,'_menu_item_fusion_megamenu_icon',''),(14359,11629,'_menu_item_fusion_megamenu_title',''),(14360,11629,'_menu_item_fusion_megamenu_widgetarea','0'),(14361,11629,'_menu_item_fusion_megamenu_columnwidth',''),(14362,11629,'_menu_item_fusion_megamenu_thumbnail',''),(14363,11630,'_menu_item_type','post_type'),(14364,11630,'_menu_item_menu_item_parent','11590'),(14365,11630,'_menu_item_object_id','2712'),(14366,11630,'_menu_item_object','page'),(14367,11630,'_menu_item_target',''),(14368,11630,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14369,11630,'_menu_item_xfn',''),(14370,11630,'_menu_item_url',''),(14371,11630,'_menu_item_fusion_megamenu_icon',''),(14372,11630,'_menu_item_fusion_megamenu_title',''),(14373,11630,'_menu_item_fusion_megamenu_widgetarea','0'),(14374,11630,'_menu_item_fusion_megamenu_columnwidth',''),(14375,11630,'_menu_item_fusion_megamenu_thumbnail',''),(14376,11631,'_menu_item_type','post_type'),(14377,11631,'_menu_item_menu_item_parent','11590'),(14378,11631,'_menu_item_object_id','3496'),(14379,11631,'_menu_item_object','page'),(14380,11631,'_menu_item_target',''),(14381,11631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14382,11631,'_menu_item_xfn',''),(14383,11631,'_menu_item_url',''),(14384,11631,'_menu_item_fusion_megamenu_icon',''),(14385,11631,'_menu_item_fusion_megamenu_title',''),(14386,11631,'_menu_item_fusion_megamenu_widgetarea','0'),(14387,11631,'_menu_item_fusion_megamenu_columnwidth',''),(14388,11631,'_menu_item_fusion_megamenu_thumbnail',''),(14389,11632,'_menu_item_type','post_type'),(14390,11632,'_menu_item_menu_item_parent','11501'),(14391,11632,'_menu_item_object_id','4461'),(14392,11632,'_menu_item_object','page'),(14393,11632,'_menu_item_target',''),(14394,11632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14395,11632,'_menu_item_xfn',''),(14396,11632,'_menu_item_url',''),(14397,11632,'_menu_item_fusion_megamenu_icon',''),(14398,11632,'_menu_item_fusion_megamenu_title',''),(14399,11632,'_menu_item_fusion_megamenu_widgetarea','0'),(14400,11632,'_menu_item_fusion_megamenu_columnwidth',''),(14401,11632,'_menu_item_fusion_megamenu_thumbnail',''),(14402,11633,'_menu_item_type','post_type'),(14403,11633,'_menu_item_menu_item_parent','11501'),(14404,11633,'_menu_item_object_id','4442'),(14405,11633,'_menu_item_object','page'),(14406,11633,'_menu_item_target',''),(14407,11633,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14408,11633,'_menu_item_xfn',''),(14409,11633,'_menu_item_url',''),(14410,11633,'_menu_item_fusion_megamenu_icon',''),(14411,11633,'_menu_item_fusion_megamenu_title',''),(14412,11633,'_menu_item_fusion_megamenu_widgetarea','0'),(14413,11633,'_menu_item_fusion_megamenu_columnwidth',''),(14414,11633,'_menu_item_fusion_megamenu_thumbnail',''),(14415,11634,'_menu_item_type','post_type'),(14416,11634,'_menu_item_menu_item_parent','11501'),(14417,11634,'_menu_item_object_id','4427'),(14418,11634,'_menu_item_object','page'),(14419,11634,'_menu_item_target',''),(14420,11634,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14421,11634,'_menu_item_xfn',''),(14422,11634,'_menu_item_url',''),(14423,11634,'_menu_item_fusion_megamenu_icon',''),(14424,11634,'_menu_item_fusion_megamenu_title',''),(14425,11634,'_menu_item_fusion_megamenu_widgetarea','0'),(14426,11634,'_menu_item_fusion_megamenu_columnwidth',''),(14427,11634,'_menu_item_fusion_megamenu_thumbnail',''),(14428,11635,'_menu_item_type','post_type'),(14429,11635,'_menu_item_menu_item_parent','11500'),(14430,11635,'_menu_item_object_id','4548'),(14431,11635,'_menu_item_object','page'),(14432,11635,'_menu_item_target',''),(14433,11635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14434,11635,'_menu_item_xfn',''),(14435,11635,'_menu_item_url',''),(14436,11635,'_menu_item_fusion_megamenu_icon',''),(14437,11635,'_menu_item_fusion_megamenu_title',''),(14438,11635,'_menu_item_fusion_megamenu_widgetarea','0'),(14439,11635,'_menu_item_fusion_megamenu_columnwidth',''),(14440,11635,'_menu_item_fusion_megamenu_thumbnail',''),(14441,11636,'_menu_item_type','post_type'),(14442,11636,'_menu_item_menu_item_parent','11500'),(14443,11636,'_menu_item_object_id','4546'),(14444,11636,'_menu_item_object','page'),(14445,11636,'_menu_item_target',''),(14446,11636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14447,11636,'_menu_item_xfn',''),(14448,11636,'_menu_item_url',''),(14449,11636,'_menu_item_fusion_megamenu_icon',''),(14450,11636,'_menu_item_fusion_megamenu_title',''),(14451,11636,'_menu_item_fusion_megamenu_widgetarea','0'),(14452,11636,'_menu_item_fusion_megamenu_columnwidth',''),(14453,11636,'_menu_item_fusion_megamenu_thumbnail',''),(14454,11637,'_menu_item_type','post_type'),(14455,11637,'_menu_item_menu_item_parent','11502'),(14456,11637,'_menu_item_object_id','9833'),(14457,11637,'_menu_item_object','page'),(14458,11637,'_menu_item_target',''),(14459,11637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14460,11637,'_menu_item_xfn',''),(14461,11637,'_menu_item_url',''),(14462,11637,'_menu_item_fusion_megamenu_icon',''),(14463,11637,'_menu_item_fusion_megamenu_title',''),(14464,11637,'_menu_item_fusion_megamenu_widgetarea','0'),(14465,11637,'_menu_item_fusion_megamenu_columnwidth',''),(14466,11637,'_menu_item_fusion_megamenu_thumbnail',''),(14467,11638,'_menu_item_type','post_type'),(14468,11638,'_menu_item_menu_item_parent','11502'),(14469,11638,'_menu_item_object_id','9831'),(14470,11638,'_menu_item_object','page'),(14471,11638,'_menu_item_target',''),(14472,11638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14473,11638,'_menu_item_xfn',''),(14474,11638,'_menu_item_url',''),(14475,11638,'_menu_item_fusion_megamenu_icon',''),(14476,11638,'_menu_item_fusion_megamenu_title',''),(14477,11638,'_menu_item_fusion_megamenu_widgetarea','0'),(14478,11638,'_menu_item_fusion_megamenu_columnwidth',''),(14479,11638,'_menu_item_fusion_megamenu_thumbnail',''),(14480,11639,'_menu_item_type','post_type'),(14481,11639,'_menu_item_menu_item_parent','11502'),(14482,11639,'_menu_item_object_id','9829'),(14483,11639,'_menu_item_object','page'),(14484,11639,'_menu_item_target',''),(14485,11639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14486,11639,'_menu_item_xfn',''),(14487,11639,'_menu_item_url',''),(14488,11639,'_menu_item_fusion_megamenu_icon',''),(14489,11639,'_menu_item_fusion_megamenu_title',''),(14490,11639,'_menu_item_fusion_megamenu_widgetarea','0'),(14491,11639,'_menu_item_fusion_megamenu_columnwidth',''),(14492,11639,'_menu_item_fusion_megamenu_thumbnail',''),(14493,11640,'_menu_item_type','post_type'),(14494,11640,'_menu_item_menu_item_parent','11477'),(14495,11640,'_menu_item_object_id','9883'),(14496,11640,'_menu_item_object','page'),(14497,11640,'_menu_item_target',''),(14498,11640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14499,11640,'_menu_item_xfn',''),(14500,11640,'_menu_item_url',''),(14501,11640,'_menu_item_fusion_megamenu_icon',''),(14502,11640,'_menu_item_fusion_megamenu_title',''),(14503,11640,'_menu_item_fusion_megamenu_widgetarea','0'),(14504,11640,'_menu_item_fusion_megamenu_columnwidth',''),(14505,11640,'_menu_item_fusion_megamenu_thumbnail',''),(14506,11641,'_menu_item_type','post_type'),(14507,11641,'_menu_item_menu_item_parent','11519'),(14508,11641,'_menu_item_object_id','10015'),(14509,11641,'_menu_item_object','page'),(14510,11641,'_menu_item_target',''),(14511,11641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14512,11641,'_menu_item_xfn',''),(14513,11641,'_menu_item_url',''),(14514,11641,'_menu_item_fusion_megamenu_icon',''),(14515,11641,'_menu_item_fusion_megamenu_title',''),(14516,11641,'_menu_item_fusion_megamenu_widgetarea','0'),(14517,11641,'_menu_item_fusion_megamenu_columnwidth',''),(14518,11641,'_menu_item_fusion_megamenu_thumbnail',''),(14519,11642,'_menu_item_type','post_type'),(14520,11642,'_menu_item_menu_item_parent','11516'),(14521,11642,'_menu_item_object_id','10013'),(14522,11642,'_menu_item_object','page'),(14523,11642,'_menu_item_target',''),(14524,11642,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14525,11642,'_menu_item_xfn',''),(14526,11642,'_menu_item_url',''),(14527,11642,'_menu_item_fusion_megamenu_icon',''),(14528,11642,'_menu_item_fusion_megamenu_title',''),(14529,11642,'_menu_item_fusion_megamenu_widgetarea','0'),(14530,11642,'_menu_item_fusion_megamenu_columnwidth',''),(14531,11642,'_menu_item_fusion_megamenu_thumbnail',''),(14532,11643,'_menu_item_type','post_type'),(14533,11643,'_menu_item_menu_item_parent','11477'),(14534,11643,'_menu_item_object_id','10489'),(14535,11643,'_menu_item_object','page'),(14536,11643,'_menu_item_target',''),(14537,11643,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14538,11643,'_menu_item_xfn',''),(14539,11643,'_menu_item_url',''),(14540,11643,'_menu_item_fusion_megamenu_icon',''),(14541,11643,'_menu_item_fusion_megamenu_title',''),(14542,11643,'_menu_item_fusion_megamenu_widgetarea','0'),(14543,11643,'_menu_item_fusion_megamenu_columnwidth',''),(14544,11643,'_menu_item_fusion_megamenu_thumbnail',''),(14545,11644,'_menu_item_type','post_type'),(14546,11644,'_menu_item_menu_item_parent','11516'),(14547,11644,'_menu_item_object_id','10602'),(14548,11644,'_menu_item_object','page'),(14549,11644,'_menu_item_target',''),(14550,11644,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14551,11644,'_menu_item_xfn',''),(14552,11644,'_menu_item_url',''),(14553,11644,'_menu_item_fusion_megamenu_icon',''),(14554,11644,'_menu_item_fusion_megamenu_title',''),(14555,11644,'_menu_item_fusion_megamenu_widgetarea','0'),(14556,11644,'_menu_item_fusion_megamenu_columnwidth',''),(14557,11644,'_menu_item_fusion_megamenu_thumbnail',''),(14558,11645,'_menu_item_type','post_type'),(14559,11645,'_menu_item_menu_item_parent','11516'),(14560,11645,'_menu_item_object_id','10598'),(14561,11645,'_menu_item_object','page'),(14562,11645,'_menu_item_target',''),(14563,11645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14564,11645,'_menu_item_xfn',''),(14565,11645,'_menu_item_url',''),(14566,11645,'_menu_item_fusion_megamenu_icon',''),(14567,11645,'_menu_item_fusion_megamenu_title',''),(14568,11645,'_menu_item_fusion_megamenu_widgetarea','0'),(14569,11645,'_menu_item_fusion_megamenu_columnwidth',''),(14570,11645,'_menu_item_fusion_megamenu_thumbnail',''),(14571,11646,'_menu_item_type','post_type'),(14572,11646,'_menu_item_menu_item_parent','11517'),(14573,11646,'_menu_item_object_id','10595'),(14574,11646,'_menu_item_object','page'),(14575,11646,'_menu_item_target',''),(14576,11646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14577,11646,'_menu_item_xfn',''),(14578,11646,'_menu_item_url',''),(14579,11646,'_menu_item_fusion_megamenu_icon',''),(14580,11646,'_menu_item_fusion_megamenu_title',''),(14581,11646,'_menu_item_fusion_megamenu_widgetarea','0'),(14582,11646,'_menu_item_fusion_megamenu_columnwidth',''),(14583,11646,'_menu_item_fusion_megamenu_thumbnail',''),(14584,11647,'_menu_item_type','post_type'),(14585,11647,'_menu_item_menu_item_parent','11518'),(14586,11647,'_menu_item_object_id','10585'),(14587,11647,'_menu_item_object','page'),(14588,11647,'_menu_item_target',''),(14589,11647,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14590,11647,'_menu_item_xfn',''),(14591,11647,'_menu_item_url',''),(14592,11647,'_menu_item_fusion_megamenu_icon',''),(14593,11647,'_menu_item_fusion_megamenu_title',''),(14594,11647,'_menu_item_fusion_megamenu_widgetarea','0'),(14595,11647,'_menu_item_fusion_megamenu_columnwidth',''),(14596,11647,'_menu_item_fusion_megamenu_thumbnail',''),(14597,11648,'_menu_item_type','post_type'),(14598,11648,'_menu_item_menu_item_parent','11518'),(14599,11648,'_menu_item_object_id','10526'),(14600,11648,'_menu_item_object','page'),(14601,11648,'_menu_item_target',''),(14602,11648,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14603,11648,'_menu_item_xfn',''),(14604,11648,'_menu_item_url',''),(14605,11648,'_menu_item_fusion_megamenu_icon',''),(14606,11648,'_menu_item_fusion_megamenu_title',''),(14607,11648,'_menu_item_fusion_megamenu_widgetarea','0'),(14608,11648,'_menu_item_fusion_megamenu_columnwidth',''),(14609,11648,'_menu_item_fusion_megamenu_thumbnail',''),(14610,11649,'_menu_item_type','post_type'),(14611,11649,'_menu_item_menu_item_parent','11517'),(14612,11649,'_menu_item_object_id','10522'),(14613,11649,'_menu_item_object','page'),(14614,11649,'_menu_item_target',''),(14615,11649,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14616,11649,'_menu_item_xfn',''),(14617,11649,'_menu_item_url',''),(14618,11649,'_menu_item_fusion_megamenu_icon',''),(14619,11649,'_menu_item_fusion_megamenu_title',''),(14620,11649,'_menu_item_fusion_megamenu_widgetarea','0'),(14621,11649,'_menu_item_fusion_megamenu_columnwidth',''),(14622,11649,'_menu_item_fusion_megamenu_thumbnail',''),(14623,11650,'_menu_item_type','post_type'),(14624,11650,'_menu_item_menu_item_parent','11516'),(14625,11650,'_menu_item_object_id','10519'),(14626,11650,'_menu_item_object','page'),(14627,11650,'_menu_item_target',''),(14628,11650,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14629,11650,'_menu_item_xfn',''),(14630,11650,'_menu_item_url',''),(14631,11650,'_menu_item_fusion_megamenu_icon',''),(14632,11650,'_menu_item_fusion_megamenu_title',''),(14633,11650,'_menu_item_fusion_megamenu_widgetarea','0'),(14634,11650,'_menu_item_fusion_megamenu_columnwidth',''),(14635,11650,'_menu_item_fusion_megamenu_thumbnail',''),(14636,11651,'_menu_item_type','post_type'),(14637,11651,'_menu_item_menu_item_parent','11505'),(14638,11651,'_menu_item_object_id','10052'),(14639,11651,'_menu_item_object','page'),(14640,11651,'_menu_item_target',''),(14641,11651,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14642,11651,'_menu_item_xfn',''),(14643,11651,'_menu_item_url',''),(14644,11651,'_menu_item_fusion_megamenu_icon',''),(14645,11651,'_menu_item_fusion_megamenu_title',''),(14646,11651,'_menu_item_fusion_megamenu_widgetarea','0'),(14647,11651,'_menu_item_fusion_megamenu_columnwidth',''),(14648,11651,'_menu_item_fusion_megamenu_thumbnail',''),(14649,11652,'_menu_item_type','post_type'),(14650,11652,'_menu_item_menu_item_parent','11505'),(14651,11652,'_menu_item_object_id','10051'),(14652,11652,'_menu_item_object','page'),(14653,11652,'_menu_item_target',''),(14654,11652,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14655,11652,'_menu_item_xfn',''),(14656,11652,'_menu_item_url',''),(14657,11652,'_menu_item_fusion_megamenu_icon',''),(14658,11652,'_menu_item_fusion_megamenu_title',''),(14659,11652,'_menu_item_fusion_megamenu_widgetarea','0'),(14660,11652,'_menu_item_fusion_megamenu_columnwidth',''),(14661,11652,'_menu_item_fusion_megamenu_thumbnail',''),(14662,11653,'_menu_item_type','post_type'),(14663,11653,'_menu_item_menu_item_parent','11488'),(14664,11653,'_menu_item_object_id','10075'),(14665,11653,'_menu_item_object','page'),(14666,11653,'_menu_item_target',''),(14667,11653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14668,11653,'_menu_item_xfn',''),(14669,11653,'_menu_item_url',''),(14670,11653,'_menu_item_fusion_megamenu_icon',''),(14671,11653,'_menu_item_fusion_megamenu_title',''),(14672,11653,'_menu_item_fusion_megamenu_widgetarea','0'),(14673,11653,'_menu_item_fusion_megamenu_columnwidth',''),(14674,11653,'_menu_item_fusion_megamenu_thumbnail',''),(14675,11654,'_menu_item_type','post_type'),(14676,11654,'_menu_item_menu_item_parent','11505'),(14677,11654,'_menu_item_object_id','10050'),(14678,11654,'_menu_item_object','page'),(14679,11654,'_menu_item_target',''),(14680,11654,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14681,11654,'_menu_item_xfn',''),(14682,11654,'_menu_item_url',''),(14683,11654,'_menu_item_fusion_megamenu_icon',''),(14684,11654,'_menu_item_fusion_megamenu_title',''),(14685,11654,'_menu_item_fusion_megamenu_widgetarea','0'),(14686,11654,'_menu_item_fusion_megamenu_columnwidth',''),(14687,11654,'_menu_item_fusion_megamenu_thumbnail',''),(14688,11655,'_menu_item_type','post_type'),(14689,11655,'_menu_item_menu_item_parent','11505'),(14690,11655,'_menu_item_object_id','10049'),(14691,11655,'_menu_item_object','page'),(14692,11655,'_menu_item_target',''),(14693,11655,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14694,11655,'_menu_item_xfn',''),(14695,11655,'_menu_item_url',''),(14696,11655,'_menu_item_fusion_megamenu_icon',''),(14697,11655,'_menu_item_fusion_megamenu_title',''),(14698,11655,'_menu_item_fusion_megamenu_widgetarea','0'),(14699,11655,'_menu_item_fusion_megamenu_columnwidth',''),(14700,11655,'_menu_item_fusion_megamenu_thumbnail',''),(14701,11656,'_menu_item_type','post_type'),(14702,11656,'_menu_item_menu_item_parent','11505'),(14703,11656,'_menu_item_object_id','10047'),(14704,11656,'_menu_item_object','page'),(14705,11656,'_menu_item_target',''),(14706,11656,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14707,11656,'_menu_item_xfn',''),(14708,11656,'_menu_item_url',''),(14709,11656,'_menu_item_fusion_megamenu_icon',''),(14710,11656,'_menu_item_fusion_megamenu_title',''),(14711,11656,'_menu_item_fusion_megamenu_widgetarea','0'),(14712,11656,'_menu_item_fusion_megamenu_columnwidth',''),(14713,11656,'_menu_item_fusion_megamenu_thumbnail',''),(14714,11657,'_menu_item_type','post_type'),(14715,11657,'_menu_item_menu_item_parent','11506'),(14716,11657,'_menu_item_object_id','10040'),(14717,11657,'_menu_item_object','page'),(14718,11657,'_menu_item_target',''),(14719,11657,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14720,11657,'_menu_item_xfn',''),(14721,11657,'_menu_item_url',''),(14722,11657,'_menu_item_fusion_megamenu_icon',''),(14723,11657,'_menu_item_fusion_megamenu_title',''),(14724,11657,'_menu_item_fusion_megamenu_widgetarea','0'),(14725,11657,'_menu_item_fusion_megamenu_columnwidth',''),(14726,11657,'_menu_item_fusion_megamenu_thumbnail',''),(14727,11658,'_menu_item_type','post_type'),(14728,11658,'_menu_item_menu_item_parent','11507'),(14729,11658,'_menu_item_object_id','10038'),(14730,11658,'_menu_item_object','page'),(14731,11658,'_menu_item_target',''),(14732,11658,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14733,11658,'_menu_item_xfn',''),(14734,11658,'_menu_item_url',''),(14735,11658,'_menu_item_fusion_megamenu_icon',''),(14736,11658,'_menu_item_fusion_megamenu_title',''),(14737,11658,'_menu_item_fusion_megamenu_widgetarea','0'),(14738,11658,'_menu_item_fusion_megamenu_columnwidth',''),(14739,11658,'_menu_item_fusion_megamenu_thumbnail',''),(14740,11659,'_menu_item_type','post_type'),(14741,11659,'_menu_item_menu_item_parent','11506'),(14742,11659,'_menu_item_object_id','10042'),(14743,11659,'_menu_item_object','page'),(14744,11659,'_menu_item_target',''),(14745,11659,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14746,11659,'_menu_item_xfn',''),(14747,11659,'_menu_item_url',''),(14748,11659,'_menu_item_fusion_megamenu_icon',''),(14749,11659,'_menu_item_fusion_megamenu_title',''),(14750,11659,'_menu_item_fusion_megamenu_widgetarea','0'),(14751,11659,'_menu_item_fusion_megamenu_columnwidth',''),(14752,11659,'_menu_item_fusion_megamenu_thumbnail',''),(14753,11660,'_menu_item_type','post_type'),(14754,11660,'_menu_item_menu_item_parent','11507'),(14755,11660,'_menu_item_object_id','10045'),(14756,11660,'_menu_item_object','page'),(14757,11660,'_menu_item_target',''),(14758,11660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14759,11660,'_menu_item_xfn',''),(14760,11660,'_menu_item_url',''),(14761,11660,'_menu_item_fusion_megamenu_icon',''),(14762,11660,'_menu_item_fusion_megamenu_title',''),(14763,11660,'_menu_item_fusion_megamenu_widgetarea','0'),(14764,11660,'_menu_item_fusion_megamenu_columnwidth',''),(14765,11660,'_menu_item_fusion_megamenu_thumbnail',''),(14766,11661,'_menu_item_type','post_type'),(14767,11661,'_menu_item_menu_item_parent','11485'),(14768,11661,'_menu_item_object_id','10643'),(14769,11661,'_menu_item_object','page'),(14770,11661,'_menu_item_target',''),(14771,11661,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14772,11661,'_menu_item_xfn',''),(14773,11661,'_menu_item_url',''),(14774,11661,'_menu_item_fusion_megamenu_icon',''),(14775,11661,'_menu_item_fusion_megamenu_title',''),(14776,11661,'_menu_item_fusion_megamenu_widgetarea','0'),(14777,11661,'_menu_item_fusion_megamenu_columnwidth',''),(14778,11661,'_menu_item_fusion_megamenu_thumbnail',''),(14779,11662,'_menu_item_type','post_type'),(14780,11662,'_menu_item_menu_item_parent','0'),(14781,11662,'_menu_item_object_id','10646'),(14782,11662,'_menu_item_object','page'),(14783,11662,'_menu_item_target',''),(14784,11662,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14785,11662,'_menu_item_xfn',''),(14786,11662,'_menu_item_url',''),(14787,11662,'_menu_item_fusion_menu_style',''),(14788,11662,'_menu_item_fusion_megamenu_icon',''),(14789,11662,'_menu_item_fusion_megamenu_status',''),(14790,11662,'_menu_item_fusion_megamenu_width',''),(14791,11662,'_menu_item_fusion_megamenu_columns','auto'),(14792,11662,'_menu_item_fusion_megamenu_columnwidth',''),(14793,11662,'_menu_item_fusion_megamenu_thumbnail',''),(14794,11663,'_menu_item_type','post_type'),(14795,11663,'_menu_item_menu_item_parent','11517'),(14796,11663,'_menu_item_object_id','3751'),(14797,11663,'_menu_item_object','page'),(14798,11663,'_menu_item_target',''),(14799,11663,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14800,11663,'_menu_item_xfn',''),(14801,11663,'_menu_item_url',''),(14802,11663,'_menu_item_fusion_megamenu_icon',''),(14803,11663,'_menu_item_fusion_megamenu_title',''),(14804,11663,'_menu_item_fusion_megamenu_widgetarea','0'),(14805,11663,'_menu_item_fusion_megamenu_columnwidth',''),(14806,11663,'_menu_item_fusion_megamenu_thumbnail',''),(14807,11664,'_menu_item_type','post_type'),(14808,11664,'_menu_item_menu_item_parent','11517'),(14809,11664,'_menu_item_object_id','10589'),(14810,11664,'_menu_item_object','page'),(14811,11664,'_menu_item_target',''),(14812,11664,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14813,11664,'_menu_item_xfn',''),(14814,11664,'_menu_item_url',''),(14815,11664,'_menu_item_fusion_megamenu_icon',''),(14816,11664,'_menu_item_fusion_megamenu_title',''),(14817,11664,'_menu_item_fusion_megamenu_widgetarea','0'),(14818,11664,'_menu_item_fusion_megamenu_columnwidth',''),(14819,11664,'_menu_item_fusion_megamenu_thumbnail',''),(14820,11665,'_menu_item_type','post_type'),(14821,11665,'_menu_item_menu_item_parent','11519'),(14822,11665,'_menu_item_object_id','3743'),(14823,11665,'_menu_item_object','page'),(14824,11665,'_menu_item_target',''),(14825,11665,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14826,11665,'_menu_item_xfn',''),(14827,11665,'_menu_item_url',''),(14828,11665,'_menu_item_fusion_megamenu_icon',''),(14829,11665,'_menu_item_fusion_megamenu_title',''),(14830,11665,'_menu_item_fusion_megamenu_widgetarea','0'),(14831,11665,'_menu_item_fusion_megamenu_columnwidth',''),(14832,11665,'_menu_item_fusion_megamenu_thumbnail',''),(14833,11666,'_menu_item_type','post_type'),(14834,11666,'_menu_item_menu_item_parent','11516'),(14835,11666,'_menu_item_object_id','11034'),(14836,11666,'_menu_item_object','page'),(14837,11666,'_menu_item_target',''),(14838,11666,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14839,11666,'_menu_item_xfn',''),(14840,11666,'_menu_item_url',''),(14841,11666,'_menu_item_fusion_megamenu_icon',''),(14842,11666,'_menu_item_fusion_megamenu_title',''),(14843,11666,'_menu_item_fusion_megamenu_widgetarea','0'),(14844,11666,'_menu_item_fusion_megamenu_columnwidth',''),(14845,11666,'_menu_item_fusion_megamenu_thumbnail',''),(14846,11667,'_menu_item_type','post_type'),(14847,11667,'_menu_item_menu_item_parent','11518'),(14848,11667,'_menu_item_object_id','11177'),(14849,11667,'_menu_item_object','page'),(14850,11667,'_menu_item_target',''),(14851,11667,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14852,11667,'_menu_item_xfn',''),(14853,11667,'_menu_item_url',''),(14854,11667,'_menu_item_fusion_megamenu_icon',''),(14855,11667,'_menu_item_fusion_megamenu_title',''),(14856,11667,'_menu_item_fusion_megamenu_widgetarea','0'),(14857,11667,'_menu_item_fusion_megamenu_columnwidth',''),(14858,11667,'_menu_item_fusion_megamenu_thumbnail',''),(14859,11668,'_menu_item_type','post_type'),(14860,11668,'_menu_item_menu_item_parent','11519'),(14861,11668,'_menu_item_object_id','11188'),(14862,11668,'_menu_item_object','page'),(14863,11668,'_menu_item_target',''),(14864,11668,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14865,11668,'_menu_item_xfn',''),(14866,11668,'_menu_item_url',''),(14867,11668,'_menu_item_fusion_megamenu_icon',''),(14868,11668,'_menu_item_fusion_megamenu_title',''),(14869,11668,'_menu_item_fusion_megamenu_widgetarea','0'),(14870,11668,'_menu_item_fusion_megamenu_columnwidth',''),(14871,11668,'_menu_item_fusion_megamenu_thumbnail',''),(14872,11669,'_menu_item_type','post_type'),(14873,11669,'_menu_item_menu_item_parent','11519'),(14874,11669,'_menu_item_object_id','11195'),(14875,11669,'_menu_item_object','page'),(14876,11669,'_menu_item_target',''),(14877,11669,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14878,11669,'_menu_item_xfn',''),(14879,11669,'_menu_item_url',''),(14880,11669,'_menu_item_fusion_megamenu_icon',''),(14881,11669,'_menu_item_fusion_megamenu_title',''),(14882,11669,'_menu_item_fusion_megamenu_widgetarea','0'),(14883,11669,'_menu_item_fusion_megamenu_columnwidth',''),(14884,11669,'_menu_item_fusion_megamenu_thumbnail',''),(14885,11670,'_menu_item_type','post_type'),(14886,11670,'_menu_item_menu_item_parent','11518'),(14887,11670,'_menu_item_object_id','11204'),(14888,11670,'_menu_item_object','page'),(14889,11670,'_menu_item_target',''),(14890,11670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14891,11670,'_menu_item_xfn',''),(14892,11670,'_menu_item_url',''),(14893,11670,'_menu_item_fusion_megamenu_icon',''),(14894,11670,'_menu_item_fusion_megamenu_title',''),(14895,11670,'_menu_item_fusion_megamenu_widgetarea','0'),(14896,11670,'_menu_item_fusion_megamenu_columnwidth',''),(14897,11670,'_menu_item_fusion_megamenu_thumbnail',''),(14898,11671,'_menu_item_type','post_type'),(14899,11671,'_menu_item_menu_item_parent','11518'),(14900,11671,'_menu_item_object_id','11229'),(14901,11671,'_menu_item_object','page'),(14902,11671,'_menu_item_target',''),(14903,11671,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14904,11671,'_menu_item_xfn',''),(14905,11671,'_menu_item_url',''),(14906,11671,'_menu_item_fusion_megamenu_icon',''),(14907,11671,'_menu_item_fusion_megamenu_title',''),(14908,11671,'_menu_item_fusion_megamenu_widgetarea','0'),(14909,11671,'_menu_item_fusion_megamenu_columnwidth',''),(14910,11671,'_menu_item_fusion_megamenu_thumbnail',''),(14911,11672,'_menu_item_type','post_type'),(14912,11672,'_menu_item_menu_item_parent','11520'),(14913,11672,'_menu_item_object_id','11297'),(14914,11672,'_menu_item_object','page'),(14915,11672,'_menu_item_target',''),(14916,11672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14917,11672,'_menu_item_xfn',''),(14918,11672,'_menu_item_url',''),(14919,11672,'_menu_item_fusion_megamenu_icon',''),(14920,11672,'_menu_item_fusion_megamenu_title',''),(14921,11672,'_menu_item_fusion_megamenu_widgetarea','0'),(14922,11672,'_menu_item_fusion_megamenu_columnwidth',''),(14923,11672,'_menu_item_fusion_megamenu_thumbnail',''),(14924,11673,'_menu_item_type','post_type'),(14925,11673,'_menu_item_menu_item_parent','0'),(14926,11673,'_menu_item_object_id','11304'),(14927,11673,'_menu_item_object','page'),(14928,11673,'_menu_item_target',''),(14929,11673,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14930,11673,'_menu_item_xfn',''),(14931,11673,'_menu_item_url',''),(14932,11673,'_menu_item_fusion_menu_style',''),(14933,11673,'_menu_item_fusion_megamenu_icon',''),(14934,11673,'_menu_item_fusion_megamenu_status',''),(14935,11673,'_menu_item_fusion_megamenu_width',''),(14936,11673,'_menu_item_fusion_megamenu_columns','auto'),(14937,11673,'_menu_item_fusion_megamenu_columnwidth',''),(14938,11673,'_menu_item_fusion_megamenu_thumbnail',''),(14939,11674,'_menu_item_type','post_type'),(14940,11674,'_menu_item_menu_item_parent','11500'),(14941,11674,'_menu_item_object_id','11313'),(14942,11674,'_menu_item_object','page'),(14943,11674,'_menu_item_target',''),(14944,11674,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14945,11674,'_menu_item_xfn',''),(14946,11674,'_menu_item_url',''),(14947,11674,'_menu_item_fusion_megamenu_icon',''),(14948,11674,'_menu_item_fusion_megamenu_title',''),(14949,11674,'_menu_item_fusion_megamenu_widgetarea','0'),(14950,11674,'_menu_item_fusion_megamenu_columnwidth',''),(14951,11674,'_menu_item_fusion_megamenu_thumbnail',''),(14952,11675,'_wp_attached_file','revslider/Avada_Full_Width/slide_5.jpg'),(14953,11675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1700;s:6:\"height\";i:400;s:4:\"file\";s:38:\"revslider/Avada_Full_Width/slide_5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14954,11676,'_wp_attached_file','revslider/captions_tall/portfolio_1.jpg'),(14955,11676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:39:\"revslider/captions_tall/portfolio_1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14956,11677,'_wp_attached_file','revslider/captions_tall/portfolio_2.jpg'),(14957,11677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:39:\"revslider/captions_tall/portfolio_2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14958,11678,'_wp_attached_file','2016/08/3894.jpg'),(14959,11678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2016/08/3894.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14960,11679,'_wp_attached_file','2016/08/9756.jpg'),(14961,11679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:614;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2016/08/9756.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14962,11680,'_wp_attached_file','2016/08/3873.jpg'),(14963,11680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:434;s:4:\"file\";s:16:\"2016/08/3873.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:34:\"© Luke Beck - ALL RIGHTS RESERVED\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14964,11681,'_wp_attached_file','2016/08/10713.jpg'),(14965,11681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:900;s:4:\"file\";s:17:\"2016/08/10713.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14966,11682,'_wp_attached_file','2016/08/9757.jpg'),(14967,11682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:614;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2016/08/9757.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (81,1,'2016-07-10 17:13:56','2016-07-10 17:13:56','<strong> Free Rein\'s 2016 Fund Raising Calendar  is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg\"><img class=\"alignright wp-image-229 size-medium\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover-300x232.jpg\" alt=\"\" width=\"300\" height=\"232\" /></a></strong>\r\n\r\nOur fourth fund raising calendar is a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It has very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News & Events','','inherit','closed','open','','9-autosave-v1','','','2016-07-10 17:13:56','2016-07-10 17:13:56','',9,'http://freereincenter.com/?p=81',0,'revision','',0),(5,1,'2013-03-22 15:37:17','2013-03-22 15:37:17','<h4><a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey.jpg\" rel=\"attachment wp-att-348\"><img class=\"alignright wp-image-348\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey-300x222.jpg\" alt=\"Landon Lindsey\" width=\"235\" height=\"174\" /></a>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h4>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Welcome to Free Rein','','publish','closed','closed','','home','','','2016-02-13 15:39:38','2016-02-13 15:39:38','',0,'http://freereincenter.com/?page_id=5',0,'page','',0),(339,1,'2016-02-13 15:23:04','2016-02-13 15:23:04','<h2>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h2>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:23:04','2016-02-13 15:23:04','',5,'http://freereincenter.com/?p=339',0,'revision','',0),(338,1,'2016-02-13 15:22:30','2016-02-13 15:22:30','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”  This is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:22:30','2016-02-13 15:22:30','',5,'http://freereincenter.com/?p=338',0,'revision','',0),(6,1,'2013-03-22 15:37:03','2013-03-22 15:37:03','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com/\" rel=\"bookmark\"> </a></h2>\n<div>\n\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\n\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\n\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\n\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\n\n&nbsp;\n\n<strong>Free Rein Center</strong>\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\n<strong>828-883-3375</strong>\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\n\n</div>','Home','','inherit','open','open','','5-revision-v1','','','2013-03-22 15:37:03','2013-03-22 15:37:03','',5,'http://freereincenter.com/?p=6',0,'revision','',0),(7,1,'2013-03-22 15:38:15','2013-03-22 15:38:15','\"Horses Helping Humans Heal\" is more than a tagline at Free Rein - it\'s what we\'re all about.\r\n\r\nFree Rein is proud to have a vibrant, growing, human-horse interaction program.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA).\r\n\r\nThe therapeutic benefits of structured interaction with a horse are recognized by many in the medical professions.  For individuals with special needs in the cognitive, emotional, physical, and relationship areas, the unique relationship formed with a horse can lead to dramatic growth in self-esteem, self-awareness, confidence, and communication skills.  For those with physical disabilities, there are often the added outcomes of improved coordination, balance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are capable of more than we think, and that together we can help build a more caring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','publish','closed','closed','','about-us','','','2016-02-13 15:52:39','2016-02-13 15:52:39','',0,'http://freereincenter.com/?page_id=7',1,'page','',0),(8,1,'2013-03-22 15:37:50','2013-03-22 15:37:50','','About Us','','inherit','open','open','','7-revision-v1','','','2013-03-22 15:37:50','2013-03-22 15:37:50','',7,'http://freereincenter.com/?p=8',0,'revision','',0),(9,1,'2013-03-22 15:38:46','2013-03-22 15:38:46','<strong>&nbsp;Free Rein\'s 2016 Fund Raising Calendar&nbsp;&nbsp;is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg\"><img class=\"alignright wp-image-229 size-medium\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover-300x232.jpg\" alt=\"\" width=\"300\" height=\"232\"></a></strong>\r\n\r\nOur fourth&nbsp;fund raising calendar is&nbsp;a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.&nbsp; It has very high quality art.&nbsp;&nbsp;Thanks to&nbsp;local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News & Events','','publish','closed','closed','','news-and-events','','','2016-03-31 19:32:38','2016-03-31 19:32:38','',0,'http://freereincenter.com/?page_id=9',2,'page','',0),(359,1,'2016-02-16 20:04:22','2016-02-16 20:04:22','<strong> Free Rein\'s 2016 Fund Raising Calendar  is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg\"><img class=\"alignright wp-image-229 size-medium\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover-300x232.jpg\" alt=\"\" width=\"300\" height=\"232\" /></a></strong>\r\n\r\nOur fourth fund raising calendar is a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It has very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','closed','','9-revision-v1','','','2016-02-16 20:04:22','2016-02-16 20:04:22','',9,'http://freereincenter.com/?p=359',0,'revision','',0),(10,1,'2013-03-22 15:39:20','2013-03-22 15:39:20','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg\"><img class=\"alignleft wp-image-207\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014-300x298.jpg\" alt=\"\" width=\"144\" height=\"143\" /></a></h2>\r\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) at Free Rein this year - more than any other year in Free Rein\'s 15 year history.<img class=\"wp-image-307  alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"137\" height=\"137\" />\r\n\r\nOne of our student-rider\'s Moms really conveyed the impacts that Free Rein makes in real peoples\' lives when she told the audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that, \"Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\"\r\n\r\n<img class=\"alignright wp-image-310 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/DSC02805-201x300.jpg\" alt=\"DSC02805\" width=\"134\" height=\"200\" />The Moon Shine Babies entertained Lois &amp; Clark (and the rest of us) us with their beautiful music and Chef Craig made sure that we had great food to enjoy.  Duke and Bird (<a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a>) brought their high-energy <img class=\"wp-image-306  alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"130\" height=\"130\" /> \"auctiontainment\" that made giving fun for everyone.\r\n\r\nBoard members Porsha Smith and Denise Stretcher created and oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\r\n\r\nGuests had a wide selection of great live and silent auction items to choose from, including:\r\n<ul>\r\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\r\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\r\n	<li>House concerts by the Moon Shine Babies.</li>\r\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\r\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\r\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\r\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\r\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\r\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\r\n</ul>\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\r\n\r\nSponsors of the 2015 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\r\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\r\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Brown Bean Coffee ~ Bullwinkles, Rocky\'s, Moose Tracks ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Egolf Motors ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Hawg Wild ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Jet\'s Pizza ~ Judith and Peter Johnson ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ Tony\'s Deli ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','publish','closed','closed','','annual-fall-gala','','','2015-10-28 15:23:03','2015-10-28 15:23:03','',9,'http://freereincenter.com/?page_id=10',3,'page','',0),(11,1,'2013-03-22 15:39:09','2013-03-22 15:39:09','','Annual Fall Gala','','inherit','open','open','','10-revision-v1','','','2013-03-22 15:39:09','2013-03-22 15:39:09','',10,'http://freereincenter.com/?p=11',0,'revision','',0),(12,1,'2013-03-22 15:39:39','2013-03-22 15:39:39','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our spring 2016 session was another success, serving 65 individuals.  Our 8-week fall 2016 </span><span style=\"line-height: 1.5em;\">session will start on September 6th and end on November 5th (including the week of make-ups we invariably need due to weather).  We served more than 110 individuals in 2015, the largest number of people Free Rein has served in a year since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','publish','closed','closed','','lessons','','','2016-07-25 22:14:02','2016-07-25 22:14:02','',7,'http://freereincenter.com/?page_id=12',2,'page','',0),(125,1,'2013-10-30 17:37:21','2013-10-30 17:37:21','<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign.jpg\"><img class=\"wp-image-316 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign-300x211.jpg\" alt=\"2016 Calendar POS Sign\" width=\"263\" height=\"185\" /></a>Our annual calendar is a true labor of love... it\'s a lot of work, but we love to do it.  We love to do it because it is another way we can tell the wonderful stories of Horses Helping Humans Heal - and those humans, too.\r\n\r\nThe 2016 calendars are here.  Printed on heavy stock, easy to write important notes on, and only cost $15 each ~ they make wonderful gifts... and help support Free Rein\'s programs.  Contact the office at the email or phone number below to get one, or look for them at some of the calendar sponsors shown below.\r\n\r\n<strong>Please help thank our annual calendar sponsors</strong> - they believe in what we do and show it by sponsoring months in our calendar - check out their web pages using the links below and thank them for their support of Free Rein with your patronage.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page.jpg\"><img class=\"wp-image-314 size-medium alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page-191x300.jpg\" alt=\"\" width=\"191\" height=\"300\" /></a>\r\n<table style=\"height: 585px;\" width=\"362\">\r\n<tbody>\r\n<tr>\r\n<td width=\"94\">January</td>\r\n<td width=\"249\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com/\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">February</td>\r\n<td width=\"249\"><a title=\"Food Matters Market &amp; Cafe\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">March</td>\r\n<td width=\"249\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">April</td>\r\n<td width=\"249\"><a title=\"Hampton Inn of Brevard/Pisgah Forest\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">May</td>\r\n<td width=\"249\"><a title=\"D.D. Bullwinkel\'s ~ Rocky\'s ~ Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">June</td>\r\n<td width=\"249\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">July</td>\r\n<td width=\"249\"><a title=\"Perfect Balance Physical Therapy\" href=\"http://www.perfectbalancept.com/\" target=\"_blank\">Perfect Balance Physical Therapy</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">August</td>\r\n<td width=\"249\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">September</td>\r\n<td width=\"249\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">October</td>\r\n<td width=\"249\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">November</td>\r\n<td width=\"249\"><a title=\"Broad Street Wines\" href=\"http://http://broadstreetwines.com/\" target=\"_blank\">Broad Street Wines</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">December</td>\r\n<td width=\"249\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>\r\nP.O. Box 1325 Brevard, NC  28712</strong>\r\n\r\n<strong>Free Rein Center</strong>\r\n\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Free Rein Calendar','','publish','closed','closed','','thanks-to-our-donors-and-supporters','','','2015-10-28 15:44:16','2015-10-28 15:44:16','',9,'http://freereincenter.com/?page_id=125',2,'page','',0),(13,1,'2013-03-22 15:40:15','2013-03-22 15:40:15','[si-contact-form form=\'1\']','Contact','','publish','closed','closed','','contact','','','2013-03-22 16:21:26','2013-03-22 16:21:26','',0,'http://freereincenter.com/?page_id=13',5,'page','',0),(14,1,'2013-03-22 15:41:06','2013-03-22 15:41:06','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Tractor Supply, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals, groups, foundations, and businesses of all sizes.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to feed and care for horses, sponsor students who cannot afford to pay for lessons, and pay for operating expenses, which we try to keep as low as possible...  so more of our donations can go towards what matters most.  In 2013, more than 88% of our revenues went to support program-related expenses.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>...<a href=\"http://freereincenter.com/?page_id=18\">learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','publish','closed','closed','','ways-you-can-help','','','2014-04-02 00:58:11','2014-04-02 00:58:11','',0,'http://freereincenter.com/?page_id=14',3,'page','',0),(93,1,'2014-04-02 00:57:58','2014-04-02 00:57:58','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Tractor Supply, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals, groups, foundations, and businesses of all sizes.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to feed and care for horses, sponsor students who cannot afford to pay for lessons, and pay for operating expenses, which we try to keep as low as possible...  so more of our donations can go towards what matters most.  In 2013, more than 88% of our revenues went to support program-related expenses.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>...<a href=\"http://freereincenter.com/?page_id=18\">learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-autosave-v1','','','2014-04-02 00:57:58','2014-04-02 00:57:58','',14,'http://freereincenter.com/?p=93',0,'revision','',0),(15,1,'2013-03-22 15:41:03','2013-03-22 15:41:03','<h2><a title=\"Permanent Link to Ways You Can Help\" href=\"http://freereincenter.com/?page_id=203\" rel=\"bookmark\">Ways You Can Help</a></h2>\n<div>\n\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\n<ul>\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=254\">learn more</a></li>\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com/?page_id=231\">.learn more</a></li>\n</ul>\n&nbsp;\n\n<strong>Free Rein Center</strong>\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\n<strong>828-883-3375</strong>\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\n\n</div>','Ways You Can Help','','inherit','open','open','','14-revision-v1','','','2013-03-22 15:41:03','2013-03-22 15:41:03','',14,'http://freereincenter.com/?p=15',0,'revision','',0),(16,1,'2013-03-22 15:41:35','2013-03-22 15:41:35','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li>Donating your Time:  Help with our students and horses during class time or help with one of our special events. “Volunteers are the heart and soul of our program.  Without the help of our wonderful helpers, we could not offer our programs to our students,” says our former volunteer coordinator, Kathy Morrow.</li>\r\n	<li>Volunteers help us primarily by assisting with our students and horses during our classes.  You do not need to know a lot about children or adults with special needs or about horses.  We provide all the training you need to make our students’ dreams come true.  All Volunteers who wish to work with our lessons must attend a Volunteer Training Session before they begin.  <strong>Volunteer Orientation/Training takes place prior to the start of each </strong><strong>session</strong>. If you would like to volunteer with Free Rein, please call our office or send us an email at info@freereincenter.com.</li>\r\n	<li>If working in classes is not what you had in mind, there are many other areas in which we need help including fundraising, office work, special events, and horse care. Volunteer Today! You will be glad you did!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Volunteer','','publish','closed','closed','','volunteer','','','2014-07-31 13:51:57','2014-07-31 13:51:57','',14,'http://freereincenter.com/?page_id=16',1,'page','',0),(17,1,'2013-03-22 15:41:22','2013-03-22 15:41:22','','Volunteer','','inherit','open','open','','16-revision-v1','','','2013-03-22 15:41:22','2013-03-22 15:41:22','',16,'http://freereincenter.com/?p=17',0,'revision','',0),(18,1,'2013-03-22 15:42:16','2013-03-22 15:42:16','<a title=\"Permanent Link to Sponsorship\" href=\"http://freereincenter.com/?page_id=231\" rel=\"bookmark\"><strong style=\"color: #333333;\">Sponsorship Opportunities for Supporting Free Rein</strong></a>\r\n<div>\r\n\r\n<strong>Special Friends of Free Rein</strong>:  This is a three year commitment to donate\r\na minimum of $1000 annually during that period.\r\n\r\n<strong>Roundup Circle:</strong> Minimum donation of $5000\r\n\r\n<strong>Riders’ Circle:</strong> Donation of $2500 to $4999\r\n\r\n<strong>Groomers’ Circle:</strong> Donation of $1500 to $2499\r\n\r\n<strong>Lead Rope Circle:</strong> Donation of $1000 to $1499\r\n\r\n<strong>Arena Circle:</strong> Donation of $500 to $999\r\n\r\n<strong>Tack Room Circle:</strong> Donation of $100 to $499\r\n\r\n<strong>Haystack Circle:</strong> Donation of less than $100\r\n<h2><strong><span style=\"font-size: 0.83em;\">Help Free Rein Keep Trottin’ Along……We could not do what we do without your support!</span></strong></h2>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Sponsorship','','publish','closed','closed','','sponsorship','','','2013-11-11 03:58:12','2013-11-11 03:58:12','',14,'http://freereincenter.com/?page_id=18',2,'page','',0),(19,1,'2013-03-22 15:42:05','2013-03-22 15:42:05','','Sponsorship','','inherit','open','open','','18-revision-v1','','','2013-03-22 15:42:05','2013-03-22 15:42:05','',18,'http://freereincenter.com/?p=19',0,'revision','',0),(20,1,'2013-03-22 15:42:53','2013-03-22 15:42:53','<h3 style=\"text-align: left;\">&nbsp;</h3>\r\n<h3 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small.jpg\" rel=\"attachment wp-att-380\"><img class=\"alignnone size-medium wp-image-380\" src=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small-300x185.jpg\" alt=\"Priceless \" width=\"300\" height=\"185\"></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein. &nbsp;Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_donations\"> <input name=\"business\" type=\"hidden\" value=\"freerein1325@gmail.com\"> <input name=\"lc\" type=\"hidden\" value=\"US\"> <input name=\"item_name\" type=\"hidden\" value=\"Free Rein Center\"> <input name=\"no_note\" type=\"hidden\" value=\"0\"> <input name=\"currency_code\" type=\"hidden\" value=\"USD\"> <input name=\"bn\" type=\"hidden\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\"> <input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\"> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\">\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n\r\n</form></div>','Donate Now!','','publish','closed','closed','','donate-now','','','2016-03-31 19:45:08','2016-03-31 19:45:08','',0,'http://freereincenter.com/?page_id=20',4,'page','',0),(21,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','21','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=21',12,'nav_menu_item','',0),(22,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','22','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',14,'http://freereincenter.com/?p=22',11,'nav_menu_item','',0),(23,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','23','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',14,'http://freereincenter.com/?p=23',10,'nav_menu_item','',0),(24,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','24','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=24',9,'nav_menu_item','',0),(25,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','25','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=25',13,'nav_menu_item','',0),(26,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','26','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',7,'http://freereincenter.com/?p=26',3,'nav_menu_item','',0),(432,1,'2016-07-10 18:50:07','2016-07-10 18:50:07','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n[caption id=\"attachment_349\" align=\"alignright\" width=\"182\"]<a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\"><img class=\"wp-image-349\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\" alt=\"Lois &amp; Clark with Avrey (2201 x 1506)\" width=\"182\" height=\"124\" /></a> Avery Just Loves Lois &amp; Clark[/caption]\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\n<em><strong>Curious about these new activities?</strong><strong>  </strong><strong>Order your tickets, come to the Mane Event, and check them out.  </strong></em>\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.\r\n\r\n<em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 18:50:07','2016-07-10 18:50:07','',384,'http://freereincenter.com/?p=432',0,'revision','',0),(28,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','28','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=28',4,'nav_menu_item','',0),(29,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','29','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=29',2,'nav_menu_item','',0),(30,1,'2013-03-22 15:45:15','2013-03-22 15:45:15',' ','','','publish','open','closed','','30','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',0,'http://freereincenter.com/?p=30',1,'nav_menu_item','',0),(113,1,'2013-04-26 00:20:07','2013-04-26 00:20:07','<strong>White Squirrel Festival on May 25th &amp; 26th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 25th &amp; 26th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  We\'ll have t-shirts, refreshments, fun activities for youth, and a lot of information about our programs.  A new addition will be absolutely touching \"therapeutic horses\" that one of our board members is making.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina 2012 at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a> has been a big success.</strong><strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nYou can highlight your loved ones\' special days with a special note on that day in the calendar.  If you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-04-26 00:20:07','2013-04-26 00:20:07','',9,'http://freereincenter.com/?p=113',0,'revision','',0),(91,1,'2013-03-27 15:39:35','2013-03-27 15:39:35','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com.previewdns.com/?page_id=254\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com.previewdns.com/?page_id=231\">.learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-03-27 15:39:35','2013-03-27 15:39:35','',14,'http://freereincenter.com/?p=91',0,'revision','',0),(32,1,'2013-03-22 15:39:20','2013-03-22 15:39:20','<h2><a title=\"Permanent Link to Annual Fall Gala\" href=\"http://freereincenter.com/?page_id=37\" rel=\"bookmark\">Annual Fall Gala</a></h2>\r\n<div>\r\n\r\nFree Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyne who attended seemed to have a wonderful time.  Miss Shelby Cannon, Miss Teen NC International, was there to help out as well.\r\n\r\nWe’ll be getting started soon with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-03-22 15:39:20','2013-03-22 15:39:20','',10,'http://freereincenter.com/?p=32',0,'revision','',0),(33,1,'2013-03-22 15:39:39','2013-03-22 15:39:39','<h2><a title=\"Permanent Link to Lessons\" href=\"http://freereincenter.com/?page_id=35\" rel=\"bookmark\">Lessons</a></h2>\r\n<div>\r\n\r\n<strong>Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.\r\n</strong>\r\n\r\nOur 8-week fall session is well underway, and we are pleased to be serving the largest number of students we have had in many years.\r\n\r\nWe are currently accepting applications for the Spring 2013 session which will begin in mid-March. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or info@freereincenter.com for more information or to request a registration packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-03-22 15:39:39','2013-03-22 15:39:39','',12,'http://freereincenter.com/?p=33',0,'revision','',0),(34,1,'2013-03-22 15:41:35','2013-03-22 15:41:35','<h2><a title=\"Permanent Link to Volunteer\" href=\"http://freereincenter.com/?page_id=254\" rel=\"bookmark\">Volunteer</a></h2>\r\n<div>\r\n\r\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<ul>\r\n	<li>Donating your Time:  Help with our students and horses during class time or help with one of our special events. “Volunteers are the heart and soul of our program.  Without the help of our wonderful helpers, we could not offer our programs to our students,” says our former volunteer coordinator, Kathy Morrow.</li>\r\n	<li>Volunteers help us primarily by assisting with our students and horses during our classes.  You do not need to know a lot about children or adults with special needs or about horses.  We provide all the training you need to make our students’ dreams come true.  All Volunteers who wish to work with our lessons must attend a Volunteer Training Session before they begin.  <strong>Volunteer Training takes place prior to the start of each </strong><strong>session</strong>. If you would like to volunteer with Free Rein, please call our office or send us an email at info@freereincenter.com.</li>\r\n	<li>If working in classes is not what you had in mind, there are many other areas in which we need help including fundraising, office work, special events, and horse care. Volunteer Today! You will be glad you did!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Volunteer','','inherit','closed','open','','16-revision-v1','','','2013-03-22 15:41:35','2013-03-22 15:41:35','',16,'http://freereincenter.com/?p=34',0,'revision','',0),(78,1,'2013-03-22 16:20:26','2013-03-22 16:20:26','<h2><a title=\"Permanent Link to Lessons\" href=\"http://freereincenter.com/?page_id=35\" rel=\"bookmark\">Lessons</a></h2>\r\n<div>\r\n\r\n<strong>Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.\r\n</strong>\r\n\r\nOur 8-week fall session is well underway, and we are pleased to be serving the largest number of students we have had in many years.\r\n\r\nWe are currently accepting applications for the Spring 2013 session which will begin in mid-March. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or info@freereincenter.com for more information or to request a registration packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-03-22 16:20:26','2013-03-22 16:20:26','',12,'http://freereincenter.com/?p=78',0,'revision','',0),(35,1,'2013-03-22 15:42:16','2013-03-22 15:42:16','<h2><a title=\"Permanent Link to Sponsorship\" href=\"http://freereincenter.com/?page_id=231\" rel=\"bookmark\">Sponsorship</a></h2>\r\n<div>\r\n\r\n<strong>Sponsorship Opportunities for Supporting Free Rein</strong>\r\n\r\n<strong>Special Friends of Free Rein</strong>:  This is a three year commitment to donate\r\na minimum of $1000 annually during that period.\r\n\r\n<strong>Roundup Circle:</strong> Minimum donation of $5000\r\n\r\n<strong>Riders’ Circle:</strong> Donation of $2500 to $4999\r\n\r\n<strong>Groomers’ Circle:</strong> Donation of $1500 to $2499\r\n\r\n<strong>Lead Rope Circle:</strong> Donation of $1000 to $1499\r\n\r\n<strong>Arena Circle:</strong> Donation of $500 to $999\r\n\r\n<strong>Tack Room Circle:</strong> Donation of $100 to $499\r\n\r\n<strong>Haystack Circle:</strong> Donation of less than $100\r\n\r\n<strong>2012 Fall Gala Sponsor:</strong> The 2012 Fall Gala will be held at Connestee Falls Country\r\nClub on Saturday, October 20, 2012.   Minimum donation for a sponsor is $1000.\r\n<h5>Help Free Rein Keep Trottin’ Along……We could not do what we do without your support!</h5>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Sponsorship','','inherit','closed','open','','18-revision-v1','','','2013-03-22 15:42:16','2013-03-22 15:42:16','',18,'http://freereincenter.com/?p=35',0,'revision','',0),(146,1,'2013-11-11 03:58:12','2013-11-11 03:58:12','<a title=\"Permanent Link to Sponsorship\" href=\"http://freereincenter.com/?page_id=231\" rel=\"bookmark\"><strong style=\"color: #333333;\">Sponsorship Opportunities for Supporting Free Rein</strong></a>\r\n<div>\r\n\r\n<strong>Special Friends of Free Rein</strong>:  This is a three year commitment to donate\r\na minimum of $1000 annually during that period.\r\n\r\n<strong>Roundup Circle:</strong> Minimum donation of $5000\r\n\r\n<strong>Riders’ Circle:</strong> Donation of $2500 to $4999\r\n\r\n<strong>Groomers’ Circle:</strong> Donation of $1500 to $2499\r\n\r\n<strong>Lead Rope Circle:</strong> Donation of $1000 to $1499\r\n\r\n<strong>Arena Circle:</strong> Donation of $500 to $999\r\n\r\n<strong>Tack Room Circle:</strong> Donation of $100 to $499\r\n\r\n<strong>Haystack Circle:</strong> Donation of less than $100\r\n<h2><strong><span style=\"font-size: 0.83em;\">Help Free Rein Keep Trottin’ Along……We could not do what we do without your support!</span></strong></h2>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Sponsorship','','inherit','closed','open','','18-revision-v1','','','2013-11-11 03:58:12','2013-11-11 03:58:12','',18,'http://freereincenter.com/?p=146',0,'revision','',0),(36,1,'2013-03-22 16:20:07','2013-03-22 16:20:07','<h2><a title=\"Permanent Link to Annual Fall Gala\" href=\"http://freereincenter.com/?page_id=37\" rel=\"bookmark\">Annual Fall Gala</a></h2>\r\n<div>\r\n\r\nFree Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyne who attended seemed to have a wonderful time.  Miss Shelby Cannon, Miss Teen NC International, was there to help out as well.\r\n\r\nWe’ll be getting started soon with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-03-22 16:20:07','2013-03-22 16:20:07','',10,'http://freereincenter.com/?p=36',0,'revision','',0),(37,1,'2013-03-22 15:41:06','2013-03-22 15:41:06','<h2><a title=\"Permanent Link to Ways You Can Help\" href=\"http://freereincenter.com/?page_id=203\" rel=\"bookmark\">Ways You Can Help</a></h2>\r\n<div>\r\n\r\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=254\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com/?page_id=231\">.learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-03-22 15:41:06','2013-03-22 15:41:06','',14,'http://freereincenter.com/?p=37',0,'revision','',0),(38,1,'2013-03-22 15:40:15','2013-03-22 15:40:15','[si-contact-form form=\'1\']','Contact','','inherit','closed','open','','13-revision','','','2013-03-22 15:40:15','2013-03-22 15:40:15','',13,'http://freereincenter.com/?p=38',0,'revision','',0),(39,1,'2013-03-22 15:38:46','2013-03-22 15:38:46','<strong>Macho’s birthday celebration on Sat., May 12</strong>\r\n\r\n<a title=\"Macho\'s Birthday\" href=\"http://freereincenter.com/wp-content/Macho\'s-Birthday-Event-Flyer.pdf\" target=\"_blank\">Click here to see details</a>\r\n\r\n&nbsp;\r\n\r\n<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 26th &amp; 27th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  Bernard Pellitier (a local farrier) will be on hand, demonstrating his skills in creating some truly beautiful hand-forged art pieces.  Bernard’s pieces are highly sought-after pieces of original art and he’ll be selling them on Saturday the 26th for the benefit of Free Rein Center.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-03-22 15:38:46','2013-03-22 15:38:46','',9,'http://freereincenter.com/?p=39',0,'revision','',0),(40,1,'2013-03-22 15:38:15','2013-03-22 15:38:15','Free Rein is proud to have a vibrant, growing, human-horse interaction\r\nprogram.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the\r\nNorth American Riding for the Handicapped Association (NARHA).\r\nThe therapeutic benefits of structured interaction with a horse are recognized\r\nby many in the medical professions.  For individuals with special needs in the\r\ncognitive, emotional, physical, and relationship areas, the unique relationship\r\nformed with a horse can lead to dramatic growth in self-esteem, self-\r\nawareness, confidence, and communication skills.  For those with physical\r\ndisabilities, there are often the added outcomes of improved coordination,\r\nbalance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are\r\ncapable of more than we think, and that together we can help build a more\r\ncaring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','inherit','closed','open','','7-revision-v1','','','2013-03-22 15:38:15','2013-03-22 15:38:15','',7,'http://freereincenter.com/?p=40',0,'revision','',0),(41,1,'2013-03-22 15:37:17','2013-03-22 15:37:17','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','5-revision-v1','','','2013-03-22 15:37:17','2013-03-22 15:37:17','',5,'http://freereincenter.com/?p=41',0,'revision','',0),(42,1,'2013-03-22 16:22:48','2013-03-22 16:22:48','Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','publish','closed','open','','home','','','2013-03-25 17:48:50','2013-03-25 17:48:50','',0,'http://freereincenter.com/?p=42',0,'post','',0),(43,1,'2013-03-22 16:22:48','2013-03-22 16:22:48','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com/\" rel=\"bookmark\">Home</a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','42-revision','','','2013-03-22 16:22:48','2013-03-22 16:22:48','',42,'http://freereincenter.com/?p=43',0,'revision','',0),(357,1,'2016-02-13 15:50:16','2016-02-13 15:50:16','','Free Rein Logo for Facebook','','inherit','closed','closed','','free-rein-logo-for-facebook','','','2016-02-13 15:50:16','2016-02-13 15:50:16','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Free-Rein-Logo-for-Facebook.jpg',0,'attachment','image/jpeg',0),(363,1,'2016-03-16 19:22:43','2016-03-16 19:22:43','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:22:43','2016-03-16 19:22:43','',190,'http://freereincenter.com/?p=363',0,'revision','',0),(350,1,'2016-02-13 15:30:32','2016-02-13 15:30:32','<h4>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h4>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Welcome to Free Rein','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:30:32','2016-02-13 15:30:32','',5,'http://freereincenter.com/?p=350',0,'revision','',0),(45,1,'2013-03-22 16:21:40','2013-03-22 16:21:40','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','5-revision-v1','','','2013-03-22 16:21:40','2013-03-22 16:21:40','',5,'http://freereincenter.com/?p=45',0,'revision','',0),(46,1,'2013-03-22 16:23:03','2013-03-22 16:23:03','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com/\" rel=\"bookmark\">Home</a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','42-revision-2','','','2013-03-22 16:23:03','2013-03-22 16:23:03','',42,'http://freereincenter.com/?p=46',0,'revision','',0),(47,1,'2013-03-22 16:25:44','2013-03-22 16:25:44','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\n<div>\n\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\n\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\n\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\n\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\n\n&nbsp;\n\n<strong>Free Rein Center</strong>\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\n<strong>828-883-3375</strong>\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\n\n</div>','Home','','inherit','closed','open','','42-autosave','','','2013-03-22 16:25:44','2013-03-22 16:25:44','',42,'http://freereincenter.com/?p=47',0,'revision','',0),(111,1,'2013-04-26 00:08:56','2013-04-26 00:08:56','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n\r\n&nbsp;\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala... possibly even some free cruise tickets.  If you\'d like to help out in the organization of this fun event, please contact the office and we\'ll get you in touch with the organizing committee.</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-04-26 00:08:56','2013-04-26 00:08:56','',10,'http://freereincenter.com/?p=111',0,'revision','',0),(107,1,'2013-04-26 00:07:08','2013-04-26 00:07:08','<strong>White Squirrel Festival on May 25th &amp; 26th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 25th &amp; 26th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  We\'ll have t-shirts, refreshments, fun activities for youth, and a lot of information about our programs.  A new addition will be absolutely touching \"therapeutic horses\" that one of our board members is making.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina 2012 at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a> has been a big success.</strong><strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nYou can highlight your loved ones\' special days with a special note on that day in the calendar.  If you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-04-26 00:07:08','2013-04-26 00:07:08','',9,'http://freereincenter.com/?p=107',0,'revision','',0),(188,1,'2013-03-27 15:41:03','2013-03-27 15:41:03','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li>Donating your Time:  Help with our students and horses during class time or help with one of our special events. “Volunteers are the heart and soul of our program.  Without the help of our wonderful helpers, we could not offer our programs to our students,” says our former volunteer coordinator, Kathy Morrow.</li>\r\n	<li>Volunteers help us primarily by assisting with our students and horses during our classes.  You do not need to know a lot about children or adults with special needs or about horses.  We provide all the training you need to make our students’ dreams come true.  All Volunteers who wish to work with our lessons must attend a Volunteer Training Session before they begin.  <strong>Volunteer Training takes place prior to the start of each </strong><strong>session</strong>. If you would like to volunteer with Free Rein, please call our office or send us an email at info@freereincenter.com.</li>\r\n	<li>If working in classes is not what you had in mind, there are many other areas in which we need help including fundraising, office work, special events, and horse care. Volunteer Today! You will be glad you did!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Volunteer','','inherit','closed','open','','16-revision-v1','','','2013-03-27 15:41:03','2013-03-27 15:41:03','',16,'http://freereincenter.com/?p=188',0,'revision','',0),(106,1,'2013-04-26 00:15:09','2013-04-26 00:15:09','','FR Calendar July Days','','inherit','closed','open','','fr-calendar-july-days','','','2013-04-26 00:15:09','2013-04-26 00:15:09','',9,'http://freereincenter.com/wp-content/uploads/2013/04/FR-Calendar-July-Days.jpg',0,'attachment','image/jpeg',0),(124,1,'2013-09-16 16:06:23','2013-09-16 16:06:23','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Thursday as well as a limited schedule on Saturday mornings.</strong>\r\n\r\n&nbsp;\r\n<div>\r\n\r\nOur 8-week spring session was a big success, and we are pleased to have served the largest number of students we have had in many years.\r\n\r\nOur fall session is underway.  We are currently accepting applications for the spring 2014 session.  Please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-09-16 16:06:23','2013-09-16 16:06:23','',12,'http://freereincenter.com/?p=124',0,'revision','',0),(57,1,'2013-03-22 16:24:41','2013-03-22 16:24:41','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','42-revision-3','','','2013-03-22 16:24:41','2013-03-22 16:24:41','',42,'http://freereincenter.com/?p=57',0,'revision','',0),(104,1,'2013-04-03 02:22:13','2013-04-03 02:22:13','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>...<a href=\"http://freereincenter.com/?page_id=18\">learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-04-03 02:22:13','2013-04-03 02:22:13','',14,'http://freereincenter.com/?p=104',0,'revision','',0),(112,1,'2013-04-04 14:59:12','2013-04-04 14:59:12','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.</strong>\r\n\r\n&nbsp;\r\n<div>\r\n\r\nOur 8-week spring session is underway, and we are pleased to be serving the largest number of students we have had in many years.\r\n\r\n&nbsp;\r\n\r\nWe are currently accepting applications for the fall 2013 session which will begin in early September. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-04-04 14:59:12','2013-04-04 14:59:12','',12,'http://freereincenter.com/?p=112',0,'revision','',0),(103,1,'2013-04-04 14:52:51','2013-04-04 14:52:51','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n\r\n&nbsp;\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala... possibly even some free cruise tickets.</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-04-04 14:52:51','2013-04-04 14:52:51','',10,'http://freereincenter.com/?p=103',0,'revision','',0),(61,1,'2013-03-25 17:45:51','2013-03-25 17:45:51','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','42-revision-4','','','2013-03-25 17:45:51','2013-03-25 17:45:51','',42,'http://freereincenter.com/?p=61',0,'revision','',0),(63,1,'2013-03-25 17:51:06','2013-03-25 17:51:06','Rockbrook is a summer camp for girls located in Brevard, North Carolina. It was founded in 1921 and provides an outstanding summer camp experience for girls ages 6 – 16.\r\n\r\nRockbrook also serves as the home for Free Rein during fall, winter and spring seasons.\r\n\r\nRockbrook\'s summer camp <a title=\"Camp Horseback Riding Program\" href=\"http://www.rockbrookcamp.com/horseback.html\" target=\"_blank\">horseback riding program</a> facilities include teaching and show riding rings, two barns, and more than 30 acres of pasture.  Rockbrook also leases some of its horses to Free Rein for use in its therapeutic riding program.\r\n\r\n<img title=\"Camp Horse Girl\" alt=\"Girl riding horse at Rockbrook Camp\" src=\"http://freereincenter.com/wp-content/uploads/2011/07/camp-horse-girl-300x225.jpg\" width=\"300\" height=\"225\" />\r\n\r\n&nbsp;','Rockbrook Camp for Girls!','','publish','closed','open','','rockbrook-camp-for-girls-2','','','2013-03-25 17:51:06','2013-03-25 17:51:06','',0,'http://freereincenter.com/?page_id=63',6,'page','',0),(64,1,'2013-03-25 17:50:35','2013-03-25 17:50:35','','Rockbrook Camp for Girls!','','inherit','closed','open','','63-revision','','','2013-03-25 17:50:35','2013-03-25 17:50:35','',63,'http://freereincenter.com/?p=64',0,'revision','',0),(65,1,'2013-03-25 17:52:01','2013-03-25 17:52:01','<p style=\"text-align: left;\"><strong>Professional Association of Therapeutic Horsemanship International (PATH Intl.)</strong>, a federally-registered 501(c3) nonprofit, was formed in 1969 as the North American Riding for the Handicapped Association to promote <a title=\"Learn About EAAT\" href=\"http://www.pathintl.org/resources-education/resources/eaat\">equine-assisted activities and therapies</a> (EAAT) for individuals with special needs. With over 3,500 certified instructors and 800 member centers around the globe, more than 6,500 PATH Intl. members help more than 42,000 children and adults with physical, mental and emotional challenges find strength and independence through the power of the horse each year. In addition to <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#riding\">therapeutic riding</a>, our centers offer a number of therapeutic equine-related activities, including <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#hippotherapy\">hippotherapy</a>, <a href=\"http://www.pathintl.org/component/content/article/60/249-eflp-definitions\">equine-facilitated mental health</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#driving\">driving</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#vaulting\">interactive vaulting</a>, competition, ground work and stable management. More recently, programs offer services in human growth and development to serve wide-ranging audiences for such educational purposes as leadership training, team building and other human capacity enhancement skills for the workplace and for daily use. <a href=\"http://www.pathintl.org/path-intl-centers/find-center\">Click here to find a center near you</a>.</p>\r\n<p style=\"text-align: left;\">Through our <a href=\"http://www.pathintl.org/resources-education/certifications\">certification </a>and <a href=\"http://www.pathintl.org/narha-centers/narha-center-accreditation\">accreditation </a>programs, plus a wide variety of <a href=\"http://www.pathintl.org/resources-education/resources\">educational resources</a> that includes a <a href=\"http://www.pathintl.org/component/content/category/8-national-general\">national annual conference</a> with hundreds of attendees, the association helps members start and maintain successful EAAT programs. There are more than 30,000 volunteers, 3,500 instructors, 6,300 equines and thousands of contributors from all over the world inspiring and enriching the human spirit at PATH Intl. Centers.</p>\r\n\r\n<ul style=\"text-align: left;\">\r\n	<li>Mailing Address: PO Box 33150 Denver, Colorado 80233</li>\r\n	<li>National Office Physical Address: 7475 Dakin Street Suite #600 Denver, CO 80221 (<a href=\"http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=7475+Dakin+Street+Suite+%23600+Denver,+CO+80221&amp;sll=37.0625,-95.677068&amp;sspn=48.909425,66.445312&amp;ie=UTF8&amp;hq=&amp;hnear=7475+Dakin+St+%23600,+Denver,+Adams,+Colorado+80221&amp;z=16&amp;iwloc=A\" target=\"_blank\">map</a>)</li>\r\n	<li><a href=\"http://www.pathintl.org\">www.pathintl.org</a></li>\r\n	<li>(800) 369-RIDE (7433)</li>\r\n	<li>Fax (303) 252-4610</li>\r\n</ul>\r\n<p style=\"text-align: left;\">PATH International’s mission is to change and enrich lives by promoting excellence in equine-assisted activities and therapies.</p>','PATH International','','publish','closed','open','','path-international','','','2013-04-03 02:11:44','2013-04-03 02:11:44','',0,'http://freereincenter.com/?page_id=65',8,'page','',0),(66,1,'2013-03-25 17:51:49','2013-03-25 17:51:49','','PATH International','','inherit','closed','open','','65-revision','','','2013-03-25 17:51:49','2013-03-25 17:51:49','',65,'http://freereincenter.com/?p=66',0,'revision','',0),(67,1,'2013-04-03 02:11:19','2013-04-03 02:11:19','<p style=\"text-align: left;\"><strong>Professional Association of Therapeutic Horsemanship International (PATH Intl.)</strong>, a federally-registered 501(c3) nonprofit, was formed in 1969 as the North American Riding for the Handicapped Association to promote <a title=\"Learn About EAAT\" href=\"http://www.pathintl.org/resources-education/resources/eaat\">equine-assisted activities and therapies</a> (EAAT) for individuals with special needs. With over 3,500 certified instructors and 800 member centers around the globe, more than 6,500 PATH Intl. members help more than 42,000 children and adults with physical, mental and emotional challenges find strength and independence through the power of the horse each year. In addition to <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#riding\">therapeutic riding</a>, our centers offer a number of therapeutic equine-related activities, including  <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#hippotherapy\">hippotherapy</a>, <a href=\"http://www.pathintl.org/component/content/article/60/249-eflp-definitions\">equine-facilitated mental health</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#driving\">driving</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#vaulting\">interactive vaulting</a>, competition, ground work and stable management. More recently, programs offer services in human growth and development to serve wide-ranging audiences for such educational purposes as leadership training, team building and other human capacity enhancement skills for the workplace and for daily use. <a href=\"http://www.pathintl.org/path-intl-centers/find-center\">Click here to find a center near you</a>.</p>\r\n<p style=\"text-align: left;\">Through our <a href=\"http://www.pathintl.org/resources-education/certifications\">certification </a>and <a href=\"http://www.pathintl.org/narha-centers/narha-center-accreditation\">accreditation </a>programs, plus a wide variety of <a href=\"http://www.pathintl.org/resources-education/resources\">educational resources</a> that includes a <a href=\"http://www.pathintl.org/component/content/category/8-national-general\">national annual conference</a> with hundreds of attendees, the association helps members start and maintain successful EAAT programs. There are more than 30,000 volunteers, 3,500 instructors, 6,300 equines and thousands of contributors from all over the world inspiring and enriching the human spirit at PATH Intl. Centers.</p>\r\n\r\n<ul style=\"text-align: left;\">\r\n	<li>Mailing Address: PO Box 33150 Denver, Colorado 80233</li>\r\n	<li>National Office Physical Address: 7475 Dakin Street Suite #600 Denver, CO 80221 (<a href=\"http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=7475+Dakin+Street+Suite+%23600+Denver,+CO+80221&amp;sll=37.0625,-95.677068&amp;sspn=48.909425,66.445312&amp;ie=UTF8&amp;hq=&amp;hnear=7475+Dakin+St+%23600,+Denver,+Adams,+Colorado+80221&amp;z=16&amp;iwloc=A\" target=\"_blank\">map</a>)</li>\r\n	<li><a href=\"http://www.pathintl.org\">www.pathintl.org</a></li>\r\n	<li>(800) 369-RIDE (7433)</li>\r\n	<li>Fax (303) 252-4610</li>\r\n</ul>\r\n<p style=\"text-align: left;\">PATH International’s mission is to change and enrich lives by promoting excellence in equine-assisted activities and therapies.</p>','PATH International','','inherit','closed','open','','65-autosave','','','2013-04-03 02:11:19','2013-04-03 02:11:19','',65,'http://freereincenter.com/?p=67',0,'revision','',0),(68,1,'2013-03-22 15:42:53','2013-03-22 15:42:53','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: left;\">Become a friend of Free Rein.  Make your tax deductible donation today! Together we can make miracles happen.</h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_donations\" /> <input type=\"hidden\" name=\"business\" value=\"freerein1325@gmail.com\" /> <input type=\"hidden\" name=\"lc\" value=\"US\" /> <input type=\"hidden\" name=\"item_name\" value=\"Free Rein Center\" /> <input type=\"hidden\" name=\"no_note\" value=\"0\" /> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" /> <input type=\"hidden\" name=\"bn\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input type=\"image\" alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" /> <img alt=\"\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\" /></form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2013-03-22 15:42:53','2013-03-22 15:42:53','',20,'http://freereincenter.com/?p=68',0,'revision','',0),(69,1,'2013-03-25 17:52:01','2013-03-25 17:52:01','<strong>Professional Association of Therapeutic Horsemanship International (PATH Intl.)</strong>, a federally-registered 501(c3) nonprofit, was formed in 1969 as the North American Riding for the Handicapped Association to promote <a title=\"Learn About EAAT\" href=\"http://www.pathintl.org/resources-education/resources/eaat\">equine-assisted activities and therapies</a> (EAAT) for individuals with special needs. With over 3,500 certified instructors and 800 member centers around the globe, more than 6,500 PATH Intl. members help more than 42,000 children and adults with physical, mental and emotional challenges find strength and independence through the power of the horse each year. In addition to <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#riding\">therapeutic riding</a>, our centers offer a number of therapeutic equine-related activities, including <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#hippotherapy\">hippotherapy</a>, <a href=\"http://www.pathintl.org/component/content/article/60/249-eflp-definitions\">equine-facilitated mental health</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#driving\">driving</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#vaulting\">interactive vaulting</a>, competition, ground work and stable management. More recently, programs offer services in human growth and development to serve wide-ranging audiences for such educational purposes as leadership training, team building and other human capacity enhancement skills for the workplace and for daily use. <a href=\"http://www.pathintl.org/path-intl-centers/find-center\">Click here to find a center near you</a>.\r\n\r\nThrough our <a href=\"http://www.pathintl.org/resources-education/certifications\">certification </a>and <a href=\"http://www.pathintl.org/narha-centers/narha-center-accreditation\">accreditation </a>programs, plus a wide variety of <a href=\"http://www.pathintl.org/resources-education/resources\">educational resources</a> that includes a <a href=\"http://www.pathintl.org/component/content/category/8-national-general\">national annual conference</a> with hundreds of attendees, the association helps members start and maintain successful EAAT programs. There are more than 30,000 volunteers, 3,500 instructors, 6,300 equines and thousands of contributors from all over the world inspiring and enriching the human spirit at PATH Intl. Centers.\r\n<ul>\r\n	<li>Mailing Address: PO Box 33150 Denver, Colorado 80233</li>\r\n	<li>National Office Physical Address: 7475 Dakin Street Suite #600 Denver, CO 80221 (<a href=\"http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=7475+Dakin+Street+Suite+%23600+Denver,+CO+80221&amp;sll=37.0625,-95.677068&amp;sspn=48.909425,66.445312&amp;ie=UTF8&amp;hq=&amp;hnear=7475+Dakin+St+%23600,+Denver,+Adams,+Colorado+80221&amp;z=16&amp;iwloc=A\" target=\"_blank\">map</a>)</li>\r\n	<li><a href=\"http://www.pathintl.org\">www.pathintl.org</a></li>\r\n	<li>(800) 369-RIDE (7433)</li>\r\n	<li>Fax (303) 252-4610</li>\r\n</ul>\r\nPATH International’s mission is to change and enrich lives by promoting excellence in equine-assisted activities and therapies.','PATH International','','inherit','closed','open','','65-revision-2','','','2013-03-25 17:52:01','2013-03-25 17:52:01','',65,'http://freereincenter.com/?p=69',0,'revision','',0),(70,1,'2013-03-22 16:21:35','2013-03-22 16:21:35','Free Rein is proud to have a vibrant, growing, human-horse interaction\r\nprogram.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the\r\nNorth American Riding for the Handicapped Association (NARHA).\r\nThe therapeutic benefits of structured interaction with a horse are recognized\r\nby many in the medical professions.  For individuals with special needs in the\r\ncognitive, emotional, physical, and relationship areas, the unique relationship\r\nformed with a horse can lead to dramatic growth in self-esteem, self-\r\nawareness, confidence, and communication skills.  For those with physical\r\ndisabilities, there are often the added outcomes of improved coordination,\r\nbalance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are\r\ncapable of more than we think, and that together we can help build a more\r\ncaring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','inherit','closed','open','','7-revision-v1','','','2013-03-22 16:21:35','2013-03-22 16:21:35','',7,'http://freereincenter.com/?p=70',0,'revision','',0),(71,1,'2013-03-25 18:03:02','2013-03-25 18:03:02','Free Rein is proud to have a vibrant, growing, human-horse interaction\r\nprogram.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the\r\nNorth American Riding for the Handicapped Association (NARHA).\r\nThe therapeutic benefits of structured interaction with a horse are recognized\r\nby many in the medical professions.  For individuals with special needs in the\r\ncognitive, emotional, physical, and relationship areas, the unique relationship\r\nformed with a horse can lead to dramatic growth in self-esteem, self-\r\nawareness, confidence, and communication skills.  For those with physical\r\ndisabilities, there are often the added outcomes of improved coordination,\r\nbalance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are\r\ncapable of more than we think, and that together we can help build a more\r\ncaring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','inherit','closed','open','','7-revision-v1','','','2013-03-25 18:03:02','2013-03-25 18:03:02','',7,'http://freereincenter.com/?p=71',0,'revision','',0),(72,1,'2013-03-22 16:21:31','2013-03-22 16:21:31','<strong>Macho’s birthday celebration on Sat., May 12</strong>\r\n\r\n<a title=\"Macho\'s Birthday\" href=\"http://freereincenter.com/wp-content/Macho\'s-Birthday-Event-Flyer.pdf\" target=\"_blank\">Click here to see details</a>\r\n\r\n&nbsp;\r\n\r\n<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 26th &amp; 27th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  Bernard Pellitier (a local farrier) will be on hand, demonstrating his skills in creating some truly beautiful hand-forged art pieces.  Bernard’s pieces are highly sought-after pieces of original art and he’ll be selling them on Saturday the 26th for the benefit of Free Rein Center.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-03-22 16:21:31','2013-03-22 16:21:31','',9,'http://freereincenter.com/?p=72',0,'revision','',0),(73,1,'2013-03-22 16:21:18','2013-03-22 16:21:18','<h2><a title=\"Permanent Link to Ways You Can Help\" href=\"http://freereincenter.com/?page_id=203\" rel=\"bookmark\">Ways You Can Help</a></h2>\r\n<div>\r\n\r\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=254\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com/?page_id=231\">.learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-03-22 16:21:18','2013-03-22 16:21:18','',14,'http://freereincenter.com/?p=73',0,'revision','',0),(76,1,'2013-03-22 16:20:59','2013-03-22 16:20:59','<h2><a title=\"Permanent Link to Sponsorship\" href=\"http://freereincenter.com/?page_id=231\" rel=\"bookmark\">Sponsorship</a></h2>\r\n<div>\r\n\r\n<strong>Sponsorship Opportunities for Supporting Free Rein</strong>\r\n\r\n<strong>Special Friends of Free Rein</strong>:  This is a three year commitment to donate\r\na minimum of $1000 annually during that period.\r\n\r\n<strong>Roundup Circle:</strong> Minimum donation of $5000\r\n\r\n<strong>Riders’ Circle:</strong> Donation of $2500 to $4999\r\n\r\n<strong>Groomers’ Circle:</strong> Donation of $1500 to $2499\r\n\r\n<strong>Lead Rope Circle:</strong> Donation of $1000 to $1499\r\n\r\n<strong>Arena Circle:</strong> Donation of $500 to $999\r\n\r\n<strong>Tack Room Circle:</strong> Donation of $100 to $499\r\n\r\n<strong>Haystack Circle:</strong> Donation of less than $100\r\n\r\n<strong>2012 Fall Gala Sponsor:</strong> The 2012 Fall Gala will be held at Connestee Falls Country\r\nClub on Saturday, October 20, 2012.   Minimum donation for a sponsor is $1000.\r\n<h5>Help Free Rein Keep Trottin’ Along……We could not do what we do without your support!</h5>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Sponsorship','','inherit','closed','open','','18-revision-v1','','','2013-03-22 16:20:59','2013-03-22 16:20:59','',18,'http://freereincenter.com/?p=76',0,'revision','',0),(74,1,'2013-03-25 17:53:12','2013-03-25 17:53:12','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: left;\">Become a friend of Free Rein.  Make your tax deductible donation today! Together we can make miracles happen.</h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_donations\" /> <input type=\"hidden\" name=\"business\" value=\"freerein1325@gmail.com\" /> <input type=\"hidden\" name=\"lc\" value=\"US\" /> <input type=\"hidden\" name=\"item_name\" value=\"Free Rein Center\" /> <input type=\"hidden\" name=\"no_note\" value=\"0\" /> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" /> <input type=\"hidden\" name=\"bn\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input type=\"image\" alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" /> <img alt=\"\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\" /></form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2013-03-25 17:53:12','2013-03-25 17:53:12','',20,'http://freereincenter.com/?p=74',0,'revision','',0),(75,1,'2013-03-25 18:05:13','2013-03-25 18:05:13','<h2><a title=\"Permanent Link to Ways You Can Help\" href=\"http://freereincenter.com.previewdns.com/?page_id=203\" rel=\"bookmark\">Ways You Can Help</a></h2>\r\n<div>\r\n\r\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com.previewdns.com/?page_id=254\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com.previewdns.com/?page_id=231\">.learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-03-25 18:05:13','2013-03-25 18:05:13','',14,'http://freereincenter.com/?p=75',0,'revision','',0),(77,1,'2013-03-22 16:20:48','2013-03-22 16:20:48','<h2><a title=\"Permanent Link to Volunteer\" href=\"http://freereincenter.com/?page_id=254\" rel=\"bookmark\">Volunteer</a></h2>\r\n<div>\r\n\r\nThere are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<ul>\r\n	<li>Donating your Time:  Help with our students and horses during class time or help with one of our special events. “Volunteers are the heart and soul of our program.  Without the help of our wonderful helpers, we could not offer our programs to our students,” says our former volunteer coordinator, Kathy Morrow.</li>\r\n	<li>Volunteers help us primarily by assisting with our students and horses during our classes.  You do not need to know a lot about children or adults with special needs or about horses.  We provide all the training you need to make our students’ dreams come true.  All Volunteers who wish to work with our lessons must attend a Volunteer Training Session before they begin.  <strong>Volunteer Training takes place prior to the start of each </strong><strong>session</strong>. If you would like to volunteer with Free Rein, please call our office or send us an email at info@freereincenter.com.</li>\r\n	<li>If working in classes is not what you had in mind, there are many other areas in which we need help including fundraising, office work, special events, and horse care. Volunteer Today! You will be glad you did!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Volunteer','','inherit','closed','open','','16-revision-v1','','','2013-03-22 16:20:48','2013-03-22 16:20:48','',16,'http://freereincenter.com/?p=77',0,'revision','',0),(79,1,'2013-03-22 16:21:06','2013-03-22 16:21:06','<h2><a title=\"Permanent Link to Annual Fall Gala\" href=\"http://freereincenter.com/?page_id=37\" rel=\"bookmark\">Annual Fall Gala</a></h2>\r\n<div>\r\n\r\nFree Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyne who attended seemed to have a wonderful time.  Miss Shelby Cannon, Miss Teen NC International, was there to help out as well.\r\n\r\nWe’ll be getting started soon with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-03-22 16:21:06','2013-03-22 16:21:06','',10,'http://freereincenter.com/?p=79',0,'revision','',0),(116,1,'2013-07-29 19:23:57','2013-07-29 19:23:57','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n\r\n&nbsp;\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala.  If you\'d like to help out in the organization of this fun event, please contact the office and we\'ll get you in touch with the organizing committee.</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-07-29 19:23:57','2013-07-29 19:23:57','',10,'http://freereincenter.com/?p=116',0,'revision','',0),(82,1,'2013-04-03 01:56:44','2013-04-03 01:56:44','','FR Calendar Cover','','inherit','closed','open','','fr-calendar-cover','','','2013-04-03 01:56:44','2013-04-03 01:56:44','',9,'http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg',0,'attachment','image/jpeg',0),(102,1,'2013-04-03 02:07:01','2013-04-03 02:07:01','<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 25th &amp; 26th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  A new addition will be absolutely touching \"therapeutic horses\" that one of our board members is making.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina 2012 at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a> has been a big success.</strong><strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nIf you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-04-03 02:07:01','2013-04-03 02:07:01','',9,'http://freereincenter.com/?p=102',0,'revision','',0),(83,1,'2013-03-25 18:04:47','2013-03-25 18:04:47','<strong>Macho’s birthday celebration on Sat., May 12</strong>\r\n\r\n<a title=\"Macho\'s Birthday\" href=\"http://freereincenter.com.previewdns.com/wp-content/Macho\'s-Birthday-Event-Flyer.pdf\" target=\"_blank\">Click here to see details</a>\r\n\r\n&nbsp;\r\n\r\n<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 26th &amp; 27th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  Bernard Pellitier (a local farrier) will be on hand, demonstrating his skills in creating some truly beautiful hand-forged art pieces.  Bernard’s pieces are highly sought-after pieces of original art and he’ll be selling them on Saturday the 26th for the benefit of Free Rein Center.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-03-25 18:04:47','2013-03-25 18:04:47','',9,'http://freereincenter.com/?p=83',0,'revision','',0),(142,1,'2013-11-08 14:32:04','2013-11-08 14:32:04','<strong> Free Rein\'s 2014 Fund Raising Calendar  is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/cover_front.jpg\"><img class=\"size-medium wp-image-130 alignright\" alt=\"cover_front\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/cover_front-300x231.jpg\" width=\"300\" height=\"231\" /></a></strong>\r\n\r\nOur second fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nYou can highlight your loved ones\' special days with a special note on that day in the calendar.  <strong>If you\'d like to buy a 2014 calendar, or day in the 2015 calendar, please email us and we\'ll have someone get in touch to arrange the details. </strong> If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-11-08 14:32:04','2013-11-08 14:32:04','',9,'http://freereincenter.com/?p=142',0,'revision','',0),(84,1,'2013-04-03 02:00:11','2013-04-03 02:00:11','<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 25th &amp; 26th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  A new addition will be absolutely touching \"therapeutic horses\" that one of our board members is making.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina 2012 at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a>a big success.</strong><strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nIf you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-04-03 02:00:11','2013-04-03 02:00:11','',9,'http://freereincenter.com/?p=84',0,'revision','',0),(85,1,'2013-04-03 02:05:51','2013-04-03 02:05:51','<strong>White Squirrel Festival on May 26th &amp; 27th.</strong>\r\n\r\nFree Rein will have a booth at Brevard’s <a href=\"http://whitesquirrelfestival.com/\" target=\"_blank\">White Squirrel Festival</a> on May 25th &amp; 26th.  Come out and enjoy the festival’s music, food, and other activities after you stop by and meet the dedicated, hard-working Free Rein volunteers at our tent.  A new addition will be absolutely touching \"therapeutic horses\" that one of our board members is making.  We also hope to have <a href=\"http://www.missteeninternational.us/vcontestantdetails.php?id=507\" target=\"_blank\">Miss Shelby Cannon</a>, Miss Teen International North Carolina 2012 at our booth.  Miss Cannon is a big supporter of Therapeutic Riding and will be working on behalf of Free Rein Center during this year.\r\n\r\n&nbsp;\r\n\r\n<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a> has been a big success.</strong><strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nIf you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-04-03 02:05:51','2013-04-03 02:05:51','',9,'http://freereincenter.com/?p=85',0,'revision','',0),(86,1,'2013-03-25 17:53:48','2013-03-25 17:53:48','<strong>Professional Association of Therapeutic Horsemanship International (PATH Intl.)</strong>, a federally-registered 501(c3) nonprofit, was formed in 1969 as the North American Riding for the Handicapped Association to promote <a title=\"Learn About EAAT\" href=\"http://www.pathintl.org/resources-education/resources/eaat\">equine-assisted activities and therapies</a> (EAAT) for individuals with special needs. With over 3,500 certified instructors and 800 member centers around the globe, more than 6,500 PATH Intl. members help more than 42,000 children and adults with physical, mental and emotional challenges find strength and independence through the power of the horse each year. In addition to <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#riding\">therapeutic riding</a>, our centers offer a number of therapeutic equine-related activities, including <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#hippotherapy\">hippotherapy</a>, <a href=\"http://www.pathintl.org/component/content/article/60/249-eflp-definitions\">equine-facilitated mental health</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#driving\">driving</a>, <a href=\"http://www.pathintl.org/resources-education/resources/eaat/193-eaat-definitions#vaulting\">interactive vaulting</a>, competition, ground work and stable management. More recently, programs offer services in human growth and development to serve wide-ranging audiences for such educational purposes as leadership training, team building and other human capacity enhancement skills for the workplace and for daily use. <a href=\"http://www.pathintl.org/path-intl-centers/find-center\">Click here to find a center near you</a>.\r\n\r\nThrough our <a href=\"http://www.pathintl.org/resources-education/certifications\">certification </a>and <a href=\"http://www.pathintl.org/narha-centers/narha-center-accreditation\">accreditation </a>programs, plus a wide variety of <a href=\"http://www.pathintl.org/resources-education/resources\">educational resources</a> that includes a <a href=\"http://www.pathintl.org/component/content/category/8-national-general\">national annual conference</a> with hundreds of attendees, the association helps members start and maintain successful EAAT programs. There are more than 30,000 volunteers, 3,500 instructors, 6,300 equines and thousands of contributors from all over the world inspiring and enriching the human spirit at PATH Intl. Centers.\r\n<ul>\r\n	<li>Mailing Address: PO Box 33150 Denver, Colorado 80233</li>\r\n	<li>National Office Physical Address: 7475 Dakin Street Suite #600 Denver, CO 80221 (<a href=\"http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=7475+Dakin+Street+Suite+%23600+Denver,+CO+80221&amp;sll=37.0625,-95.677068&amp;sspn=48.909425,66.445312&amp;ie=UTF8&amp;hq=&amp;hnear=7475+Dakin+St+%23600,+Denver,+Adams,+Colorado+80221&amp;z=16&amp;iwloc=A\" target=\"_blank\">map</a>)</li>\r\n	<li><a href=\"http://www.pathintl.org\">www.pathintl.org</a></li>\r\n	<li>(800) 369-RIDE (7433)</li>\r\n	<li>Fax (303) 252-4610</li>\r\n</ul>\r\nPATH International’s mission is to change and enrich lives by promoting excellence in equine-assisted activities and therapies.','PATH International','','inherit','closed','open','','65-revision-3','','','2013-03-25 17:53:48','2013-03-25 17:53:48','',65,'http://freereincenter.com/?p=86',0,'revision','',0),(87,1,'2013-03-25 18:05:35','2013-03-25 18:05:35','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" alt=\"\" src=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: left;\">Become a friend of Free Rein.  Make your tax deductible donation today! Together we can make miracles happen.</h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_donations\" /> <input type=\"hidden\" name=\"business\" value=\"freerein1325@gmail.com\" /> <input type=\"hidden\" name=\"lc\" value=\"US\" /> <input type=\"hidden\" name=\"item_name\" value=\"Free Rein Center\" /> <input type=\"hidden\" name=\"no_note\" value=\"0\" /> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" /> <input type=\"hidden\" name=\"bn\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input type=\"image\" alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" /> <img alt=\"\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\" /></form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2013-03-25 18:05:35','2013-03-25 18:05:35','',20,'http://freereincenter.com/?p=87',0,'revision','',0),(143,1,'2013-04-03 02:12:19','2013-04-03 02:12:19','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" alt=\"\" src=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: center;\">Become a friend of Free Rein.  Make your tax deductible donation today!</h3>\r\n<h3 style=\"text-align: center;\">Together we can make miracles happen.</h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_donations\" /> <input type=\"hidden\" name=\"business\" value=\"freerein1325@gmail.com\" /> <input type=\"hidden\" name=\"lc\" value=\"US\" /> <input type=\"hidden\" name=\"item_name\" value=\"Free Rein Center\" /> <input type=\"hidden\" name=\"no_note\" value=\"0\" /> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" /> <input type=\"hidden\" name=\"bn\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input type=\"image\" alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" /> <img alt=\"\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\" /></form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2013-04-03 02:12:19','2013-04-03 02:12:19','',20,'http://freereincenter.com/?p=143',0,'revision','',0),(368,1,'2016-03-16 19:27:28','2016-03-16 19:27:28','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:27:28','2016-03-16 19:27:28','',190,'http://freereincenter.com/?p=368',0,'revision','',0),(367,1,'2016-03-16 19:26:36','2016-03-16 19:26:36','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Nickers & News','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:26:36','2016-03-16 19:26:36','',190,'http://freereincenter.com/?p=367',0,'revision','',0),(90,1,'2013-03-25 18:03:43','2013-03-25 18:03:43','Free Rein is proud to have a vibrant, growing, human-horse interaction\r\nprogram.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the\r\nNorth American Riding for the Handicapped Association (NARHA).\r\nThe therapeutic benefits of structured interaction with a horse are recognized\r\nby many in the medical professions.  For individuals with special needs in the\r\ncognitive, emotional, physical, and relationship areas, the unique relationship\r\nformed with a horse can lead to dramatic growth in self-esteem, self-\r\nawareness, confidence, and communication skills.  For those with physical\r\ndisabilities, there are often the added outcomes of improved coordination,\r\nbalance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are\r\ncapable of more than we think, and that together we can help build a more\r\ncaring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','inherit','closed','open','','7-revision-v1','','','2013-03-25 18:03:43','2013-03-25 18:03:43','',7,'http://freereincenter.com/?p=90',0,'revision','',0),(92,1,'2013-04-03 02:21:11','2013-04-03 02:21:11','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>..<a href=\"http://freereincenter.com.previewdns.com/?page_id=231\">.learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-04-03 02:21:11','2013-04-03 02:21:11','',14,'http://freereincenter.com/?p=92',0,'revision','',0),(94,1,'2013-04-03 02:21:51','2013-04-03 02:21:51','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals and groups.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to support staff, feed and care for horses, and sponsor students who cannot afford to pay for lessons.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>...<a href=\"http://freereincenter.com/?page_id=18\">learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2013-04-03 02:21:51','2013-04-03 02:21:51','',14,'http://freereincenter.com/?p=94',0,'revision','',0),(170,1,'2016-04-12 03:41:54','2016-04-12 03:41:54','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg\"><img class=\"alignleft wp-image-207\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014-300x298.jpg\" alt=\"\" width=\"144\" height=\"143\" /></a></h2>\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) at Free Rein this year - more than any other year in Free Rein\'s 15 year history.<img class=\"wp-image-307 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"137\" height=\"137\" />\n\nOne of our student-rider\'s Moms really conveyed the impacts that Free Rein makes in real peoples\' lives when she told the audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that, \"Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\"\n\n<img class=\"alignright wp-image-310 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/DSC02805-201x300.jpg\" alt=\"DSC02805\" width=\"134\" height=\"200\" />The Moon Shine Babies entertained Lois &amp; Clark (and the rest of us) us with their beautiful music and Chef Craig made sure that we had great food to enjoy.  Duke and Bird (<a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a>) brought their high-energy <img class=\"wp-image-306 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"130\" height=\"130\" /> \"auctiontainment\" that made giving fun for everyone.\n\nBoard members Porsha Smith and Denise Stretcher created and oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\n\nGuests had a wide selection of great live and silent auction items to choose from, including:\n<ul>\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\n	<li>House concerts by the Moon Shine Babies.</li>\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\n</ul>\n==============================\n\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\n\nSponsors of the 2015 gala included the following.\n<ul>\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\n</ul>\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\n<ul>\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Brown Bean Coffee ~ Bullwinkles, Rocky\'s, Moose Tracks ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Egolf Motors ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Hawg Wild ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Jet\'s Pizza ~ Judith and Peter Johnson ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ Tony\'s Deli ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\n</ul>\nTo buy tickets for the 2016 Gala online with PayPal, please use the following link:\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\n<table>\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Number of Gala Tickets Desired\">Number of Gala Tickets Desired</td></tr><tr><td><select name=\"os0\">\n	<option value=\"One Ticket\">One Ticket $75.00 USD</option>\n	<option value=\"Two Tickets\">Two Tickets $150.00 USD</option>\n	<option value=\"Three Tiickets\">Three Tiickets $225.00 USD</option>\n	<option value=\"Four Tickets\">Four Tickets $300.00 USD</option>\n</select> </td></tr>\n</table>\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\n</form>\n\n<strong>Free Rein Center</strong>\n<div>\n\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\n<strong>828-883-3375</strong>\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\n\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-autosave-v1','','','2016-04-12 03:41:54','2016-04-12 03:41:54','',10,'http://freereincenter.com/?p=170',0,'revision','',0),(96,1,'2013-03-27 15:42:03','2013-03-27 15:42:03','<a title=\"Permanent Link to Annual Fall Gala\" href=\"http://freereincenter.com/?page_id=37\" rel=\"bookmark\"><span style=\"color: #333333;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyne who attended seemed to have a wonderful time.  Miss Shelby Cannon, Miss Teen NC International, was there to help out as well.</span></a>\r\n<div>\r\n\r\nWe’ll be getting started soon with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-03-27 15:42:03','2013-03-27 15:42:03','',10,'http://freereincenter.com/?p=96',0,'revision','',0),(97,1,'2013-04-03 02:28:31','2013-04-03 02:28:31','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyne who attended seemed to have a wonderful time.  Miss Shelby Cannon, Miss Teen NC International, was there to help out as well.</span>\r\n\r\n&nbsp;\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala... possibly even some free cruise tickets.</span>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-04-03 02:28:31','2013-04-03 02:28:31','',10,'http://freereincenter.com/?p=97',0,'revision','',0),(98,1,'2016-07-25 22:14:06','2016-07-25 22:14:06','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our spring 2016 session was another success, serving 65 individuals.  Our 8-week fall 2016 </span><span style=\"line-height: 1.5em;\">session will start on September 6th and end on November 5th (including the week of make-ups we invariably need due to weather).  We served more than 110 individuals in 2015, the largest number of people Free Rein has served in a year since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-autosave-v1','','','2016-07-25 22:14:06','2016-07-25 22:14:06','',12,'http://freereincenter.com/?p=98',0,'revision','',0),(100,1,'2013-04-04 14:58:04','2013-04-04 14:58:04','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.</strong>\r\n<div>\r\n\r\nOur 8-week spring session is underway, and we are pleased to be serving the largest number of students we have had in many years.\r\n\r\nWe are currently accepting applications for the fall 2013 session which will begin in early September. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or <a href=\"mailto:freerein1325@freereincenter.com\">freerein1325@freereincenter.com</a> for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-04-04 14:58:04','2013-04-04 14:58:04','',12,'http://freereincenter.com/?p=100',0,'revision','',0),(99,1,'2013-03-27 15:41:29','2013-03-27 15:41:29','<a title=\"Permanent Link to Lessons\" href=\"http://freereincenter.com/?page_id=35\" rel=\"bookmark\"><strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.</strong></a>\r\n<div>\r\n\r\nOur 8-week fall session is well underway, and we are pleased to be serving the largest number of students we have had in many years.\r\n\r\nWe are currently accepting applications for the Spring 2013 session which will begin in mid-March. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or info@freereincenter.com for more information or to request a registration packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-03-27 15:41:29','2013-03-27 15:41:29','',12,'http://freereincenter.com/?p=99',0,'revision','',0),(117,1,'2013-07-29 19:28:37','2013-07-29 19:28:37','<strong> <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\">Free Rein\'s 2013 Fund Raising Calendar </a> has been a big success.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover.jpg\"><img class=\"wp-image-82 alignright\" alt=\"FR Calendar Cover\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/FR-Calendar-Cover-300x231.jpg\" width=\"210\" height=\"162\" /></a></strong>\r\n\r\nOur inaugural fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nYou can highlight your loved ones\' special days with a special note on that day in the calendar.  If you\'d like to buy a day in the 2014 calendar, please email us and we\'ll have someone get in touch to arrange the details.  We\'ll be going to press with the 2014 calendar in September, so get your days lined up soon.  If you buy two days ($25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2013-07-29 19:28:37','2013-07-29 19:28:37','',9,'http://freereincenter.com/?p=117',0,'revision','',0),(118,1,'2013-09-16 15:27:19','2013-09-16 15:27:19','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala.  If you\'d like to help out in the organization of this fun event, please contact the office and we\'ll get you in touch with the organizing committee.</span>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"> </span><img class=\"size-medium wp-image-115 aligncenter\" alt=\"Free Rein Gala Poster - 2014\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014-232x300.jpg\" width=\"232\" height=\"300\" /></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-09-16 15:27:19','2013-09-16 15:27:19','',10,'http://freereincenter.com/?p=118',0,'revision','',0),(119,1,'2013-09-16 15:29:22','2013-09-16 15:29:22','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n\r\n<img class=\"size-medium wp-image-115 aligncenter\" style=\"text-align: center;\" alt=\"Free Rein Gala Poster - 2014\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014-232x300.jpg\" width=\"232\" height=\"300\" />\r\n\r\n<strong>2013 Fall Gala to be Bigger and Better</strong>\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala.  If you\'d like to help out in the organization of this fun event, please contact the office and we\'ll get you in touch with the organizing committee.</span>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-09-16 15:29:22','2013-09-16 15:29:22','',10,'http://freereincenter.com/?p=119',0,'revision','',0),(140,1,'2013-11-08 14:24:30','2013-11-08 14:24:30','<span style=\"color: #000000;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014.jpg\"><img class=\" wp-image-115 alignleft\" alt=\"Free Rein Gala Poster - 2014\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014-232x300.jpg\" width=\"167\" height=\"216\" /></a></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyone who attended seemed to have a wonderful time.  Many thanks to the folks who came out to show their support for Free Rein and, of cou</span><span style=\"color: #000000;\">rse, for our sponsors of the event.  </span>\r\n<div>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-11-08 14:24:30','2013-11-08 14:24:30','',10,'http://freereincenter.com/?p=140',0,'revision','',0),(120,1,'2013-09-16 15:30:44','2013-09-16 15:30:44','<span style=\"color: #000000;\">Free Rein’s 2012 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  Miss Shelby Cannon, Miss Teen NC International 2012, was there to help out as well. The food and music were very good and everyone who attended seemed to have a wonderful time.  </span>\r\n<h2 style=\"text-align: center;\"><strong>2013 Fall Gala to be Bigger and Better</strong></h2>\r\n<img class=\"size-medium wp-image-115 aligncenter\" style=\"text-align: center;\" alt=\"Free Rein Gala Poster - 2014\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014-232x300.jpg\" width=\"232\" height=\"300\" />\r\n<div>\r\n\r\n<span style=\"color: #000000;\">Were getting started now with plans to make our 2013 Gala even bigger and better, so check back here mid-year for more info.  We will be holding it at Connestee Falls Clubhouse again on Saturday, November 2, 2013.  We are working on some really great door prizes and some even better auction items for this year\'s gala.  If you\'d like to buy tickets, or help out in the organization of this fun event, please contact the office and we\'ll get you in touch with the organizing committee.</span>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2013-09-16 15:30:44','2013-09-16 15:30:44','',10,'http://freereincenter.com/?p=120',0,'revision','',0),(121,1,'2013-07-29 19:25:01','2013-07-29 19:25:01','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and afterschool lessons Monday-Thursday as well as a limited schedule on Saturday mornings.</strong>\r\n\r\n&nbsp;\r\n<div>\r\n\r\nOur 8-week spring session was a big success, and we are pleased to have served the largest number of students we have had in many years.\r\n\r\n&nbsp;\r\n\r\nWe are currently accepting applications for the fall 2013 session which will begin in early September. Please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-07-29 19:25:01','2013-07-29 19:25:01','',12,'http://freereincenter.com/?p=121',0,'revision','',0),(126,1,'2013-10-30 17:35:22','2013-10-30 17:35:22','','Free Rein Thanks its Donors and Supporters','','inherit','closed','open','','125-revision-v1','','','2013-10-30 17:35:22','2013-10-30 17:35:22','',125,'http://freereincenter.com/?p=126',0,'revision','',0),(127,1,'2013-10-30 17:37:15','2013-10-30 17:37:15','Free Rein depends on the generous support of individuals, foundations, and businesses from far and wide.','Thanks to our Donors and Supporters','','inherit','closed','open','','125-revision-v1','','','2013-10-30 17:37:15','2013-10-30 17:37:15','',125,'http://freereincenter.com/?p=127',0,'revision','',0),(129,1,'2013-10-30 17:37:21','2013-10-30 17:37:21','Free Rein depends on the generous support of individuals, foundations, and businesses from far and wide.','Thanks to our Donors and Supporters','','inherit','closed','open','','125-revision-v1','','','2013-10-30 17:37:21','2013-10-30 17:37:21','',125,'http://freereincenter.com/?p=129',0,'revision','',0),(130,1,'2013-10-30 18:05:32','2013-10-30 18:05:32','','cover_front','','inherit','closed','open','','cover_front','','','2013-10-30 18:05:32','2013-10-30 18:05:32','',125,'http://freereincenter.com/wp-content/uploads/2013/10/cover_front.jpg',0,'attachment','image/jpeg',0),(214,1,'2014-09-01 17:46:08','2014-09-01 17:46:08','<h3 style=\"text-align: center;\">Save the Date</h3>\r\n<h2 style=\"text-align: center;\">Free Rein\'s 2014 Gala will be held on Friday, October 17th</h2>\r\n<h3 style=\"text-align: center;\">at the Connestee Falls Clubhouse</h3>\r\n<img class=\"alignnone size-medium wp-image-206\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-2014.tif\" alt=\"Mane Event 2014\" width=\"1\" height=\"1\" /><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-2014-Flyer.jpg\"><img class=\" wp-image-212 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-2014-Flyer-300x225.jpg\" alt=\"Mane Event - 2014 Flyer\" width=\"323\" height=\"242\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala was a great success by all measures, with more than 100 people in attendance.  This year\'s event promises to be even more fun.  If you are interested in attending, or being a sponsor for this year\'s Mane Event, please email <a href=\"mailto:freereincenter@gmail.com\" target=\"_blank\">freereincenter@gmail.com</a>.</span><span style=\"color: #000000;\">  Please see the <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Sponsor-opportunities.pdf\">sponsor opportunities</a> for sponsorship levels and recognition/benefits provided to our sponsors.</span>\r\n<div>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Fall Gala Event','','inherit','closed','open','','10-revision-v1','','','2014-09-01 17:46:08','2014-09-01 17:46:08','',10,'http://freereincenter.com/?p=214',0,'revision','',0),(208,1,'2014-08-22 19:38:02','2014-08-22 19:38:02','<h3 style=\"text-align: center;\">Save the Date</h3>\r\n<h2 style=\"text-align: center;\">Free Rein\'s 2014 Gala will be held on Friday, October 17th</h2>\r\n<h3 style=\"text-align: center;\">at the Connestee Falls Clubhouse</h3>\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-2014.tif\"><img class=\"alignnone size-medium wp-image-206\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-2014.tif\" alt=\"Mane Event 2014\" width=\"1\" height=\"1\" /></a><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg\"><img class=\"size-medium wp-image-207 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014-300x298.jpg\" alt=\"Mane Event Logo - 2014\" width=\"300\" height=\"298\" /></a>\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyone who attended seemed to have a wonderful time.  Many thanks to the folks who came out to show their support for Free Rein and, of cou</span><span style=\"color: #000000;\">rse, to our sponsors of the event.  Please support and thank those who support Free Rein.  Our 2013 Gala sponsors included:</span>\r\n\r\n- Comporium\r\n\r\n- Transylvania Times\r\n\r\n- Lake Toxaway Resort\r\n\r\n- Burlingame Country Club\r\n\r\n- Mountain Quilts\r\n\r\n- Kiwi Gelato\r\n\r\n- Macon Bank\r\n\r\n- Ecusta Credit Union\r\n<div>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Fall Gala Event','','inherit','closed','open','','10-revision-v1','','','2014-08-22 19:38:02','2014-08-22 19:38:02','',10,'http://freereincenter.com/?p=208',0,'revision','',0),(225,1,'2014-09-28 00:37:29','2014-09-28 00:37:29','','Mane Event Flyer - 2014','','inherit','closed','open','','mane-event-flyer-2014-3','','','2014-09-28 00:37:29','2014-09-28 00:37:29','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg',0,'attachment','image/jpeg',0),(213,1,'2014-09-01 17:41:31','2014-09-01 17:41:31','','Sponsor opportunities','','inherit','closed','open','','sponsor-opportunities','','','2014-09-01 17:41:31','2014-09-01 17:41:31','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Sponsor-opportunities.pdf',0,'attachment','application/pdf',0),(132,1,'2013-10-30 18:37:36','2013-10-30 18:37:36','Free Rein depends almost entirely on the generous support of individuals, foundations, and businesses from both near and far.  Student fees cover only a small percentage of the costs of delivering personalized equine-assisted therapies.  We\'d like to offer our most sincere thanks to:\r\n\r\nOur annual calendar sponsors - please support them with your patronage for their support of Free Rein.\r\n\r\n<img class=\"size-medium wp-image-130\" alt=\"cover_front\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/cover_front-300x231.jpg\" width=\"300\" height=\"231\" />\r\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">January</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">February</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Food Matters Market\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">March</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">April</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Brevard-Pisgah Forest Hampton Inn\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">May</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"D.D. Bullwinkel\'s, Rocky\'s, and Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">June</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">July</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Headwaters Outfitters\" href=\"http://www.headwatersoutfitters.com/\" target=\"_blank\">Headwaters Outfitters</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">August</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">September</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">October</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">November</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Mission Children\'s Hospital\" href=\"http://www.missionchildrens.org/\" target=\"_blank\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">December</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2013-10-30 18:37:36','2013-10-30 18:37:36','',125,'http://freereincenter.com/?p=132',0,'revision','',0),(131,1,'2013-10-30 17:38:49','2013-10-30 17:38:49','Free Rein depends on the generous support of individuals, foundations, and businesses from far and wide.','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2013-10-30 17:38:49','2013-10-30 17:38:49','',125,'http://freereincenter.com/?p=131',0,'revision','',0),(133,1,'2013-10-30 18:47:34','2013-10-30 18:47:34','Free Rein depends almost entirely on the generous support of individuals, foundations, and businesses from both near and far.  Student fees cover only a small percentage of the costs of delivering personalized equine-assisted therapies.  We\'d like to offer our most sincere thanks to:\r\n\r\nOur annual calendar sponsors - please support them with your patronage for their support of Free Rein.\r\n\r\n<img class=\"size-medium wp-image-130\" alt=\"cover_front\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/cover_front-300x231.jpg\" width=\"300\" height=\"231\" />\r\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">January</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">February</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Food Matters Market\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">March</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">April</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Brevard-Pisgah Forest Hampton Inn\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">May</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"D.D. Bullwinkel\'s, Rocky\'s, and Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">June</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">July</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Headwaters Outfitters\" href=\"http://www.headwatersoutfitters.com/\" target=\"_blank\">Headwaters Outfitters</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">August</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">September</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">October</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">November</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Mission Children\'s Hospital\" href=\"http://www.missionchildrens.org/\" target=\"_blank\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">December</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2013-10-30 18:47:34','2013-10-30 18:47:34','',125,'http://freereincenter.com/?p=133',0,'revision','',0),(134,1,'2013-10-30 18:48:27','2013-10-30 18:48:27','Free Rein depends almost entirely on the generous support of individuals, foundations, and businesses from near and far.  Student fees cover only a small percentage of the costs of delivering personalized equine-assisted therapies.  We\'d like to offer our most sincere thanks to:\r\n\r\nOur annual calendar sponsors - please support them with your patronage for their support of Free Rein.\r\n\r\n<img class=\"size-medium wp-image-130\" alt=\"cover_front\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/cover_front-300x231.jpg\" width=\"300\" height=\"231\" />\r\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">January</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">February</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Food Matters Market\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">March</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">April</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Brevard-Pisgah Forest Hampton Inn\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">May</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"D.D. Bullwinkel\'s, Rocky\'s, and Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">June</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">July</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Headwaters Outfitters\" href=\"http://www.headwatersoutfitters.com/\" target=\"_blank\">Headwaters Outfitters</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">August</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">September</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">October</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">November</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Mission Children\'s Hospital\" href=\"http://www.missionchildrens.org/\" target=\"_blank\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">December</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2013-10-30 18:48:27','2013-10-30 18:48:27','',125,'http://freereincenter.com/?p=134',0,'revision','',0),(232,1,'2014-09-28 02:03:08','2014-09-28 02:03:08','Our annual calendar is a true labor of love... it\'s a lot of work, but we love to do it.  We love to do it because it is another way we can tell the wonderful stories of Horses Helping Humans Heal - and those humans, too.\r\n\r\nThe 2015 calendars are done - and they are the best ones yet!!  At only $15 each, they make great gifts.  You can get one in the office or at many of our calendar month sponsors.\r\n\r\n<strong>Please help thank our annual calendar sponsors</strong> - they believe in what we do and show it by sponsoring months in our calendar - thank them for their support of Free Rein with your patronage.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Pages.jpg\"><img class=\"alignleft wp-image-231\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Pages-193x300.jpg\" alt=\"2015 Calendar Pages\" width=\"231\" height=\"359\" /></a>\r\n<table style=\"height: 585px;\" width=\"362\">\r\n<tbody>\r\n<tr>\r\n<td width=\"94\">January</td>\r\n<td width=\"249\"><a href=\"http://www.oskarblues.com/\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">February</td>\r\n<td width=\"249\"><a href=\"http://www.foodmattersmarket.com/\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">March</td>\r\n<td width=\"249\"><a href=\"http://www.duganspub.com/\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">April</td>\r\n<td width=\"249\"><a href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">May</td>\r\n<td width=\"249\"><a href=\"http://www.ddbullwinkels.com/\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">June</td>\r\n<td width=\"249\"><a href=\"http://www.lookingglassbrevard.com/\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">July</td>\r\n<td width=\"249\"><a href=\"http://www.perfectbalancept.com/\">Perfect Balance Physical Therapy</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">August</td>\r\n<td width=\"249\"><a href=\"http://www.charliestirecenter.com/\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">September</td>\r\n<td width=\"249\"><a href=\"http://www.firstcitizens.com/\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">October</td>\r\n<td width=\"249\"><a href=\"http://www.copy-works.net/\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">November</td>\r\n<td width=\"249\"><a href=\"http://www.missionchildrens.org/\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">December</td>\r\n<td width=\"249\"><a href=\"http://www.wateroakdental.com/\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>\r\nP.O. Box 1325 Brevard, NC  28712</strong>\r\n\r\n<strong>Free Rein Center</strong>\r\n\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Free Rein Calendar','','inherit','closed','open','','125-revision-v1','','','2014-09-28 02:03:08','2014-09-28 02:03:08','',125,'http://freereincenter.com/?p=232',0,'revision','',0),(136,1,'2013-11-08 14:11:42','2013-11-08 14:11:42','','2014 Calendar Sponsor Page','','inherit','closed','open','','2014-calendar-sponsor-page','','','2013-11-08 14:11:42','2013-11-08 14:11:42','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Sponsor-Page.jpg',0,'attachment','image/jpeg',0),(204,1,'2014-07-31 14:16:55','2014-07-31 14:16:55','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Just click on a newsletter issue date below and it should open in a new window for you to view.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:16:55','2014-07-31 14:16:55','',190,'http://freereincenter.com/?p=204',0,'revision','',0),(137,1,'2013-11-08 14:16:16','2013-11-08 14:16:16','','2014 Calendar - Front & Sponsors Page','','inherit','closed','open','','2014-calendar-front-sponsors-page','','','2013-11-08 14:16:16','2013-11-08 14:16:16','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Front-Sponsors-Page.jpg',0,'attachment','image/jpeg',0),(138,1,'2013-11-08 14:18:58','2013-11-08 14:18:58','Free Rein depends almost entirely on the generous support of individuals, foundations, and businesses from near and far.  Student fees cover only a small percentage of the costs of delivering personalized equine-assisted therapies.  We\'d like to offer our most sincere thanks to:\r\n\r\n<strong>Our annual calendar sponsors</strong> - please support them with your patronage for their support of Free Rein.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Front-Sponsors-Page.jpg\"><img class=\" wp-image-137 alignleft\" alt=\"2014 Calendar - Front &amp; Sponsors Page\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Front-Sponsors-Page-193x300.jpg\" width=\"250\" height=\"370\" /></a>\r\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">January</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">February</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Food Matters Market\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">March</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">April</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Brevard-Pisgah Forest Hampton Inn\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">May</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"D.D. Bullwinkel\'s, Rocky\'s, and Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">June</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">July</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Headwaters Outfitters\" href=\"http://www.headwatersoutfitters.com/\" target=\"_blank\">Headwaters Outfitters</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">August</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">September</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">October</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">November</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Mission Children\'s Hospital\" href=\"http://www.missionchildrens.org/\" target=\"_blank\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">December</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2013-11-08 14:18:58','2013-11-08 14:18:58','',125,'http://freereincenter.com/?p=138',0,'revision','',0),(141,1,'2013-11-08 14:28:33','2013-11-08 14:28:33','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n\r\n&nbsp;\r\n<div>\r\n\r\nOur 8-week fall session was a big success, and we are pleased to have served the largest number of students we have had in many years.\r\n\r\nOur 2014 spring session will run from March 17th - May 16th and the 2014 fall session will run from September 8th - November 28th.\r\n\r\nWe are currently accepting applications for the spring 2014 session.  Please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2013-11-08 14:28:33','2013-11-08 14:28:33','',12,'http://freereincenter.com/?p=141',0,'revision','',0),(144,1,'2013-11-08 17:12:22','2013-11-08 17:12:22','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" alt=\"\" src=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein.  Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_donations\" /> <input type=\"hidden\" name=\"business\" value=\"freerein1325@gmail.com\" /> <input type=\"hidden\" name=\"lc\" value=\"US\" /> <input type=\"hidden\" name=\"item_name\" value=\"Free Rein Center\" /> <input type=\"hidden\" name=\"no_note\" value=\"0\" /> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" /> <input type=\"hidden\" name=\"bn\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input type=\"image\" alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" /> <img alt=\"\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\" /></form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2013-11-08 17:12:22','2013-11-08 17:12:22','',20,'http://freereincenter.com/?p=144',0,'revision','',0),(145,1,'2013-11-11 03:58:03','2013-11-11 03:58:03','<a title=\"Permanent Link to Sponsorship\" href=\"http://freereincenter.com/?page_id=231\" rel=\"bookmark\"><strong style=\"color: #333333;\">Sponsorship Opportunities for Supporting Free Rein</strong></a>\r\n<div>\r\n\r\n<strong>Special Friends of Free Rein</strong>:  This is a three year commitment to donate\r\na minimum of $1000 annually during that period.\r\n\r\n<strong>Roundup Circle:</strong> Minimum donation of $5000\r\n\r\n<strong>Riders’ Circle:</strong> Donation of $2500 to $4999\r\n\r\n<strong>Groomers’ Circle:</strong> Donation of $1500 to $2499\r\n\r\n<strong>Lead Rope Circle:</strong> Donation of $1000 to $1499\r\n\r\n<strong>Arena Circle:</strong> Donation of $500 to $999\r\n\r\n<strong>Tack Room Circle:</strong> Donation of $100 to $499\r\n\r\n<strong>Haystack Circle:</strong> Donation of less than $100\r\n<h2><strong><span style=\"font-size: 0.83em;\">Help Free Rein Keep Trottin’ Along……We could not do what we do without your support!</span></strong></h2>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Sponsorship','','inherit','closed','open','','18-autosave-v1','','','2013-11-11 03:58:03','2013-11-11 03:58:03','',18,'http://freereincenter.com/?p=145',0,'revision','',0),(150,1,'2013-03-22 16:23:22','2013-03-22 16:23:22','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a man.”  This is certainly true at Free Rein Center. At Free Rein, horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with autism, Attention Deficit Hyperactivity Disorder, physical limitations, and a wide range of other disabilities enjoy such benefits as increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is an affiliated member of the Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','open','','5-revision-v1','','','2013-03-22 16:23:22','2013-03-22 16:23:22','',5,'http://freereincenter.com/?p=150',0,'revision','',0),(151,1,'2014-02-06 02:15:30','2014-02-06 02:15:30','<img class=\"size-medium wp-image-153 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" alt=\"Proposed Free Rein Riding Center (low res)\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many people who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you or someone you know can help support this worthwhile project, with time or treasure, please contact us.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','\"Raise the Roof\" Campaign','','publish','closed','open','','raise-the-roof-for-free-rein','','','2016-02-13 15:53:34','2016-02-13 15:53:34','',9,'http://freereincenter.com/?page_id=151',4,'page','',0),(152,1,'2014-02-06 01:54:57','2014-02-06 01:54:57','','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 01:54:57','2014-02-06 01:54:57','',151,'http://freereincenter.com/?p=152',0,'revision','',0),(153,1,'2014-02-06 01:59:45','2014-02-06 01:59:45','','Proposed Free Rein Riding Center (low res)','','inherit','closed','open','','proposed-free-rein-riding-center-low-res','','','2014-02-06 01:59:45','2014-02-06 01:59:45','',151,'http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg',0,'attachment','image/jpeg',0),(154,1,'2014-02-06 01:59:56','2014-02-06 01:59:56','The Chinese Year of the Horse began on January 31st and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg\"><img class=\"alignnone size-medium wp-image-153\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" /></a>','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 01:59:56','2014-02-06 01:59:56','',151,'http://freereincenter.com/?p=154',0,'revision','',0),(155,1,'2014-02-06 02:01:46','2014-02-06 02:01:46','The Chinese Year of the Horse began on January 31st and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg\"><img class=\"alignnone size-medium wp-image-153\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" /></a>\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:01:46','2014-02-06 02:01:46','',151,'http://freereincenter.com/?p=155',0,'revision','',0),(158,1,'2014-02-06 02:03:19','2014-02-06 02:03:19','The Chinese Yea\r\n\r\n<img class=\"size-medium wp-image-153 alignleft\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nr of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the R\r\n\r\noof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:03:19','2014-02-06 02:03:19','',151,'http://freereincenter.com/?p=158',0,'revision','',0),(156,1,'2014-02-06 02:02:21','2014-02-06 02:02:21','The Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg\"><img class=\"size-medium wp-image-153 aligncenter\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" /></a>\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:02:21','2014-02-06 02:02:21','',151,'http://freereincenter.com/?p=156',0,'revision','',0),(157,1,'2014-02-06 02:02:47','2014-02-06 02:02:47','The Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res.jpg\"><img class=\"size-medium wp-image-153 alignleft\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" /></a>\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:02:47','2014-02-06 02:02:47','',151,'http://freereincenter.com/?p=157',0,'revision','',0),(159,1,'2014-02-06 02:03:57','2014-02-06 02:03:57','<img class=\"size-medium wp-image-153 alignleft\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:03:57','2014-02-06 02:03:57','',151,'http://freereincenter.com/?p=159',0,'revision','',0),(160,1,'2014-02-06 02:04:15','2014-02-06 02:04:15','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n&nbsp;\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:04:15','2014-02-06 02:04:15','',151,'http://freereincenter.com/?p=160',0,'revision','',0),(161,1,'2014-02-06 02:05:26','2014-02-06 02:05:26','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities like Autism.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you (or someone you know) can help support this truly worthwhile project, with your time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:05:26','2014-02-06 02:05:26','',151,'http://freereincenter.com/?p=161',0,'revision','',0),(162,1,'2014-02-06 02:06:22','2014-02-06 02:06:22','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we are planning to make it memorable.  In fact, we intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities.  The facility will include a large covered arena with an attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and where parents and guardians can watch their lessons.  We hope to have the facility completed in time for our spring session classes in 2015.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you (or someone you know) can help support this truly worthwhile project, with your time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:06:22','2014-02-06 02:06:22','',151,'http://freereincenter.com/?p=162',0,'revision','',0),(163,1,'2014-02-06 02:09:35','2014-02-06 02:09:35','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.  We plan to have the facility completed in time for our spring session classes in 2015.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you (or someone you know) can help support this truly worthwhile project, with your time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:09:35','2014-02-06 02:09:35','',151,'http://freereincenter.com/?p=163',0,'revision','',0),(164,1,'2014-02-06 02:10:07','2014-02-06 02:10:07','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n\r\nThe Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.\r\n\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nWe plan to have the facility completed in time for our spring session classes in 2015.  If you (or someone you know) can help support this truly worthwhile project, with your time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:10:07','2014-02-06 02:10:07','',151,'http://freereincenter.com/?p=164',0,'revision','',0),(165,1,'2014-02-06 02:10:41','2014-02-06 02:10:41','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many young people with Autism and others who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nWe plan to have the facility completed in time for our spring session classes in 2015.  If you (or someone you know) can help support this truly worthwhile project, with your time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 02:10:41','2014-02-06 02:10:41','',151,'http://freereincenter.com/?p=165',0,'revision','',0),(167,1,'2014-02-06 02:25:34','2014-02-06 02:25:34',' ','','','publish','closed','closed','','167','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',9,'http://freereincenter.com/?p=167',8,'nav_menu_item','',0),(173,1,'2014-02-06 15:13:07','2014-02-06 15:13:07','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many people who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nWe plan to have the facility ready for our spring session classes in 2015.  If you or someone you know can help support this worthwhile project, with time or treasure, please contact us.','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-02-06 15:13:07','2014-02-06 15:13:07','',151,'http://freereincenter.com/?p=173',0,'revision','',0),(169,1,'2014-02-06 02:30:43','2014-02-06 02:30:43','\"Horses Helping Humans Heal\" is more than a tagline at Free Rein - it\'s what we\'re all about.\r\n\r\nFree Rein is proud to have a vibrant, growing, human-horse interaction program.  We are staffed by a program director and  instructors certified by Professional Association of Therapeutic Horsemanship International (PATH International), formerly the North American Riding for the Handicapped Association (NARHA).\r\n\r\nThe therapeutic benefits of structured interaction with a horse are recognized by many in the medical professions.  For individuals with special needs in the cognitive, emotional, physical, and relationship areas, the unique relationship formed with a horse can lead to dramatic growth in self-esteem, self-awareness, confidence, and communication skills.  For those with physical disabilities, there are often the added outcomes of improved coordination, balance, and flexibility.\r\n\r\nFree Rein is dedicated to the principle that all of us, whatever our abilities, are capable of more than we think, and that together we can help build a more caring and compassionate world.\r\n<blockquote>\"The connection between the horses and these riders is surprisingly powerful.\"\r\n<strong>-Free Rein Volunteer</strong>\r\n\r\n&nbsp;</blockquote>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','About Us','','inherit','closed','open','','7-revision-v1','','','2014-02-06 02:30:43','2014-02-06 02:30:43','',7,'http://freereincenter.com/?p=169',0,'revision','',0),(171,1,'2014-02-06 02:39:28','2014-02-06 02:39:28','<span style=\"color: #000000;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014.jpg\"><img class=\" wp-image-115 alignleft\" alt=\"Free Rein Gala Poster - 2014\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Free-Rein-Gala-Poster-2014-232x300.jpg\" width=\"167\" height=\"216\" /></a></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala on October 20th was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyone who attended seemed to have a wonderful time.  Many thanks to the folks who came out to show their support for Free Rein and, of cou</span><span style=\"color: #000000;\">rse, for our sponsors of the event.  Please support and thank those who support Free Rein.  Our Gala sponsors include:</span>\r\n\r\n&nbsp;\r\n\r\n- Comporium\r\n\r\n- Transylvania Times\r\n\r\n- Lake Toxaway Resort\r\n\r\n- Burlingame Country Club\r\n\r\n- Mountain Quilts\r\n\r\n- Kiwi Gelato\r\n\r\n- Macon Bank\r\n\r\n- Ecusta Credit Union\r\n<div>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Annual Fall Gala','','inherit','closed','open','','10-revision-v1','','','2014-02-06 02:39:28','2014-02-06 02:39:28','',10,'http://freereincenter.com/?p=171',0,'revision','',0),(172,1,'2016-07-10 17:25:42','2016-07-10 17:25:42','<img class=\"size-medium wp-image-153 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" alt=\"Proposed Free Rein Riding Center (low res)\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many people who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you or someone you know can help support this worthwhile project, with time or treasure, please contact us.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','\"Raise the Roof\" Campaign','','inherit','closed','open','','151-autosave-v1','','','2016-07-10 17:25:42','2016-07-10 17:25:42','',151,'http://freereincenter.com/?p=172',0,'revision','',0),(176,1,'2014-03-30 17:55:10','2014-03-30 17:55:10','','IMG_4432 (small)','','inherit','closed','open','','img_4432-small','','','2014-03-30 17:55:10','2014-03-30 17:55:10','',12,'http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg',0,'attachment','image/jpeg',0),(182,1,'2014-07-31 13:11:53','2014-07-31 13:11:53','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" alt=\"IMG_4432 (small)\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 8-week spring session was a big success.  </span><span style=\"line-height: 1.5em;\">Our 2014 fall session will run from September 8th - November 28th.</span>\r\n<div>\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2014-07-31 13:11:53','2014-07-31 13:11:53','',12,'http://freereincenter.com/?p=182',0,'revision','',0),(177,1,'2014-03-30 17:57:34','2014-03-30 17:57:34','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" alt=\"IMG_4432 (small)\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" width=\"300\" height=\"176\" /></a></p>\r\nOur 8-week fall session was a big success, and we are pleased to have served the largest number of students we have had in many years.\r\n<div>\r\n\r\nOur 2014 spring session started on March 17th and will end the week of May 16th, 2014.\r\n\r\nOur 2014 fall session will run from September 8th - November 28th.\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828)883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2014-03-30 17:57:34','2014-03-30 17:57:34','',12,'http://freereincenter.com/?p=177',0,'revision','',0),(178,1,'2014-03-30 18:00:03','2014-03-30 18:00:03','<img class=\"size-medium wp-image-153 alignright\" alt=\"Proposed Free Rein Riding Center (low res)\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility, with ground-breaking planned for late 2014.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many people who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nWe plan to have the facility ready for our spring session classes in 2015.  If you or someone you know can help support this worthwhile project, with time or treasure, please contact us.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','\"Raise the Roof\" for Free Rein','','inherit','closed','open','','151-revision-v1','','','2014-03-30 18:00:03','2014-03-30 18:00:03','',151,'http://freereincenter.com/?p=178',0,'revision','',0),(179,1,'2014-04-02 00:58:11','2014-04-02 00:58:11','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li><strong>Donating Equipment:</strong> Our wish list includes:</li>\r\n	<li><strong>Gift Certificates for: </strong>Office Supplies, Tractor Supply, Valley Ag, or Balsam Quarter Tack</li>\r\n	<li><strong>Donating Money:</strong> Free Rein depends upon financial contributions from individuals, groups, foundations, and businesses of all sizes.  Your donation is tax deductible as we are a 501(3)(c) organization.  Your money will be used to feed and care for horses, sponsor students who cannot afford to pay for lessons, and pay for operating expenses, which we try to keep as low as possible...  so more of our donations can go towards what matters most.  In 2013, more than 88% of our revenues went to support program-related expenses.</li>\r\n	<li><strong>Volunteer</strong>…<a href=\"http://freereincenter.com/?page_id=16\">learn more</a></li>\r\n	<li><strong>Sponsorship</strong>...<a href=\"http://freereincenter.com/?page_id=18\">learn more</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Ways You Can Help','','inherit','closed','open','','14-revision-v1','','','2014-04-02 00:58:11','2014-04-02 00:58:11','',14,'http://freereincenter.com/?p=179',0,'revision','',0),(222,1,'2014-09-15 15:11:43','2014-09-15 15:11:43','<h2 style=\"text-align: center;\">Friday, October 17th</h2>\r\n<h2 style=\"text-align: center;\">Connestee Falls Clubhouse</h2>\r\n&nbsp;\r\n\r\n<img class=\"alignnone  wp-image-221 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-2014-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"402\" height=\"297\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala was a great success by all measures, with more than 100 people in attendance.  This year\'s event promises to be even more fun.  In addition to Connestree Falls\' great food, we\'ll have a variety of popular live and silent auction items.  We\'ll also have live music, including The Moonshine Babies and The Bold Grey Mares.  If you are interested in attending, or being a sponsor for this year\'s Mane Event, please email <a href=\"mailto:freereincenter@gmail.com\" target=\"_blank\">freereincenter@gmail.com</a>.</span><span style=\"color: #000000;\">  Please see the <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Sponsor-opportunities.pdf\">sponsor opportunities</a> for sponsorship levels and recognition/benefits provided to our sponsors.</span>\r\n<div>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Fall Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-09-15 15:11:43','2014-09-15 15:11:43','',10,'http://freereincenter.com/?p=222',0,'revision','',0),(207,1,'2014-08-22 19:37:14','2014-08-22 19:37:14','','Mane Event Logo - 2014','','inherit','closed','open','','mane-event-logo-2014','','','2014-08-22 19:37:14','2014-08-22 19:37:14','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg',0,'attachment','image/jpeg',0),(234,1,'2014-10-20 02:32:06','2014-10-20 02:32:06','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a></h2>\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - Transylvania Times ~ Attorney Brian Stretcher</li>\r\n	<li>Mustang Level - Comporium ~ Dugan\'s Pub ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - Brevard Family Practice ~ Domokur Architects ~ Ecusta Credit Union ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirell Shop ~ Z-Z- Zip, Carl Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-10-20 02:32:06','2014-10-20 02:32:06','',10,'http://freereincenter.com/?p=234',0,'revision','',0),(189,1,'2014-07-31 13:51:57','2014-07-31 13:51:57','There are many ways in which you can help support the Free Rein Center. It is up to you. Here are some suggestions:\r\n<div>\r\n<ul>\r\n	<li>Donating your Time:  Help with our students and horses during class time or help with one of our special events. “Volunteers are the heart and soul of our program.  Without the help of our wonderful helpers, we could not offer our programs to our students,” says our former volunteer coordinator, Kathy Morrow.</li>\r\n	<li>Volunteers help us primarily by assisting with our students and horses during our classes.  You do not need to know a lot about children or adults with special needs or about horses.  We provide all the training you need to make our students’ dreams come true.  All Volunteers who wish to work with our lessons must attend a Volunteer Training Session before they begin.  <strong>Volunteer Orientation/Training takes place prior to the start of each </strong><strong>session</strong>. If you would like to volunteer with Free Rein, please call our office or send us an email at info@freereincenter.com.</li>\r\n	<li>If working in classes is not what you had in mind, there are many other areas in which we need help including fundraising, office work, special events, and horse care. Volunteer Today! You will be glad you did!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Volunteer','','inherit','closed','open','','16-revision-v1','','','2014-07-31 13:51:57','2014-07-31 13:51:57','',16,'http://freereincenter.com/?p=189',0,'revision','',0),(187,1,'2014-07-31 13:50:14','2014-07-31 13:50:14','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<h3 style=\"text-align: center;\">Save the Date</h3>\r\n<h2 style=\"text-align: center;\">Free Rein\'s 2014 Gala will be held on Friday, October 17th</h2>\r\n<h3 style=\"text-align: center;\">at Connestee Falls</h3>\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/03/The-Mane-Event-Logo.jpg\"><img class=\"size-medium wp-image-186 aligncenter\" alt=\"The Mane Event Logo\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/The-Mane-Event-Logo-259x300.jpg\" width=\"259\" height=\"300\" /></a>\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala was a great success by all measures, with more than 100 people in attendance.  Once again, Brevard Mayor Jimmy Harris did an excellent job as our Auctioneer.  Connestee Falls was a great location.  The food and music were very good and everyone who attended seemed to have a wonderful time.  Many thanks to the folks who came out to show their support for Free Rein and, of cou</span><span style=\"color: #000000;\">rse, to our sponsors of the event.  Please support and thank those who support Free Rein.  Our 2013 Gala sponsors included:</span>\r\n\r\n- Comporium\r\n\r\n- Transylvania Times\r\n\r\n- Lake Toxaway Resort\r\n\r\n- Burlingame Country Club\r\n\r\n- Mountain Quilts\r\n\r\n- Kiwi Gelato\r\n\r\n- Macon Bank\r\n\r\n- Ecusta Credit Union\r\n<div>\r\n\r\n<span style=\"color: #000000;\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Fall Gala Event','','inherit','closed','open','','10-revision-v1','','','2014-07-31 13:50:14','2014-07-31 13:50:14','',10,'http://freereincenter.com/?p=187',0,'revision','',0),(190,1,'2014-07-31 13:58:35','2014-07-31 13:58:35','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/07/Free-Rein-Newsletter-JUN-2016-email.pdf\">June 2016</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n 	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','publish','closed','open','','nickers-news-free-reins-newsletter','','','2016-07-20 13:34:53','2016-07-20 13:34:53','',9,'http://freereincenter.com/?page_id=190',1,'page','',0),(191,1,'2014-07-31 13:53:52','2014-07-31 13:53:52','','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 13:53:52','2014-07-31 13:53:52','',190,'http://freereincenter.com/?p=191',0,'revision','',0),(192,1,'2014-07-31 13:54:39','2014-07-31 13:54:39','','June 2014','','inherit','closed','open','','free-rein-newsletter-june-2014','','','2014-07-31 13:54:39','2014-07-31 13:54:39','',190,'http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf',0,'attachment','application/pdf',0),(193,1,'2014-07-31 13:55:03','2014-07-31 13:55:03','<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">Free Rein Newsletter June 2014</a>','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 13:55:03','2014-07-31 13:55:03','',190,'http://freereincenter.com/?p=193',0,'revision','',0),(194,1,'2014-07-31 13:58:17','2014-07-31 13:58:17','Nickers &amp; News is a great way to see what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\"><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></a>','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 13:58:17','2014-07-31 13:58:17','',190,'http://freereincenter.com/?p=194',0,'revision','',0),(195,1,'2014-07-31 13:58:35','2014-07-31 13:58:35','Nickers &amp; News is a great way to see what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\"><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 13:58:35','2014-07-31 13:58:35','',190,'http://freereincenter.com/?p=195',0,'revision','',0),(196,1,'2014-07-31 13:59:13','2014-07-31 13:59:13','Nickers &amp; News is a great way to see what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 13:59:13','2014-07-31 13:59:13','',190,'http://freereincenter.com/?p=196',0,'revision','',0),(197,1,'2014-07-31 14:02:48','2014-07-31 14:02:48','Nickers &amp; News is a great way to see what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','- Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:02:48','2014-07-31 14:02:48','',190,'http://freereincenter.com/?p=197',0,'revision','',0),(198,1,'2014-07-31 14:03:44','2014-07-31 14:03:44','Nickers &amp; News is a great way to see what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:03:44','2014-07-31 14:03:44','',190,'http://freereincenter.com/?p=198',0,'revision','',0),(200,1,'2014-07-31 14:04:47','2014-07-31 14:04:47','Nickers &amp; News is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Nickers & News - Free Rein\'s Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:04:47','2014-07-31 14:04:47','',190,'http://freereincenter.com/?p=200',0,'revision','',0),(201,1,'2014-07-31 14:06:00','2014-07-31 14:06:00','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletter','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:06:00','2014-07-31 14:06:00','',190,'http://freereincenter.com/?p=201',0,'revision','',0),(202,1,'2014-07-31 14:06:19','2014-07-31 14:06:19','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-07-31 14:06:19','2014-07-31 14:06:19','',190,'http://freereincenter.com/?p=202',0,'revision','',0),(227,1,'2014-09-28 00:50:14','2014-09-28 00:50:14','<img class=\"size-medium wp-image-153 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2014/02/Proposed-Free-Rein-Riding-Center-low-res-300x208.jpg\" alt=\"Proposed Free Rein Riding Center (low res)\" width=\"300\" height=\"208\" />\r\n<p style=\"text-align: left;\">The Chinese Year of the Horse began on January 31, 2014 and we plan to make it memorable.  We intend to “Raise the Roof” by raising funds to build a covered riding facility.  This will allow us to serve even more adults and children with physical disabilities or developmental disabilities, such as Autism.  It will include a large covered arena with attached 10-stall barn and multi-purpose room, where students can gather in a dry place before lessons and their parents and guardians can watch their lessons.</p>\r\n“Raise the Roof” was intentionally chosen as the theme for this capital fund raising campaign to invoke the memory, images, and experiences of an old-fashioned barn-raising; since that is exactly what it will be.  In raising funds from a mix of individuals, corporate sources, and philanthropic foundations; we will bring the community and region together to raise a roof so that the many people who depend on the structure of a scheduled weekly session can count on it - rain or shine.\r\n\r\nIf you or someone you know can help support this worthwhile project, with time or treasure, please contact us.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','\"Raise the Roof\" Campaign','','inherit','closed','open','','151-revision-v1','','','2014-09-28 00:50:14','2014-09-28 00:50:14','',151,'http://freereincenter.com/?p=227',0,'revision','',0),(203,1,'2014-07-31 14:09:35','2014-07-31 14:09:35','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" alt=\"IMG_4432 (small)\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 8-week spring session was a big success.  </span><span style=\"line-height: 1.5em;\">Our 2014 fall session will run from September 8th - November 28th.</span>\r\n<div>\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2014-07-31 14:09:35','2014-07-31 14:09:35','',12,'http://freereincenter.com/?p=203',0,'revision','',0),(209,1,'2014-08-22 19:39:34','2014-08-22 19:39:34','Free Rein depends almost entirely on the generous support of individuals, foundations, and businesses from near and far.  Student fees cover only a small percentage of the costs of delivering personalized equine-assisted therapies.  We\'d like to offer our most sincere thanks to:\r\n\r\n<strong>Our annual calendar sponsors</strong> - please thank them with your patronage for their support of Free Rein.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Front-Sponsors-Page.jpg\"><img class=\" wp-image-137 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2014-Calendar-Front-Sponsors-Page-193x300.jpg\" alt=\"2014 Calendar - Front &amp; Sponsors Page\" width=\"250\" height=\"370\" /></a>\r\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">January</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">February</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Food Matters Market\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">March</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">April</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Brevard-Pisgah Forest Hampton Inn\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">May</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"D.D. Bullwinkel\'s, Rocky\'s, and Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">June</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">July</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Headwaters Outfitters\" href=\"http://www.headwatersoutfitters.com/\" target=\"_blank\">Headwaters Outfitters</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">August</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">September</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">October</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">November</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Mission Children\'s Hospital\" href=\"http://www.missionchildrens.org/\" target=\"_blank\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"94\">\r\n<p align=\"center\">December</p>\r\n</td>\r\n<td valign=\"top\" width=\"281\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Special Thanks to...','','inherit','closed','open','','125-revision-v1','','','2014-08-22 19:39:34','2014-08-22 19:39:34','',125,'http://freereincenter.com/?p=209',0,'revision','',0),(215,1,'2014-09-08 17:26:58','2014-09-08 17:26:58','','SEP 2014 Free Rein Newsletter (Email Version)','','inherit','closed','open','','sep-2014-free-rein-newsletter-email-version','','','2014-09-08 17:26:58','2014-09-08 17:26:58','',190,'http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf',0,'attachment','application/pdf',0),(216,1,'2014-09-08 17:38:48','2014-09-08 17:38:48','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Just click on a newsletter issue date below and it should open in a new window for you to view.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-09-08 17:38:48','2014-09-08 17:38:48','',190,'http://freereincenter.com/?p=216',0,'revision','',0),(217,1,'2016-03-31 19:44:59','2016-03-31 19:44:59','<h3 style=\"text-align: left;\">&nbsp;</h3>\r\n<h3 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small.jpg\" rel=\"attachment wp-att-380\"><img class=\"alignnone size-medium wp-image-380\" src=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small-300x185.jpg\" alt=\"Priceless \" width=\"300\" height=\"185\"></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein. &nbsp;Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_donations\"> <input name=\"business\" type=\"hidden\" value=\"freerein1325@gmail.com\"> <input name=\"lc\" type=\"hidden\" value=\"US\"> <input name=\"item_name\" type=\"hidden\" value=\"Free Rein Center\"> <input name=\"no_note\" type=\"hidden\" value=\"0\"> <input name=\"currency_code\" type=\"hidden\" value=\"USD\"> <input name=\"bn\" type=\"hidden\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\"> <input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\"> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\">\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n\r\n</form></div>','Donate Now!','','inherit','closed','open','','20-autosave-v1','','','2016-03-31 19:44:59','2016-03-31 19:44:59','',20,'http://freereincenter.com/?p=217',0,'revision','',0),(218,1,'2014-09-08 17:41:47','2014-09-08 17:41:47','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" src=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" alt=\"\" width=\"561\" height=\"440\" /></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein.  Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_donations\" /> <input name=\"business\" type=\"hidden\" value=\"freerein1325@gmail.com\" /> <input name=\"lc\" type=\"hidden\" value=\"US\" /> <input name=\"item_name\" type=\"hidden\" value=\"Free Rein Center\" /> <input name=\"no_note\" type=\"hidden\" value=\"0\" /> <input name=\"currency_code\" type=\"hidden\" value=\"USD\" /> <input name=\"bn\" type=\"hidden\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\" /> <input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\" /> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong></p>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n</form></div>','Donate Now!','','inherit','closed','open','','20-revision-v1','','','2014-09-08 17:41:47','2014-09-08 17:41:47','',20,'http://freereincenter.com/?p=218',0,'revision','',0),(220,1,'2014-09-15 14:57:21','2014-09-15 14:57:21','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we do it for.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-09-15 14:57:21','2014-09-15 14:57:21','',190,'http://freereincenter.com/?p=220',0,'revision','',0),(226,1,'2014-09-28 00:47:12','2014-09-28 00:47:12','<h2 style=\"text-align: center;\">Friday, October 17th</h2>\r\n<h2 style=\"text-align: center;\">Connestee Falls Clubhouse</h2>\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Free Rein’s 2013 Fall Gala was a great success by all measures, with more than 100 people in attendance.  This year\'s event promises to be even more fun.  In addition to Connestree Falls\' great food, we\'ll have a variety of popular live and silent auction items, including:</span>\r\n<ul>\r\n	<li>Airplane ride around the area with one of Brevard\'s coolest doctors, Dr. Ruffin Benton</li>\r\n	<li>French Broad Dinner Cruise - canoe/kayak trip for 8 on the FrenchBroad River, followed by a lunch or dinner catered by Jamie Hernandez (Jaime\'s on Main) served by members of the Free Rein board on the deck of Duckpond Pottery</li>\r\n	<li>A Queen-sized quilt, courtesy of Mountain Quilts</li>\r\n	<li>One of Paula Poad\'s popular Untamed Horse statues</li>\r\n	<li>and even more...</li>\r\n</ul>\r\n<span style=\"color: #000000;\">We\'ll also have live music, including The Moonshine Babies and The Bold Grey Mares.  If you are interested in attending, or being a sponsor for this year\'s Mane Event, please contact us at the phone number or email below.  </span><span style=\"color: #000000;\">Please see the <a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Sponsor-opportunities.pdf\">sponsor opportunities</a> for sponsorship levels and recognition/benefits provided to our sponsors.</span>\r\n<div>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span></p>\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-09-28 00:47:12','2014-09-28 00:47:12','',10,'http://freereincenter.com/?p=226',0,'revision','',0),(228,1,'2015-10-28 15:44:10','2015-10-28 15:44:10','<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign.jpg\"><img class=\"wp-image-316 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign-300x211.jpg\" alt=\"2016 Calendar POS Sign\" width=\"263\" height=\"185\" /></a>Our annual calendar is a true labor of love... it\'s a lot of work, but we love to do it.  We love to do it because it is another way we can tell the wonderful stories of Horses Helping Humans Heal - and those humans, too.\n\nThe 2016 calendars are here.  Printed on heavy stock, easy to write important notes on, and only cost $15 each ~ they make wonderful gifts... and help support Free Rein\'s programs.  Contact the office at the email or phone number below to get one, or look for them at some of the calendar sponsors shown below.\n\n<strong>Please help thank our annual calendar sponsors</strong> - they believe in what we do and show it by sponsoring months in our calendar - check out their web pages using the links below and thank them for their support of Free Rein with your patronage.\n\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page.jpg\"><img class=\"wp-image-314 size-medium alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page-191x300.jpg\" alt=\"\" width=\"191\" height=\"300\" /></a>\n<table style=\"height: 585px;\" width=\"362\">\n<tbody>\n<tr>\n<td width=\"94\">January</td>\n<td width=\"249\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com/\" target=\"_blank\">Oskar Blues Brewery</a></td>\n</tr>\n<tr>\n<td width=\"94\">February</td>\n<td width=\"249\"><a title=\"Food Matters Market &amp; Cafe\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\n</tr>\n<tr>\n<td width=\"94\">March</td>\n<td width=\"249\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\n</tr>\n<tr>\n<td width=\"94\">April</td>\n<td width=\"249\"><a title=\"Hampton Inn of Brevard/Pisgah Forest\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\n</tr>\n<tr>\n<td width=\"94\">May</td>\n<td width=\"249\"><a title=\"D.D. Bullwinkel\'s ~ Rocky\'s ~ Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\n</tr>\n<tr>\n<td width=\"94\">June</td>\n<td width=\"249\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\n</tr>\n<tr>\n<td width=\"94\">July</td>\n<td width=\"249\"><a title=\"Perfect Balance Physical Therapy\" href=\"http://www.perfectbalancept.com/\" target=\"_blank\">Perfect Balance Physical Therapy</a></td>\n</tr>\n<tr>\n<td width=\"94\">August</td>\n<td width=\"249\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\n</tr>\n<tr>\n<td width=\"94\">September</td>\n<td width=\"249\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\n</tr>\n<tr>\n<td width=\"94\">October</td>\n<td width=\"249\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\n</tr>\n<tr>\n<td width=\"94\">November</td>\n<td width=\"249\"><a title=\"Broad Street Wines\" href=\"http://http://broadstreetwines.com/\" target=\"_blank\">Broad Street Wines</a></td>\n</tr>\n<tr>\n<td width=\"94\">December</td>\n<td width=\"249\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\n</tr>\n</tbody>\n</table>\n<strong>\nP.O. Box 1325 Brevard, NC  28712</strong>\n\n<strong>Free Rein Center</strong>\n\n<strong>828-883-3375</strong>\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Free Rein Calendar','','inherit','closed','open','','125-autosave-v1','','','2015-10-28 15:44:10','2015-10-28 15:44:10','',125,'http://freereincenter.com/?p=228',0,'revision','',0),(229,1,'2014-09-28 01:14:31','2014-09-28 01:14:31','','2015 Calendar Cover','','inherit','closed','open','','2015-calendar-cover','','','2014-09-28 01:14:31','2014-09-28 01:14:31','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg',0,'attachment','image/jpeg',0),(230,1,'2014-09-28 01:14:34','2014-09-28 01:14:34','','Sponsor Page - 2015 Free Rein Calendar','','inherit','closed','open','','sponsor-page-2015-free-rein-calendar','','','2014-09-28 01:14:34','2014-09-28 01:14:34','',125,'http://freereincenter.com/wp-content/uploads/2013/10/Sponsor-Page-2015-Free-Rein-Calendar.jpg',0,'attachment','image/jpeg',0),(231,1,'2014-09-28 01:25:26','2014-09-28 01:25:26','','2015 Calendar Pages','','inherit','closed','open','','2015-calendar-pages','','','2014-09-28 01:25:26','2014-09-28 01:25:26','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Pages.jpg',0,'attachment','image/jpeg',0),(235,1,'2014-10-20 02:40:57','2014-10-20 02:40:57','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a></h2>\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirell Shop ~ Z-Z- Zip, Carl Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-10-20 02:40:57','2014-10-20 02:40:57','',10,'http://freereincenter.com/?p=235',0,'revision','',0),(294,1,'2015-08-06 22:09:05','2015-08-06 22:09:05','','Gala Flyer - 2015','','inherit','closed','open','','gala-flyer-2015','','','2015-08-06 22:09:05','2015-08-06 22:09:05','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg',0,'attachment','image/jpeg',0),(236,1,'2014-10-24 14:45:50','2014-10-24 14:45:50','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a></h2>\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirell Shop ~ Z-Z- Zip, Carl Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-10-24 14:45:50','2014-10-24 14:45:50','',10,'http://freereincenter.com/?p=236',0,'revision','',0),(238,1,'2014-10-29 18:11:39','2014-10-29 18:11:39','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a></h2>\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip, Carl Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-10-29 18:11:39','2014-10-29 18:11:39','',10,'http://freereincenter.com/?p=238',0,'revision','',0),(239,1,'2014-10-29 18:12:05','2014-10-29 18:12:05','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141.jpg\"><img class=\"wp-image-225 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Flyer-20141-300x222.jpg\" alt=\"Mane Event Flyer - 2014\" width=\"423\" height=\"313\" /></a></h2>\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2014-10-29 18:12:05','2014-10-29 18:12:05','',10,'http://freereincenter.com/?p=239',0,'revision','',0),(249,1,'2014-12-17 17:53:27','2014-12-17 17:53:27','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-DEC-2014-email.pdf\">December 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-12-17 17:53:27','2014-12-17 17:53:27','',190,'http://freereincenter.com/?p=249',0,'revision','',0),(255,1,'2014-12-17 21:01:30','2014-12-17 21:01:30','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-12-17 21:01:30','2014-12-17 21:01:30','',190,'http://freereincenter.com/?p=255',0,'revision','',0),(243,1,'2014-12-17 17:38:55','2014-12-17 17:38:55','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/December-2014-Free-Rein-Newsletter-Email-Version.pdf\">December 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-12-17 17:38:55','2014-12-17 17:38:55','',190,'http://freereincenter.com/?p=243',0,'revision','',0),(261,1,'2014-12-17 21:33:42','2014-12-17 21:33:42','','DEC 2014 Free Rein Newsletter (email)','','inherit','closed','open','','dec-2014-free-rein-newsletter-email','','','2014-12-17 21:33:42','2014-12-17 21:33:42','',190,'http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf',0,'attachment','application/pdf',0),(262,1,'2014-12-17 21:34:24','2014-12-17 21:34:24','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n<ul>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\">December 2014</a></li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2014-12-17 21:34:24','2014-12-17 21:34:24','',190,'http://freereincenter.com/?p=262',0,'revision','',0),(274,1,'2015-05-25 19:27:10','2015-05-25 19:27:10','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Spring Session was another success, with more 59 participants.  Our 8-week fall </span><span style=\"line-height: 1.5em;\">session will run from September 8th - November 7th (including the week of make-ups we invariably need).</span>\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2015-05-25 19:27:10','2015-05-25 19:27:10','',12,'http://freereincenter.com/?p=274',0,'revision','',0),(264,1,'2015-03-21 17:00:33','2015-03-21 17:00:33','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2014 Fall Session was a big success, with more than 60 participants.  Our 8-week spring session just started and will run until May 16th (inclusive of make ups for classes cancelled due to weather). The </span><span style=\"line-height: 1.5em;\">2015 fall session will run from August 31st - October 31st.</span>\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2015-03-21 17:00:33','2015-03-21 17:00:33','',12,'http://freereincenter.com/?p=264',0,'revision','',0),(265,1,'2015-03-21 17:03:39','2015-03-21 17:03:39','<strong> Free Rein\'s 2015 Fund Raising Calendar  is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg\"><img class=\"alignright wp-image-229 size-medium\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover-300x232.jpg\" alt=\"\" width=\"300\" height=\"232\" /></a></strong>\r\n\r\nOur third fund raising calendar was a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.  It was also very high quality art.  Thanks to local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\nYou can highlight your loved ones\' special days with a special note on that day in the calendar.  <strong>If you\'d like to buy a 2015 calendar, or day in the 2016 calendar, please email us and we\'ll have someone get in touch to arrange the details. </strong> Every day you buy 25 each), you\'ll get a free calendar ($15 value).  They make great presents, too.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News and Events','','inherit','closed','open','','9-revision-v1','','','2015-03-21 17:03:39','2015-03-21 17:03:39','',9,'http://freereincenter.com/?p=265',0,'revision','',0),(267,1,'2015-03-30 20:26:40','2015-03-30 20:26:40','','Free Rein Newsletter MAR 2015 (email)','','inherit','closed','open','','free-rein-newsletter-mar-2015-email','','','2015-03-30 20:26:40','2015-03-30 20:26:40','',190,'http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf',0,'attachment','application/pdf',0),(268,1,'2015-03-30 20:31:01','2015-03-30 20:31:01','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\">December 2014</a></li>\r\n</ul>\r\n2015 Issues\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-03-30 20:31:01','2015-03-30 20:31:01','',190,'http://freereincenter.com/?p=268',0,'revision','',0),(270,1,'2015-03-30 20:36:00','2015-03-30 20:36:00','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-03-30 20:36:00','2015-03-30 20:36:00','',190,'http://freereincenter.com/?p=270',0,'revision','',0),(269,1,'2015-03-30 20:31:37','2015-03-30 20:31:37','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n2015 Issues\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-03-30 20:31:37','2015-03-30 20:31:37','',190,'http://freereincenter.com/?p=269',0,'revision','',0),(275,1,'2015-05-30 14:43:19','2015-05-30 14:43:19','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Spring Session was another success, serving 59 individuals.  Our 8-week fall </span><span style=\"line-height: 1.5em;\">session will run from September 8th - November 7th (including the week of make-ups we invariably need).</span>\r\n\r\nIf you need more information, or would like to apply for the fall program, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2015-05-30 14:43:19','2015-05-30 14:43:19','',12,'http://freereincenter.com/?p=275',0,'revision','',0),(277,1,'2015-06-30 20:00:27','2015-06-30 20:00:27','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n	<li>June 2015</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-06-30 20:00:27','2015-06-30 20:00:27','',190,'http://freereincenter.com/?p=277',0,'revision','',0),(278,1,'2015-06-30 20:01:09','2015-06-30 20:01:09','','Free Rein Newsletter JUN 2015 (email)','','inherit','closed','open','','free-rein-newsletter-jun-2015-email','','','2015-06-30 20:01:09','2015-06-30 20:01:09','',190,'http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf',0,'attachment','application/pdf',0),(279,1,'2016-07-25 22:14:48','2016-07-25 22:14:48','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/07/Free-Rein-Newsletter-JUN-2016-email.pdf\">June 2016</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n 	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-autosave-v1','','','2016-07-25 22:14:48','2016-07-25 22:14:48','',190,'http://freereincenter.com/?p=279',0,'revision','',0),(281,1,'2015-06-30 20:45:53','2015-06-30 20:45:53','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n	<li>June 2015</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-06-30 20:45:53','2015-06-30 20:45:53','',190,'http://freereincenter.com/?p=281',0,'revision','',0),(280,1,'2015-06-30 20:04:04','2015-06-30 20:04:04','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/?attachment_id=278\" target=\"_blank\">June 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-06-30 20:04:04','2015-06-30 20:04:04','',190,'http://freereincenter.com/?p=280',0,'revision','',0),(282,1,'2015-06-30 20:47:44','2015-06-30 20:47:44','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\" Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-06-30 20:47:44','2015-06-30 20:47:44','',190,'http://freereincenter.com/?p=282',0,'revision','',0),(283,1,'2015-06-30 20:49:33','2015-06-30 20:49:33','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  You will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) to view it.  If you have trouble viewing it, please let us know so we can fix any issues involved.\r\n\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-06-30 20:49:33','2015-06-30 20:49:33','',190,'http://freereincenter.com/?p=283',0,'revision','',0),(284,1,'2015-07-02 18:14:31','2015-07-02 18:14:31','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nJust click on a newsletter issue date below and it should open in a new window for you to view.  They are in .pdf format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers and smartphone operating systems have .pdf reader applications built in.  If you have trouble viewing it, please let us know so we can fix any issues involved.  Please note that the newsletters are listed below from most recent to oldest issues.\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:14:31','2015-07-02 18:14:31','',190,'http://freereincenter.com/?p=284',0,'revision','',0),(285,1,'2015-07-02 18:16:05','2015-07-02 18:16:05','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nJust click on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.  If you have trouble viewing it, please let us know so we can fix any issues involved.  Please note that the newsletters are listed below from most recent to oldest issues.\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:16:05','2015-07-02 18:16:05','',190,'http://freereincenter.com/?p=285',0,'revision','',0),(286,1,'2015-07-02 18:18:34','2015-07-02 18:18:34','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  Please note that the newsletters are listed below from most recent to oldest issues.\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:18:34','2015-07-02 18:18:34','',190,'http://freereincenter.com/?p=286',0,'revision','',0),(287,1,'2015-07-02 18:20:19','2015-07-02 18:20:19','<em><strong>Nickers &amp; News</strong></em> is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:20:19','2015-07-02 18:20:19','',190,'http://freereincenter.com/?p=287',0,'revision','',0),(288,1,'2015-07-02 18:20:56','2015-07-02 18:20:56','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:20:56','2015-07-02 18:20:56','',190,'http://freereincenter.com/?p=288',0,'revision','',0),(289,1,'2015-07-02 18:21:26','2015-07-02 18:21:26','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly), who we serve and why it matters.  If you\'d like to receive this newsletter by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:21:26','2015-07-02 18:21:26','',190,'http://freereincenter.com/?p=289',0,'revision','',0),(290,1,'2015-07-02 18:23:10','2015-07-02 18:23:10','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-07-02 18:23:10','2015-07-02 18:23:10','',190,'http://freereincenter.com/?p=290',0,'revision','',0),(292,1,'2015-08-06 22:03:21','2015-08-06 22:03:21','','Calendar Day Page with Highlight','','inherit','closed','open','','calendar-day-page-with-highlight','','','2015-08-06 22:03:21','2015-08-06 22:03:21','',125,'http://freereincenter.com/wp-content/uploads/2013/10/Calendar-Day-Page-with-Highlight.jpg',0,'attachment','image/jpeg',0),(293,1,'2015-08-06 22:07:53','2015-08-06 22:07:53','<img class=\"alignleft wp-image-292\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/Calendar-Day-Page-with-Highlight-300x230.jpg\" alt=\"Calendar Day Page with Highlight\" width=\"261\" height=\"200\" />Our annual calendar is a true labor of love... it\'s a lot of work, but we love to do it.  We love to do it because it is another way we can tell the wonderful stories of Horses Helping Humans Heal - and those humans, too.\r\n\r\nThe 2016 calendars are in process, but it\'s not too late to buy a day to remember a loved one\'s special day, honor someone special in your life, or even remember your favorite furry friend\'s birthday.  A day costs $25 and you get a free calendar with every day bought.  Email us at freerein1325@gmail.com with your desired days and we\'ll get in touch to work out details.  Don\'t delay... the last day to buy a day is August 21st.\r\n\r\n<strong>Please help thank our annual calendar sponsors</strong> - they believe in what we do and show it by sponsoring months in our calendar - thank them for their support of Free Rein with your patronage.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Pages.jpg\"><img class=\"alignleft wp-image-231\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Pages-193x300.jpg\" alt=\"2015 Calendar Pages\" width=\"231\" height=\"359\" /></a>\r\n<table style=\"height: 585px;\" width=\"362\">\r\n<tbody>\r\n<tr>\r\n<td width=\"94\">January</td>\r\n<td width=\"249\"><a href=\"http://www.oskarblues.com/\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">February</td>\r\n<td width=\"249\"><a href=\"http://www.foodmattersmarket.com/\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">March</td>\r\n<td width=\"249\"><a href=\"http://www.duganspub.com/\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">April</td>\r\n<td width=\"249\"><a href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">May</td>\r\n<td width=\"249\"><a href=\"http://www.ddbullwinkels.com/\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">June</td>\r\n<td width=\"249\"><a href=\"http://www.lookingglassbrevard.com/\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">July</td>\r\n<td width=\"249\"><a href=\"http://www.perfectbalancept.com/\">Perfect Balance Physical Therapy</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">August</td>\r\n<td width=\"249\"><a href=\"http://www.charliestirecenter.com/\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">September</td>\r\n<td width=\"249\"><a href=\"http://www.firstcitizens.com/\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">October</td>\r\n<td width=\"249\"><a href=\"http://www.copy-works.net/\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">November</td>\r\n<td width=\"249\"><a href=\"http://www.missionchildrens.org/\">Mission Childrens’ Hospital</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">December</td>\r\n<td width=\"249\"><a href=\"http://www.wateroakdental.com/\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>\r\nP.O. Box 1325 Brevard, NC  28712</strong>\r\n\r\n<strong>Free Rein Center</strong>\r\n\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Free Rein Calendar','','inherit','closed','open','','125-revision-v1','','','2015-08-06 22:07:53','2015-08-06 22:07:53','',125,'http://freereincenter.com/?p=293',0,'revision','',0),(295,1,'2015-08-06 22:13:28','2015-08-06 22:13:28','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nMark your calendar (hopefully a Free Rein calendar) for Saturday, October 17th and make plans to attend our 2015 \"Mane Event.  It promises to be even better than last years, which hugely enjoyable for all.  The Moonshine Babies will, again, be the featured entertainment and we are planning on having even better live and silent auction items.\r\n\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating almost $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of this year\'s gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2014','','inherit','closed','open','','10-revision-v1','','','2015-08-06 22:13:28','2015-08-06 22:13:28','',10,'http://freereincenter.com/?p=295',0,'revision','',0),(297,1,'2015-08-21 02:59:02','2015-08-21 02:59:02','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nMark your calendar (hopefully a Free Rein calendar) for Saturday, October 17th and make plans to attend our 2015 \"Mane Event.  It promises to be even better than last years, which hugely enjoyable for all.  The Moonshine Babies will, again, be the featured entertainment and we are planning on having even better live and silent auction items.\r\n\r\nContact the office for more information and to make reservations.\r\n\r\nFree Rein’s 2014 Mane Event Gala was a phenomenal success... and a lot of fun for all.  Duke &amp; Bird, our Auctioneers, brought tremendous energy.  Geraldine Dinkins, Mother of one of our student-riders made it real for the audience of more than 110 people with a very moving description about how important Free Rein is to her and her son.  In addition to Connestee Falls\' great food, we enjoyed live music by The Bold Grey Mares and The Moonshine Babies.\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s history, generating more than $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of the 2014 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-08-21 02:59:02','2015-08-21 02:59:02','',10,'http://freereincenter.com/?p=297',0,'revision','',0),(298,1,'2015-08-28 14:23:42','2015-08-28 14:23:42','','Free Rein Newsletter SEP 2015 (email)','','inherit','closed','open','','free-rein-newsletter-sep-2015-email','','','2015-08-28 14:23:42','2015-08-28 14:23:42','',190,'http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf',0,'attachment','application/pdf',0),(299,1,'2015-08-28 15:01:20','2015-08-28 15:01:20','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-08-28 15:01:20','2015-08-28 15:01:20','',190,'http://freereincenter.com/?p=299',0,'revision','',0),(302,1,'2015-09-24 18:37:40','2015-09-24 18:37:40','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nMark your calendar (hopefully a Free Rein calendar) for Saturday, October 17th and make plans to attend our 2015 \"Mane Event.\r\n\r\nLast year’s event was a huge success and we’ve been working hard to make this year’s event even better.  Many folks who attended last year said that it was one of the most enjoyable fund raising events they have attended in years.  Details are shown at left.\r\n\r\nThe Moon Shine Babies were so moved by hearing more about what we do at Free Rein last year that they will not only be playing again... they are donating a house concert to the auction.  The French Broad Dinner Cruise will be back again (thanks to  Jaimes Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).  In addition, Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>) have provided another awesome auction item that we’re calling “Z’s and Zips.”  This great experience combines a night for two in their Running Waters Treehouse, Zipline trips for two, and a picnic dinner (provided by the Free Rein Board).  The Head Chef at Connestee Falls will prepare a meal that will be served in one of our board member\'s beautiful lakeside home in Connestee Falls after a \"Cocktail Cruise\" on Ticoa Lake in their boat.\r\n\r\nIn addition to boat rides, great meals, airplane rides... and a lot of other great, “can’t go home without it” auction items -  Connestee Falls will present their always delectable “small plate buffet\" and attendees will get one complimentary beverage at the bar.  All-in-all, it’s a great opportunity to have lots of fun and “do good” at the same time.\r\n\r\nMake reservations or purchase tickets by contacting the Free Rein Office between 1-5 pm at 828-883-3375.  You may also purchase tickets right here on our website by using the PayPal on the \"Donate Now” link above.  Just be sure to include “2015 Mane Event Gala Tickets for (your names)” in the “add special instructions to recipient block.”\r\n\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items to last year\'s auction.  They combined to make this the most successful gala in Free Rein\'s history, generating more than $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of the 2014 gala included the following.  We will be updating this list to reflect those who supported the 2015 \"Mane Event\" Gala just before the event, so we can show and thank all of them.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-09-24 18:37:40','2015-09-24 18:37:40','',10,'http://freereincenter.com/?p=302',0,'revision','',0),(303,1,'2015-09-24 18:40:40','2015-09-24 18:40:40','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nMark your calendar (hopefully a Free Rein calendar) for Saturday, October 17th &amp; make plans to attend our 2015 \"Mane Event.\r\n\r\nLast year’s event was a huge success and we’ve been working hard to make this year’s event even better.  Many folks who attended last year said that it was one of the most enjoyable fund raising events they have attended in years.  Details are shown at left (just click on the image to enlarge it).\r\n\r\nThe Moon Shine Babies were so moved by hearing more about what we do at Free Rein last year that they will not only be playing again... they are donating a house concert to the auction.  The French Broad Dinner Cruise will be back again (thanks to  Jaimes Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).  In addition, Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>) have provided another awesome auction item that we’re calling “Z’s and Zips.”  This great experience combines a night for two in their Running Waters Treehouse, Zipline trips for two, and a picnic dinner (provided by the Free Rein Board).  Another new item includes the Head Chef at Connestee Falls preparing a meal that will be served in one of our board member\'s beautiful lakeside home in Connestee Falls after a \"Cocktail Cruise\" on Ticoa Lake in their boat.\r\n\r\nIn addition to boat rides, great meals, airplane rides... and a lot of other great, “can’t go home without it” auction items -  Connestee Falls will present their always delectable “small plate buffet\" and attendees will get one complimentary beverage at the bar.  All-in-all, it’s a great opportunity to have lots of fun and “do good” at the same time.\r\n\r\nMake reservations or purchase tickets by contacting the Free Rein Office between 1-5 pm at 828-883-3375.  You may also purchase tickets right here on our website by using the PayPal on the \"Donate Now” link above.  Just be sure to include “2015 Mane Event Gala Tickets for (your names)” in the “add special instructions to recipient block.”\r\n\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items to last year\'s auction.  They combined to make this the most successful gala in Free Rein\'s history, generating more than $30,000 to support the horses and programs at Free Rein.\r\n\r\nSponsors of the 2014 gala included the following.  We will be updating this list to reflect those who supported the 2015 \"Mane Event\" Gala just before the event, so we can show and thank all of them.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser ~ Porsha &amp; Nathan Smith (in memory of her Mom, Vergie Lee)</li>\r\n	<li>Thoroughbred Level - <a href=\"http://www.transylvaniatimes.com\" target=\"_blank\">Transylvania Times</a> ~ <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ <a href=\"http://brevard-nc-3439.theupsstorelocal.com/\" target=\"_blank\">Brevard\'s UPS Store</a></li>\r\n	<li>Mustang Level - <a href=\"http://www.comporium.com\" target=\"_blank\">Comporium</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan\'s Pub</a> ~ Dave &amp; Donna Hunter ~ M-B Industries, Inc. ~ Ronald &amp; Mary Schleich</li>\r\n	<li>Pony Level - <a href=\"http://www.brevardfamilypractice.com\" target=\"_blank\">Brevard Family Practice</a> ~ <a href=\"http://www.domokur.com\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.ecustacu.com\" target=\"_blank\">Ecusta Credit Union</a> ~ Sylvan &amp; Maureen Copeloff</li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Barbara Walter ~ Betsy Alexander~ Bill Lindsay ~ Black Horse Creations ~ Blue Ridge Bakery ~ Body &amp; Soul Therapeutic Massage, Denise Jones ~ Brian Stretcher ~ Brighter Day Coffee ~ Broad Street Wines ~ Carol MacAllister ~ Carter Heyward ~ Celeste Dulin ~ Charlie\'s Tire Center ~ Co-ed Cinema ~ Connestee Falls Golf Club ~ Dollywood ~ Donna Hunter ~ Doug &amp; Paula Poad ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Dugan\'s Pub ~ Ellen Stinchcomb ~ Falls Landing ~ Glass Feather Studio ~ Greg McCathern ~ Headwaters Outfitters ~ Hunters and Gatherers ~ Jaime\'s Creole Brasserie ~ Down to Earth Kayaking ~ Duckpond Pottery ~ KeyLight Media, Albert Dulin ~ Kitty Edwards ~ Kiwi Gelato ~ La Petite Spa ~ Lake Toxaway Country Club ~ Local Color ~ Looking Glass Entertainment ~ Love\'s Jewelry ~ Lowell Steinfeld ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Mountain Home &amp; Mattress ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Peggy McGoldrich ~  Perfect Balance Physical Therapy ~ Peter Mockridge ~ Porsha Smith ~ Attorney Brian Stretcher ~ Sandy Hemmer ~ Stones ~ The Square Root ~ The Sunrise Café ~ Water Oak Dental Group ~ White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-09-24 18:40:40','2015-09-24 18:40:40','',10,'http://freereincenter.com/?p=303',0,'revision','',0),(304,1,'2015-09-24 18:44:03','2015-09-24 18:44:03','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Spring Session was another success, serving 59 individuals.  Our 8-week fall </span><span style=\"line-height: 1.5em;\">session started on September 8th and will end on November 7th (including the week of make-ups we invariably need).  We\'re serving 57 individuals in this session, making 2015 the largest number of people Free Rein has served since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2015-09-24 18:44:03','2015-09-24 18:44:03','',12,'http://freereincenter.com/?p=304',0,'revision','',0),(306,1,'2015-10-28 14:28:32','2015-10-28 14:28:32','','Board Members Porsha and Denise (small)','','inherit','closed','open','','board-members-porsha-and-denise-small','','','2015-10-28 14:28:32','2015-10-28 14:28:32','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small.jpg',0,'attachment','image/jpeg',0),(307,1,'2015-10-28 14:31:14','2015-10-28 14:31:14','','Sabrina Shook','','inherit','closed','open','','sabrina-shook','','','2015-10-28 14:31:14','2015-10-28 14:31:14','',10,'http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook.jpg',0,'attachment','image/jpeg',0),(308,1,'2015-10-28 14:50:45','2015-10-28 14:50:45','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) this year - more than any other year in Free Rein\'s 15 year history.\r\n\r\nThe Moon Shine Babies entertained us with their beautiful music and Chef Craig made sure\r\n\r\nthat we had some great food to enjoy.  Duke and Bird from <a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a> brought their high-energy  \"auctiontainment\" that made giving fun for everyone.  One of our student\'s Moms really<img class=\"wp-image-307 size-thumbnail alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"150\" height=\"150\" /> conveyed the impacts that Free Rein makes in real peoples\' lives when she told the <img class=\"wp-image-306 size-thumbnail alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"150\" height=\"150\" />audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\r\n\r\nBoard members Porsha Smith and Denise Stretcher oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\r\n\r\nGuests had a wide selection of great live and silent auction items that included\r\n<ul>\r\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\r\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\r\n	<li>House concerts by the Moon Shine Babies.</li>\r\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\r\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\r\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\r\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\r\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\r\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\r\n</ul>\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\r\n\r\nSponsors of the 2015 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\r\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\r\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-10-28 14:50:45','2015-10-28 14:50:45','',10,'http://freereincenter.com/?p=308',0,'revision','',0),(309,1,'2015-10-28 14:51:00','2015-10-28 14:51:00','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015.jpg\"><img class=\"alignleft wp-image-294 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Gala-Flyer-2015-300x234.jpg\" alt=\"Gala Flyer - 2015\" width=\"262\" height=\"204\" /></a></h2>\r\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) this year - more than any other year in Free Rein\'s 15 year history.\r\n\r\nThe Moon Shine Babies entertained us with their beautiful music and Chef Craig made sure\r\n\r\nthat we had some great food to enjoy.  Duke and Bird from <a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a> brought their high-energy  \"auctiontainment\" that made giving fun for everyone.  One of our student\'s Moms really<img class=\"wp-image-307 size-thumbnail alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"150\" height=\"150\" /> conveyed the impacts that Free Rein makes in real peoples\' lives when she told the <img class=\"wp-image-306 size-thumbnail alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"150\" height=\"150\" />audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\r\n\r\nBoard members Porsha Smith and Denise Stretcher oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\r\n\r\nGuests had a wide selection of great live and silent auction items that included\r\n<ul>\r\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\r\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\r\n	<li>House concerts by the Moon Shine Babies.</li>\r\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\r\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\r\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\r\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\r\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\r\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\r\n</ul>\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\r\n\r\nSponsors of the 2015 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\r\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\r\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-10-28 14:51:00','2015-10-28 14:51:00','',10,'http://freereincenter.com/?p=309',0,'revision','',0),(310,1,'2015-10-28 15:02:34','2015-10-28 15:02:34','','DSC02805','','inherit','closed','open','','dsc02805','','','2015-10-28 15:02:34','2015-10-28 15:02:34','',10,'http://freereincenter.com/wp-content/uploads/2013/03/DSC02805.jpg',0,'attachment','image/jpeg',0),(311,1,'2015-10-28 15:07:22','2015-10-28 15:07:22','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg\"><img class=\"alignleft wp-image-207\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014-300x298.jpg\" alt=\"\" width=\"144\" height=\"143\" /></a></h2>\r\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) at Free Rein this year - more than any other year in Free Rein\'s 15 year history.<img class=\"wp-image-307  alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"137\" height=\"137\" />\r\n\r\nOne of our student-rider\'s Moms really conveyed the impacts that Free Rein makes in real peoples\' lives when she told the audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that, \"Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\"\r\n\r\nThe Moon Shine Babies entertained Lois &amp; Clark (and the rest of us) us with their beautiful music and Chef Craig made sure<img class=\"alignright wp-image-310 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/DSC02805-201x300.jpg\" alt=\"DSC02805\" width=\"134\" height=\"200\" /> that we had great food to enjoy.  Duke and Bird from <a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a> brought their high-energy <img class=\"wp-image-306  alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"130\" height=\"130\" /> \"auctiontainment\" that made giving fun for everyone.\r\n\r\nBoard members Porsha Smith and Denise Stretcher oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\r\n\r\nGuests had a wide selection of great live and silent auction items that included:\r\n<ul>\r\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\r\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\r\n	<li>House concerts by the Moon Shine Babies.</li>\r\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\r\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\r\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\r\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\r\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\r\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\r\n</ul>\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\r\n\r\nSponsors of the 2015 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\r\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\r\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-10-28 15:07:22','2015-10-28 15:07:22','',10,'http://freereincenter.com/?p=311',0,'revision','',0),(332,1,'2015-12-08 18:52:17','2015-12-08 18:52:17','','Free Rein Newsletter DEC 2015 (email)','','inherit','closed','open','','free-rein-newsletter-dec-2015-email','','','2015-12-08 18:52:17','2015-12-08 18:52:17','',0,'http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf',0,'attachment','application/pdf',0),(312,1,'2015-10-28 15:23:03','2015-10-28 15:23:03','<h2 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014.jpg\"><img class=\"alignleft wp-image-207\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Mane-Event-Logo-2014-300x298.jpg\" alt=\"\" width=\"144\" height=\"143\" /></a></h2>\r\nWow - what a great event the 2015 Mane Event gala was - thanks to our wonderfully supportive sponsors and the caring guests who joined in the fun on Saturday, October 17th.  Many folks who attended said that it was one of the most enjoyable fund raising events they have attended in years.  We broke all previous records for both attendance and money raised.  This is a big reason that we were able to serve more people (110) at Free Rein this year - more than any other year in Free Rein\'s 15 year history.<img class=\"wp-image-307  alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Sabrina-Shook-150x150.jpg\" alt=\"Sabrina Shook\" width=\"137\" height=\"137\" />\r\n\r\nOne of our student-rider\'s Moms really conveyed the impacts that Free Rein makes in real peoples\' lives when she told the audience about what Free Rein has meant to her family and her daughter over the two shorts years her daughter has been participating.  She said that, \"Free Rein is a place where her daughter said her first words and where people only talk about what she can do... and then help make it happen.\"\r\n\r\n<img class=\"alignright wp-image-310 \" src=\"http://freereincenter.com/wp-content/uploads/2013/03/DSC02805-201x300.jpg\" alt=\"DSC02805\" width=\"134\" height=\"200\" />The Moon Shine Babies entertained Lois &amp; Clark (and the rest of us) us with their beautiful music and Chef Craig made sure that we had great food to enjoy.  Duke and Bird (<a title=\"Duke Says Sold\" href=\"http://https://www.facebook.com/Duke-Says-Sold-418897541538370/\" target=\"_blank\">Duke Says Sold</a>) brought their high-energy <img class=\"wp-image-306  alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/Board-Members-Porsha-and-Denise-small-150x150.jpg\" alt=\"Board Members Porsha and Denise (small)\" width=\"130\" height=\"130\" /> \"auctiontainment\" that made giving fun for everyone.\r\n\r\nBoard members Porsha Smith and Denise Stretcher created and oversaw the Horse Hunger Games raffle, which pitted Team Lois and Team Clark in a battle of supporters to determine who would win the prize (no horses, real or stuffed, were harmed in the running of this raffle).\r\n\r\nGuests had a wide selection of great live and silent auction items to choose from, including:\r\n<ul>\r\n	<li>A French Broad Dinner Cruise (thanks to  Jaime\'s Creole Brasserie, Down To Earth Kayaking, and Duckpond Pottery).</li>\r\n	<li>“Z’s and Zips” - an outdoor experience for two, including a night for two in a treehouse, zipline trips, and a picnic dinner provided by the Free Rein Board (thanks to Carl &amp; Lois at<a title=\"Z-Z-Zip - Rosman, NC\" href=\"http://http://www.z-z-zip.com/\" target=\"_blank\"> <strong><em>Z-Z-Zip</em></strong></a> (<em>Brevard\'s #1 Outdoor Activity on TripAdvisor</em>).</li>\r\n	<li>House concerts by the Moon Shine Babies.</li>\r\n	<li>VIP Maestro Package for a Brevard Music Center 2016 Season performance.</li>\r\n	<li>One of Paula Poad\'s beautiful, emotionally engaging Untamed Horse sculptures.</li>\r\n	<li>An original oil painting by local artist Alana Merrell - a real rising young talent in the local art scene.</li>\r\n	<li>A Cocktail Cruise and custom gourmet dinner for four at one of our board member\'s beautiful lakeside home in Connestee Falls.</li>\r\n	<li>A Mackinac Island getaway, including a night\'s lodging, meals, a carriage ride, and more.</li>\r\n	<li>Rounds of golf, a one-hour airplane ride around our beautiful countryside, pet sitting services, beautiful artwork, massages, cooking classes, baskets full of fun, and lots more - there truly was something that almost everyone had to take home.</li>\r\n</ul>\r\n==============================\r\n\r\nWe are profoundly grateful for the generous support of the attendees, event sponsors, and those who donated auction items.  They combined to make this the most successful gala in Free Rein\'s 15 year history, generating almost $38,000 to support the horses and programs at Free Rein and, more importantly, the people - young and older- that we serve.\r\n\r\nSponsors of the 2015 gala included the following.\r\n<ul>\r\n	<li>Champion Level - Peg Hall &amp; Gerry Azzata ~ Carter Heyward &amp; Sue Sasser</li>\r\n	<li>Mustang Level - <a title=\"Domkur Architects\" href=\"http://http://www.domokur.com/\" target=\"_blank\">Domokur Architects</a> ~ <a href=\"http://www.duganspub.com/\" target=\"_blank\">Dave &amp; Donna Hunter ~Dugan\'s Pub</a> ~ <a title=\"M-B INdustries, Inc.\" href=\"http://www.m-bindustries.com/\" target=\"_blank\">M-B Industries, Inc.</a> ~ <a title=\"Mission Health\" href=\"http://http://www.mission-health.org/\" target=\"_blank\">Mission Health</a>  ~ Ronald &amp; Mary Schleich ~ Porsha &amp; Nathan Smith ~ <a title=\"The Transylvania Times\" href=\"http://www.transylvaniatimes.com\" target=\"_blank\">The Transylvania Times</a></li>\r\n	<li>Pony Level - <a href=\"http://www.brianstretcherlaw.com/\" target=\"_blank\">Attorney Brian Stretcher</a> ~ Sylvan &amp; Maureen Copelof ~ Susan Peterson &amp; Tom Mahan ~ Jack &amp; Peggy McGoldrick ~ <a title=\"Carolina Mountain Gastroenterology and Endoscope Center\" href=\"http://http://www.caromtngastro.com/\" target=\"_blank\">Carolina Mountain Gastroenterology and Endoscope Center</a></li>\r\n</ul>\r\nThanks also go out to the following businesses and individuals that provided auction items or in-kind support for the gala.\r\n<ul>\r\n	<li>Alana Merrell ~ Annie \"Mossin\' Annie\" Martin ~ Barbara Walter ~ Big Mike\'s ~ Blue Ridge Bakery ~ Bracken Mountain Bakery ~ Brad Butler ~ Brevard Brewing Co. ~ Brevard Music Center ~ Broad Street Wines ~ Brown Bean Coffee ~ Bullwinkles, Rocky\'s, Moose Tracks ~ Charlie\'s Tire Center ~ Connestee Falls Golf Club ~ Denise Jones ~ Dick Shulman ~ Donna Hunter ~ Dottie Hollum ~ Doug &amp; Paula Poad ~ Down To Earth Kayaking ~ Downtown Chocolates ~Dr. G. Ruffin Benton, III ~ Duke &amp; Bird at Duke Says Sold ~ Duckpond Pottery ~ Egolf Motors ~ Elements Spa ~ Falls Landing ~ Greg McCathern ~ Gretchen Colman ~ Hawg Wild ~ Headwaters Outfitters ~ Jaime\'s Creole Brasserie ~ Jet\'s Pizza ~ Judith and Peter Johnson ~ Kathy King ~ KeyLight Media, Albert Dulin ~ La Petite Spa ~ Lauren D\'Alessandro ~ Kiwi Gelato ~ La Petite Spa ~ Looking Glass Entertainment ~ Lorraine Rourke ~ Love\'s Jewelry ~ Lucinda Dulin ~ Main Street Ltd. ~ Mike Gressel ~ Moon Shine Babies ~ Mountain Quilts ~ Mud Dabbers Pottery &amp; Crafts ~ Nancy Moak ~ Nancy Richards ~ Oskar Blues Brewery ~ Pat Dennis ~ Peter Mockridge ~ The Proper Pot ~ Ron Schleich ~ Shannon Rood ~ Sherwood Forest Golf Club ~ Sierra Nevada Brewery ~ Southern Appalachian Brewing ~ Spice It To A Tea ~ The Square Root ~ Tony\'s Deli ~ The White Squirrel Shop ~ Z-Z- Zip/Carl &amp; Lois Ganner</li>\r\n</ul>\r\n<div>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000;\"> </span><strong>Free Rein Center</strong></p>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','\"Mane Event\" Gala - 2015','','inherit','closed','open','','10-revision-v1','','','2015-10-28 15:23:03','2015-10-28 15:23:03','',10,'http://freereincenter.com/?p=312',0,'revision','',0),(313,1,'2015-10-28 15:24:14','2015-10-28 15:24:14','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Spring Session was another success, serving 59 individuals.  Our 8-week fall </span><span style=\"line-height: 1.5em;\">session started on September 8th and will end on November 7th (including the week of make-ups we invariably need).  We\'re serving 59 individuals in this session, making 2015 the largest number of people Free Rein has served since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','open','','12-revision-v1','','','2015-10-28 15:24:14','2015-10-28 15:24:14','',12,'http://freereincenter.com/?p=313',0,'revision','',0),(314,1,'2015-10-28 15:34:20','2015-10-28 15:34:20','','2016 Calendar Cover & Sponsor Page','','inherit','closed','open','','2016-calendar-cover-sponsor-page','','','2015-10-28 15:34:20','2015-10-28 15:34:20','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page.jpg',0,'attachment','image/jpeg',0),(316,1,'2015-10-28 15:37:11','2015-10-28 15:37:11','','2016 Calendar POS Sign','','inherit','closed','open','','2016-calendar-pos-sign','','','2015-10-28 15:37:11','2015-10-28 15:37:11','',125,'http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign.jpg',0,'attachment','image/jpeg',0),(317,1,'2015-10-28 15:44:16','2015-10-28 15:44:16','<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign.jpg\"><img class=\"wp-image-316 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-POS-Sign-300x211.jpg\" alt=\"2016 Calendar POS Sign\" width=\"263\" height=\"185\" /></a>Our annual calendar is a true labor of love... it\'s a lot of work, but we love to do it.  We love to do it because it is another way we can tell the wonderful stories of Horses Helping Humans Heal - and those humans, too.\r\n\r\nThe 2016 calendars are here.  Printed on heavy stock, easy to write important notes on, and only cost $15 each ~ they make wonderful gifts... and help support Free Rein\'s programs.  Contact the office at the email or phone number below to get one, or look for them at some of the calendar sponsors shown below.\r\n\r\n<strong>Please help thank our annual calendar sponsors</strong> - they believe in what we do and show it by sponsoring months in our calendar - check out their web pages using the links below and thank them for their support of Free Rein with your patronage.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page.jpg\"><img class=\"wp-image-314 size-medium alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2016-Calendar-Cover-Sponsor-Page-191x300.jpg\" alt=\"\" width=\"191\" height=\"300\" /></a>\r\n<table style=\"height: 585px;\" width=\"362\">\r\n<tbody>\r\n<tr>\r\n<td width=\"94\">January</td>\r\n<td width=\"249\"><a title=\"Oskar Blues Brewery\" href=\"http://www.oskarblues.com/\" target=\"_blank\">Oskar Blues Brewery</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">February</td>\r\n<td width=\"249\"><a title=\"Food Matters Market &amp; Cafe\" href=\"http://www.foodmattersmarket.com/\" target=\"_blank\">Food Matters Market</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">March</td>\r\n<td width=\"249\"><a title=\"Dugan\'s Pub\" href=\"http://www.duganspub.com/\" target=\"_blank\">Dugan’s Pub</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">April</td>\r\n<td width=\"249\"><a title=\"Hampton Inn of Brevard/Pisgah Forest\" href=\"http://www.brevardnc.com/businesses/hampton-inn-275-forest-gate-drive-pisgah-forest/\" target=\"_blank\">Hampton Inn of Brevard-Pisgah Forest</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">May</td>\r\n<td width=\"249\"><a title=\"D.D. Bullwinkel\'s ~ Rocky\'s ~ Moose Tracks\" href=\"http://www.ddbullwinkels.com/\" target=\"_blank\">Rocky’s, D.D. Bullwinkel’s, and Moose Tracks</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">June</td>\r\n<td width=\"249\"><a title=\"Looking Glass Realty\" href=\"http://www.lookingglassbrevard.com/\" target=\"_blank\">Looking Glass Realty</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">July</td>\r\n<td width=\"249\"><a title=\"Perfect Balance Physical Therapy\" href=\"http://www.perfectbalancept.com/\" target=\"_blank\">Perfect Balance Physical Therapy</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">August</td>\r\n<td width=\"249\"><a title=\"Charlie\'s Tire Center\" href=\"http://www.charliestirecenter.com/\" target=\"_blank\">Charlie’s Tire Center</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">September</td>\r\n<td width=\"249\"><a title=\"First Citizens Bank\" href=\"http://www.firstcitizens.com/\" target=\"_blank\">First Citizens Bank</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">October</td>\r\n<td width=\"249\"><a title=\"Copy Works\" href=\"http://www.copy-works.net/\" target=\"_blank\">Copy Works</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">November</td>\r\n<td width=\"249\"><a title=\"Broad Street Wines\" href=\"http://http://broadstreetwines.com/\" target=\"_blank\">Broad Street Wines</a></td>\r\n</tr>\r\n<tr>\r\n<td width=\"94\">December</td>\r\n<td width=\"249\"><a title=\"Water Oak Dental Group\" href=\"http://www.wateroakdental.com/\" target=\"_blank\">Water Oak Dental Associates</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>\r\nP.O. Box 1325 Brevard, NC  28712</strong>\r\n\r\n<strong>Free Rein Center</strong>\r\n\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Free Rein Calendar','','inherit','closed','open','','125-revision-v1','','','2015-10-28 15:44:16','2015-10-28 15:44:16','',125,'http://freereincenter.com/?p=317',0,'revision','',0),(319,1,'2015-10-28 19:02:27','2015-10-28 19:02:27','[si-contact-form form=\'1\']','Contact','','inherit','closed','open','','13-autosave-v1','','','2015-10-28 19:02:27','2015-10-28 19:02:27','',13,'http://freereincenter.com/?p=319',0,'revision','',0),(320,1,'2015-10-28 19:11:04','2015-10-28 19:11:04','<img class=\"size-medium wp-image-324 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map-194x300.jpg\" alt=\"Free Rein Map\" width=\"194\" height=\"300\" />We encourage you to come see what we do - first hand - when our classes are in session.  Please call ahead so we can have someone meet you there to let you see what we do and, more importantly, for whom we do it.\r\n\r\nWe operate in a leased facility at Rockbrook Camp for Girls, just 4 miles south of Brevard on Rt. 276 south - just before you get to Mud Dabbers Pottery.  Look for our signs on the right hand side of the road, heading south.\r\n\r\nWe are not in session in June, July, or August - when Rockbrook\'s summer camp is in session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Where To Find Us','','publish','closed','open','','where-to-find-us','','','2015-10-28 19:14:53','2015-10-28 19:14:53','',7,'http://freereincenter.com/?page_id=320',3,'page','',0),(324,1,'2015-10-28 19:08:28','2015-10-28 19:08:28','','Free Rein Map','','inherit','closed','open','','free-rein-map','','','2015-10-28 19:08:28','2015-10-28 19:08:28','',320,'http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map.jpg',0,'attachment','image/jpeg',0),(325,1,'2015-10-28 19:10:49','2015-10-28 19:10:49','<img class=\"size-medium wp-image-324 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map-194x300.jpg\" alt=\"Free Rein Map\" width=\"194\" height=\"300\" />We encourage you to come see what we do - first hand - when lessons are in session.  Please call ahead so we can meet you there and let you see what the words and pictures on this site try to convey about what we do and, more importantly, for whom we do it.\r\n\r\nWe operate in a leased facility at Rockbrook Camp for Girls, just 4 miles south of Brevard on Rt. 276 south - just before you get to Mud Dabbers Pottery.  Look for our signs on the right hand side of the road, heading south.  We are not in session in June, July, or August - when Rockbrook\'s summer camp is in session.\r\n\r\n<a href=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map.jpg\">\r\n\r\n</a>','Where To Find Us','','inherit','closed','open','','320-revision-v1','','','2015-10-28 19:10:49','2015-10-28 19:10:49','',320,'http://freereincenter.com/?p=325',0,'revision','',0),(327,1,'2015-10-28 19:12:05','2015-10-28 19:12:05','<img class=\"size-medium wp-image-324 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map-194x300.jpg\" alt=\"Free Rein Map\" width=\"194\" height=\"300\" />We encourage you to come see what we do - first hand - when lessons are in session.  Please call ahead so we can meet you there and let you see what the words and pictures on this site try to convey about what we do and, more importantly, for whom we do it.\r\n\r\nWe operate in a leased facility at Rockbrook Camp for Girls, just 4 miles south of Brevard on Rt. 276 south - just before you get to Mud Dabbers Pottery.  Look for our signs on the right hand side of the road, heading south.  We are not in session in June, July, or August - when Rockbrook\'s summer camp is in session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Where To Find Us','','inherit','closed','open','','320-revision-v1','','','2015-10-28 19:12:05','2015-10-28 19:12:05','',320,'http://freereincenter.com/?p=327',0,'revision','',0),(326,1,'2015-10-28 19:14:43','2015-10-28 19:14:43','<img class=\"size-medium wp-image-324 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map-194x300.jpg\" alt=\"Free Rein Map\" width=\"194\" height=\"300\" />We encourage you to come see what we do - first hand - when our classes are in session.  Please call ahead so we can have someone meet you there to let you see what we do and, more importantly, for whom we do it.\r\n\r\nWe operate in a leased facility at Rockbrook Camp for Girls, just 4 miles south of Brevard on Rt. 276 south - just before you get to Mud Dabbers Pottery.  Look for our signs on the right hand side of the road, heading south.\r\n\r\nWe are not in session in June, July, or August - when Rockbrook\'s summer camp is in session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Where To Find Us','','inherit','closed','open','','320-autosave-v1','','','2015-10-28 19:14:43','2015-10-28 19:14:43','',320,'http://freereincenter.com/?p=326',0,'revision','',0),(328,1,'2015-10-28 19:14:53','2015-10-28 19:14:53','<img class=\"size-medium wp-image-324 alignright\" src=\"http://freereincenter.com/wp-content/uploads/2015/10/Free-Rein-Map-194x300.jpg\" alt=\"Free Rein Map\" width=\"194\" height=\"300\" />We encourage you to come see what we do - first hand - when our classes are in session.  Please call ahead so we can have someone meet you there to let you see what we do and, more importantly, for whom we do it.\r\n\r\nWe operate in a leased facility at Rockbrook Camp for Girls, just 4 miles south of Brevard on Rt. 276 south - just before you get to Mud Dabbers Pottery.  Look for our signs on the right hand side of the road, heading south.\r\n\r\nWe are not in session in June, July, or August - when Rockbrook\'s summer camp is in session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Where To Find Us','','inherit','closed','open','','320-revision-v1','','','2015-10-28 19:14:53','2015-10-28 19:14:53','',320,'http://freereincenter.com/?p=328',0,'revision','',0),(333,1,'2015-12-08 18:55:15','2015-12-08 18:55:15','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-12-08 18:55:15','2015-12-08 18:55:15','',190,'http://freereincenter.com/?p=333',0,'revision','',0),(334,1,'2015-12-08 18:57:44','2015-12-08 18:57:44','<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','open','','190-revision-v1','','','2015-12-08 18:57:44','2015-12-08 18:57:44','',190,'http://freereincenter.com/?p=334',0,'revision','',0),(337,1,'2016-02-13 15:19:46','2016-02-13 15:19:46','<h2><a title=\"Permanent Link to Home\" href=\"http://freereincenter.com.previewdns.com/\" rel=\"bookmark\"> </a></h2>\r\n<div>\r\n\r\nWinston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”  This is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our organization’s experienced instructors. Our program utilizes the human-horse connection as the therapeutic agent in working with diverse groups ranging in age from childhood to senior citizen status.\r\n\r\nWhile a variety of therapeutic riding programs have grown up around the Western North Carolina area, Free Rein is the only program of its kind in Transylvania County. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify. Free Rein is a 501.c.3 nonprofit organization.\r\n\r\nFor more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Home','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:19:46','2016-02-13 15:19:46','',5,'http://freereincenter.com/?p=337',0,'revision','',0),(340,1,'2016-02-13 15:23:16','2016-02-13 15:23:16','<h2>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h2>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:23:16','2016-02-13 15:23:16','',5,'http://freereincenter.com/?p=340',0,'revision','',0),(341,1,'2016-02-13 15:23:37','2016-02-13 15:23:37','<h3>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h3>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:23:37','2016-02-13 15:23:37','',5,'http://freereincenter.com/?p=341',0,'revision','',0),(342,1,'2016-02-13 15:25:03','2016-02-13 15:25:03','','Student and Horse = LOVE (Small Size)','????????????????????????????????????','inherit','closed','closed','','student-and-horse-love-small-size','','','2016-02-13 15:25:03','2016-02-13 15:25:03','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Student-and-Horse-LOVE-Small-Size.jpg',0,'attachment','image/jpeg',0),(343,1,'2016-02-13 15:25:25','2016-02-13 15:25:25','','Student and Horse = LOVE (Small Size)','????????????????????????????????????','inherit','closed','closed','','student-and-horse-love-small-size-2','','','2016-02-13 15:25:25','2016-02-13 15:25:25','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Student-and-Horse-LOVE-Small-Size-1.jpg',0,'attachment','image/jpeg',0),(344,1,'2016-02-13 15:26:25','2016-02-13 15:26:25','','Campbell (1658 x 1148)','','inherit','closed','closed','','campbell-1658-x-1148','','','2016-02-13 15:26:25','2016-02-13 15:26:25','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Campbell-1658-x-1148.jpg',0,'attachment','image/jpeg',0),(345,1,'2016-02-13 15:26:49','2016-02-13 15:26:49','','Olivia and Mary Stoehr','','inherit','closed','closed','','olivia-and-mary-stoehr','','','2016-02-13 15:26:49','2016-02-13 15:26:49','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Olivia-and-Mary-Stoehr.jpg',0,'attachment','image/jpeg',0),(346,1,'2016-02-13 15:27:02','2016-02-13 15:27:02','','Shyann with Logo','','inherit','closed','closed','','shyann-with-logo','','','2016-02-13 15:27:02','2016-02-13 15:27:02','',0,'http://freereincenter.com/wp-content/uploads/2016/02/Shyann-with-Logo.jpg',0,'attachment','image/jpeg',0),(347,1,'2016-02-13 15:27:22','2016-02-13 15:27:22','','IMG_4432 (small)','','inherit','closed','closed','','img_4432-small-2','','','2016-02-13 15:27:22','2016-02-13 15:27:22','',0,'http://freereincenter.com/wp-content/uploads/2016/02/IMG_4432-small.jpg',0,'attachment','image/jpeg',0),(348,1,'2016-02-13 15:28:12','2016-02-13 15:28:12','','Landon Lindsey','','inherit','closed','closed','','landon-lindsey','','','2016-02-13 15:34:12','2016-02-13 15:34:12','',5,'http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey.jpg',0,'attachment','image/jpeg',0),(349,1,'2016-02-13 15:28:19','2016-02-13 15:28:19','','Lois & Clark with Avrey (2201 x 1506)','','inherit','closed','closed','','lois-clark-with-avrey-2201-x-1506','','','2016-07-10 17:17:20','2016-07-10 17:17:20','',384,'http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg',0,'attachment','image/jpeg',0),(353,1,'2016-02-13 15:35:33','2016-02-13 15:35:33','<h4><a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey.jpg\" rel=\"attachment wp-att-348\"><img class=\"alignright wp-image-348\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey-300x222.jpg\" alt=\"Landon Lindsey\" width=\"235\" height=\"174\" /></a>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h4>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Welcome to Free Rein','','inherit','closed','closed','','5-revision-v1','','','2016-02-13 15:35:33','2016-02-13 15:35:33','',5,'http://freereincenter.com/?p=353',0,'revision','',0),(362,1,'2016-03-16 19:17:58','2016-03-16 19:17:58','','Free Rein Newsletter MAR 2016 (email)','','inherit','closed','closed','','free-rein-newsletter-mar-2016-email','','','2016-03-16 19:17:58','2016-03-16 19:17:58','',0,'http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf',0,'attachment','application/pdf',0),(356,1,'2016-02-13 15:43:54','2016-02-13 15:43:54','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Fall Session was another success, serving more than 60 individuals.  Our 8-week spring 2016 </span><span style=\"line-height: 1.5em;\">session will start on March 14th and end on May 13th (including the week of make-ups we invariably need).  We served more than 110 individuals in 2016, the largest number of people Free Rein has served in a year since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','closed','','12-revision-v1','','','2016-02-13 15:43:54','2016-02-13 15:43:54','',12,'http://freereincenter.com/?p=356',0,'revision','',0),(364,1,'2016-03-16 19:23:36','2016-03-16 19:23:36','','Nickers and News Title Block','','inherit','closed','closed','','nickers-and-news-title-block','','','2016-03-16 19:23:36','2016-03-16 19:23:36','',190,'http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg',0,'attachment','image/jpeg',0),(365,1,'2016-03-16 19:24:38','2016-03-16 19:24:38','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:24:38','2016-03-16 19:24:38','',190,'http://freereincenter.com/?p=365',0,'revision','',0),(369,1,'2016-03-16 19:27:51','2016-03-16 19:27:51','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:27:51','2016-03-16 19:27:51','',190,'http://freereincenter.com/?p=369',0,'revision','',0),(372,1,'2016-03-23 13:23:25','2016-03-23 13:23:25','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','closed','','190-revision-v1','','','2016-03-23 13:23:25','2016-03-23 13:23:25','',190,'http://freereincenter.com/?p=372',0,'revision','',0),(370,1,'2016-03-16 19:28:21','2016-03-16 19:28:21','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Our Quarterly Newsletters','','inherit','closed','closed','','190-revision-v1','','','2016-03-16 19:28:21','2016-03-16 19:28:21','',190,'http://freereincenter.com/?p=370',0,'revision','',0),(373,1,'2016-03-23 13:25:41','2016-03-23 13:25:41','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our 2015 Fall Session was another success, serving more than 60 individuals.  Our 8-week spring 2016 </span><span style=\"line-height: 1.5em;\">session started on March 14th and will end on May 13th (including the week of make-ups we invariably need due to weather).  We served more than 110 individuals in 2016, the largest number of people Free Rein has served in a year since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','closed','','12-revision-v1','','','2016-03-23 13:25:41','2016-03-23 13:25:41','',12,'http://freereincenter.com/?p=373',0,'revision','',0),(404,1,'2016-05-27 19:58:05','2016-05-27 19:58:05','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.  If you want them mailed to another address, you can tell us about that in the special instructions block during your checkout.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-05-27 19:58:05','2016-05-27 19:58:05','',384,'http://freereincenter.com/?p=404',0,'revision','',0),(402,1,'2016-05-27 19:30:40','2016-05-27 19:30:40','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nClick on the \"buy Now\" button below to order your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate the mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please select how many tickets you want to purchase\" />Please select how many tickets you want to purchase</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"One (1) Ticket\">One (1) Ticket $75.00 USD</option>\r\n<option value=\"Two (2) Tickets\">Two (2) Tickets $150.00 USD</option>\r\n<option value=\"Three (3) Tickets\">Three (3) Tickets $225.00 USD</option>\r\n<option value=\"Four (4) Tickets\">Four (4) Tickets $300.00 USD</option>\r\n<option value=\"Five (5) Tickets\">Five (5) Tickets $375.00 USD</option>\r\n<option value=\"Six (6) Tickets\">Six (6) Tickets $450.00 USD</option>\r\n<option value=\"Seven (7) Tickets\">Seven (7) Tickets $525.00 USD</option>\r\n<option value=\"Eight (8) Tickets\">Eight (8) Tickets $600.00 USD</option>\r\n</select></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on1\" type=\"hidden\" value=\"Please specify how you want to receive your tickets:\" />Please specify how you want to receive your tickets:</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os1\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"USD\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-05-27 19:30:40','2016-05-27 19:30:40','',384,'http://freereincenter.com/?p=402',0,'revision','',0),(440,1,'2016-08-29 19:58:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2016-08-29 19:58:58','0000-00-00 00:00:00','',0,'http://freereincenter.com/?p=440',0,'post','',0),(379,1,'2016-03-31 19:32:38','2016-03-31 19:32:38','<strong>&nbsp;Free Rein\'s 2016 Fund Raising Calendar&nbsp;&nbsp;is now available.</strong>\r\n\r\n<strong><a href=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover.jpg\"><img class=\"alignright wp-image-229 size-medium\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/2015-Calendar-Cover-300x232.jpg\" alt=\"\" width=\"300\" height=\"232\"></a></strong>\r\n\r\nOur fourth&nbsp;fund raising calendar is&nbsp;a real work of heart, with lots of high quality photos of our students, our volunteers, and (of course) our horses.&nbsp; It has very high quality art.&nbsp;&nbsp;Thanks to&nbsp;local businesses who sponsored months and a bunch of people who bought days to commemorate birthdays and anniversaries or honor loved ones, Free Rein raised over $3,000 that will help feed the horses and keep making a large, positive impact in the lives of our students and their families.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','News & Events','','inherit','closed','closed','','9-revision-v1','','','2016-03-31 19:32:38','2016-03-31 19:32:38','',9,'http://freereincenter.com/?p=379',0,'revision','',0),(380,1,'2016-03-31 19:36:21','2016-03-31 19:36:21','','Priceless','','inherit','closed','closed','','priceless-1-small','','','2016-03-31 19:44:44','2016-03-31 19:44:44','',0,'http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small.jpg',0,'attachment','image/jpeg',0),(382,1,'2016-03-31 19:45:08','2016-03-31 19:45:08','<h3 style=\"text-align: left;\">&nbsp;</h3>\r\n<h3 style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small.jpg\" rel=\"attachment wp-att-380\"><img class=\"alignnone size-medium wp-image-380\" src=\"http://freereincenter.com/wp-content/uploads/2016/03/Priceless-1-Small-300x185.jpg\" alt=\"Priceless \" width=\"300\" height=\"185\"></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein. &nbsp;Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_donations\"> <input name=\"business\" type=\"hidden\" value=\"freerein1325@gmail.com\"> <input name=\"lc\" type=\"hidden\" value=\"US\"> <input name=\"item_name\" type=\"hidden\" value=\"Free Rein Center\"> <input name=\"no_note\" type=\"hidden\" value=\"0\"> <input name=\"currency_code\" type=\"hidden\" value=\"USD\"> <input name=\"bn\" type=\"hidden\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\"> <input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\"> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\">\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n\r\n</form></div>','Donate Now!','','inherit','closed','closed','','20-revision-v1','','','2016-03-31 19:45:08','2016-03-31 19:45:08','',20,'http://freereincenter.com/?p=382',0,'revision','',0),(381,1,'2016-03-31 19:36:43','2016-03-31 19:36:43','<h3 style=\"text-align: left;\"><a href=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\"><img class=\"aligncenter size-full wp-image-298\" title=\"Free Rein Priceless (2) - small\" src=\"http://freereincenter.com.previewdns.com/wp-content/uploads/2011/05/Free-Rein-Priceless-2-small.jpg\" alt=\"\" width=\"561\" height=\"440\"></a></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Become a friend of Free Rein. &nbsp;Make your tax deductible donation today!</span></h3>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">Together we can make miracles happen.</span></h3>\r\n<div align=\"center\"><form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_donations\"> <input name=\"business\" type=\"hidden\" value=\"freerein1325@gmail.com\"> <input name=\"lc\" type=\"hidden\" value=\"US\"> <input name=\"item_name\" type=\"hidden\" value=\"Free Rein Center\"> <input name=\"no_note\" type=\"hidden\" value=\"0\"> <input name=\"currency_code\" type=\"hidden\" value=\"USD\"> <input name=\"bn\" type=\"hidden\" value=\"PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest\"> <input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\" type=\"image\"> <img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\">\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC &nbsp;28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong></p>\r\n<p style=\"text-align: left;\">&nbsp;</p>\r\n\r\n</form></div>','Donate Now!','','inherit','closed','closed','','20-revision-v1','','','2016-03-31 19:36:43','2016-03-31 19:36:43','',20,'http://freereincenter.com/?p=381',0,'revision','',0),(384,1,'2016-04-12 03:44:09','2016-04-12 03:44:09','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n[caption id=\"attachment_349\" align=\"alignright\" width=\"182\"]<a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\"><img class=\"wp-image-349\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\" alt=\"Lois &amp; Clark with Avrey (2201 x 1506)\" width=\"182\" height=\"124\" /></a> Avery Just Loves Lois &amp; Clark[/caption]\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\n<em><strong>Curious about these new activities?</strong><strong>  </strong><strong>Order your tickets, come to the Mane Event, and check them out.  </strong></em>\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.\r\n\r\n<em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','publish','closed','closed','','2016-mane-event-gala','','','2016-07-10 18:54:23','2016-07-10 18:54:23','',9,'http://freereincenter.com/?page_id=384',0,'page','',0),(390,1,'2016-04-12 04:21:20','2016-04-12 04:21:20','Use the link below to buy your tickets now, using PayPal.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:21:20','2016-04-12 04:21:20','',384,'http://freereincenter.com/?p=390',0,'revision','',0),(389,1,'2016-04-12 04:19:16','2016-04-12 04:19:16','Use the link below to buy your tickets now, using PayPal.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Number of Tickets Desired\">Number of Tickets Desired</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"One Ticket\">One Ticket $75.00 USD</option>\r\n	<option value=\"Two Tickets\">Two Tickets $150.00 USD</option>\r\n	<option value=\"Three Tiickets\">Three Tiickets $225.00 USD</option>\r\n	<option value=\"Four Tickets\">Four Tickets $300.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:19:16','2016-04-12 04:19:16','',384,'http://freereincenter.com/?p=389',0,'revision','',0),(385,1,'2016-04-12 03:44:09','2016-04-12 03:44:09','<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />Buy your tickets to the 2016 Mane Event Gala online, using PayPal, by selecting the number of tickets desired below.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Number of Gala Tickets Desired\" />Number of Gala Tickets Desired</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"One Ticket\">One Ticket $75.00 USD</option>\r\n<option value=\"Two Tickets\">Two Tickets $150.00 USD</option>\r\n<option value=\"Three Tiickets\">Three Tiickets $225.00 USD</option>\r\n<option value=\"Four Tickets\">Four Tickets $300.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"USD\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 03:44:09','2016-04-12 03:44:09','',384,'http://freereincenter.com/?p=385',0,'revision','',0),(387,1,'2016-04-12 03:59:03','2016-04-12 03:59:03','Use the link below to buy your tickets now, using PayPal.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Number of Gala Tickets Desired\" />Number of Gala Tickets Desired</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"One Ticket\">One Ticket $75.00 USD</option>\r\n<option value=\"Two Tickets\">Two Tickets $150.00 USD</option>\r\n<option value=\"Three Tickets\">Three Tiickets $225.00 USD</option>\r\n<option value=\"Four Tickets\">Four Tickets $300.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"USD\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 03:59:03','2016-04-12 03:59:03','',384,'http://freereincenter.com/?p=387',0,'revision','',0),(397,1,'2016-04-26 16:47:13','2016-04-26 16:47:13','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nClick on the \"buy Now\" button below to order your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate the mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets:\" />Please specify how you want to receive your tickets:</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-26 16:47:13','2016-04-26 16:47:13','',384,'http://freereincenter.com/?p=397',0,'revision','',0),(391,1,'2016-04-12 04:25:03','2016-04-12 04:25:03','Use the link below to buy your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to provide your mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:25:03','2016-04-12 04:25:03','',384,'http://freereincenter.com/?p=391',0,'revision','',0),(388,1,'2016-04-12 04:03:42','2016-04-12 04:03:42','Use the link below to buy your tickets now, using PayPal.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Number of Gala Tickets Desired\">Number of Gala Tickets Desired</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"One Ticket\">One Ticket $75.00 USD</option>\r\n	<option value=\"Two Tickets\">Two Tickets $150.00 USD</option>\r\n	<option value=\"Three Tiickets\">Three Tiickets $225.00 USD</option>\r\n	<option value=\"Four Tickets\">Four Tickets $300.00 USD</option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:03:42','2016-04-12 04:03:42','',384,'http://freereincenter.com/?p=388',0,'revision','',0),(392,1,'2016-04-12 04:30:47','2016-04-12 04:30:47','Use the link below to buy your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate the mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"7WZKKSVL9F3SE\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Please specify how you want to receive your tickets:\">Please specify how you want to receive your tickets:</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"Mail them to me\">Mail them to me </option>\r\n	<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala </option>\r\n</select> </td></tr>\r\n</table>\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:30:47','2016-04-12 04:30:47','',384,'http://freereincenter.com/?p=392',0,'revision','',0),(393,1,'2016-04-12 04:35:57','2016-04-12 04:35:57','Click on the \"buy Now\" button below to order your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate the mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets:\" />Please specify how you want to receive your tickets:</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-04-12 04:35:57','2016-04-12 04:35:57','',384,'http://freereincenter.com/?p=393',0,'revision','',0),(405,1,'2016-07-10 18:54:04','2016-07-10 18:54:04','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n[caption id=\"attachment_349\" align=\"alignright\" width=\"182\"]<a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\"><img class=\"wp-image-349\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\" alt=\"Lois &amp; Clark with Avrey (2201 x 1506)\" width=\"182\" height=\"124\" /></a> Avery Just Loves Lois &amp; Clark[/caption]\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\n<em><strong>Curious about these new activities?</strong><strong>  </strong><strong>Order your tickets, come to the Mane Event, and check them out.  </strong></em>\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.\r\n\r\n<em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-autosave-v1','','','2016-07-10 18:54:04','2016-07-10 18:54:04','',384,'http://freereincenter.com/?p=405',0,'revision','',0),(403,1,'2016-05-27 19:40:15','2016-05-27 19:40:15','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nClick on the \"Buy Now\" button below to order your tickets now, using PayPal.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate the mailing address on the checkout page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please select how many tickets you want to purchase\" />Please select how many tickets you want to purchase</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"One (1) Ticket\">One (1) Ticket $75.00 USD</option>\r\n<option value=\"Two (2) Tickets\">Two (2) Tickets $150.00 USD</option>\r\n<option value=\"Three (3) Tickets\">Three (3) Tickets $225.00 USD</option>\r\n<option value=\"Four (4) Tickets\">Four (4) Tickets $300.00 USD</option>\r\n<option value=\"Five (5) Tickets\">Five (5) Tickets $375.00 USD</option>\r\n<option value=\"Six (6) Tickets\">Six (6) Tickets $450.00 USD</option>\r\n<option value=\"Seven (7) Tickets\">Seven (7) Tickets $525.00 USD</option>\r\n<option value=\"Eight (8) Tickets\">Eight (8) Tickets $600.00 USD</option>\r\n</select></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on1\" type=\"hidden\" value=\"Please specify how you want to receive your tickets:\" />Please specify how you want to receive your tickets:</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os1\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"USD\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-05-27 19:40:15','2016-05-27 19:40:15','',384,'http://freereincenter.com/?p=403',0,'revision','',0),(407,1,'2016-05-27 20:03:04','2016-05-27 20:03:04','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-05-27 20:03:04','2016-05-27 20:03:04','',384,'http://freereincenter.com/?p=407',0,'revision','',0),(406,1,'2016-05-27 19:59:50','2016-05-27 19:59:50','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will be able to specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.  If you want them mailed to another address, you can tell us about that in the special instructions block during your checkout.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-05-27 19:59:50','2016-05-27 19:59:50','',384,'http://freereincenter.com/?p=406',0,'revision','',0),(408,1,'2016-06-02 13:38:16','2016-06-02 13:38:16','','2016 French Broad Dinner Cruise (02)','','inherit','closed','closed','','2016-french-broad-dinner-cruise-02','','','2016-06-02 13:38:16','2016-06-02 13:38:16','',0,'http://freereincenter.com/wp-content/uploads/2016/06/2016-French-Broad-Dinner-Cruise-02.jpg',0,'attachment','image/jpeg',0),(409,1,'2016-06-02 15:47:09','2016-06-02 15:47:09','&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using Pa\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-06-02 15:47:09','2016-06-02 15:47:09','',384,'http://freereincenter.com/?p=409',0,'revision','',0),(411,1,'2016-06-02 15:48:31','2016-06-02 15:48:31','The 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-06-02 15:48:31','2016-06-02 15:48:31','',384,'http://freereincenter.com/?p=411',0,'revision','',0),(410,1,'2016-06-02 15:47:42','2016-06-02 15:47:42','&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.\r\n\r\nYou may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-06-02 15:47:42','2016-06-02 15:47:42','',384,'http://freereincenter.com/?p=410',0,'revision','',0),(415,1,'2016-07-10 16:40:48','2016-07-10 16:40:48','','2016 Mane Event','','inherit','closed','closed','','2016-mane-event','','','2016-07-10 16:40:48','2016-07-10 16:40:48','',384,'http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg',0,'attachment','image/jpeg',0),(424,1,'2016-07-10 17:13:07','2016-07-10 17:13:07','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n<em><strong>Curious about these new activities?  </strong></em>Order your tickets, come to the Mane Event, and check them out.  Click on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.  <em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:13:07','2016-07-10 17:13:07','',384,'http://freereincenter.com/?p=424',0,'revision','',0),(422,1,'2016-07-10 17:05:44','2016-07-10 17:05:44','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nThere will be plenty of success stories to share.  Lois and Clark (Free Rein Center\'s \"spokes horses\") will share interviews of friends of Free Rein Center - including riders, parents, volunteers, board members, and instructors.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles.”  Then, poke around the “The Cork Corral” and stop and load up at “The Chuckwagon.”  <em><strong>Curious about what those are?</strong></em>  Order your tickets, come to the Mane Event, and check them out.\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.  <em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:05:44','2016-07-10 17:05:44','',384,'http://freereincenter.com/?p=422',0,'revision','',0),(423,1,'2016-07-10 17:12:20','2016-07-10 17:12:20','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”  <em><strong>Curious about these new activities?  </strong></em>Order your tickets, come to the Mane Event, and check them out.\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.  <em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:12:20','2016-07-10 17:12:20','',384,'http://freereincenter.com/?p=423',0,'revision','',0),(416,1,'2016-07-10 16:44:23','2016-07-10 16:44:23','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.You may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nThis year’s Mane Event will feature plenty of food and drink – Lois insists on the highest quality feed! – and there will be plenty of success stories as well. In a video, Lois and Clark will interview friends of Free Rein, including riders, parents, volunteers, board members and instructors. A parent of a Free Rein rider also will talk about the impact that therapeutic riding has had on their\r\n\r\nLook for some new attractions in the silent auction, said Dr. Denise Stretcher, chair of the gala organizing committee. “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles,” and poke around the “The Cork Corral,” and stop and load up at “The Chuckwagon.” Curious about what those are? Come to the Mane Event and check them out.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 16:44:23','2016-07-10 16:44:23','',384,'http://freereincenter.com/?p=416',0,'revision','',0),(417,1,'2016-07-10 16:44:57','2016-07-10 16:44:57','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  You may order tickets now by emailing or calling us or by using PayPal.\r\n\r\nThis year’s Mane Event will feature plenty of food and drink – Lois insists on the highest quality feed! – and there will be plenty of success stories as well. In a video, Lois and Clark will interview friends of Free Rein, including riders, parents, volunteers, board members and instructors. A parent of a Free Rein rider also will talk about the impact that therapeutic riding has had on their\r\n\r\nLook for some new attractions in the silent auction, said Dr. Denise Stretcher, chair of the gala organizing committee. “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles,” and poke around the “The Cork Corral,” and stop and load up at “The Chuckwagon.” Curious about what those are? Come to the Mane Event and check them out.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 16:44:57','2016-07-10 16:44:57','',384,'http://freereincenter.com/?p=417',0,'revision','',0),(418,1,'2016-07-10 16:45:29','2016-07-10 16:45:29','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  You may order tickets now by emailing or calling us or by using the PayPal button below.\r\n\r\nThis year’s Mane Event will feature plenty of food and drink – Lois insists on the highest quality feed! – and there will be plenty of success stories as well. In a video, Lois and Clark will interview friends of Free Rein, including riders, parents, volunteers, board members and instructors. A parent of a Free Rein rider also will talk about the impact that therapeutic riding has had on their\r\n\r\nLook for some new attractions in the silent auction, said Dr. Denise Stretcher, chair of the gala organizing committee. “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles,” and poke around the “The Cork Corral,” and stop and load up at “The Chuckwagon.” Curious about what those are? Come to the Mane Event and check them out.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 16:45:29','2016-07-10 16:45:29','',384,'http://freereincenter.com/?p=418',0,'revision','',0),(419,1,'2016-07-10 16:48:07','2016-07-10 16:48:07','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend for an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  We expect a \"sellout\" crowd again this year, so reserve tickets now by emailing or calling us or buy them now using the PayPal button below.\r\n\r\nThis year’s Mane Event will feature plenty of food and drink – Lois insists on the highest quality feed! – and there will be plenty of success stories as well. In a video, Lois and Clark will interview friends of Free Rein, including riders, parents, volunteers, board members and instructors. A parent of a Free Rein rider also will talk about the impact that therapeutic riding has had on their\r\n\r\nLook for some new attractions in the silent auction, said Dr. Denise Stretcher, chair of the gala organizing committee. “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles,” and poke around the “The Cork Corral,” and stop and load up at “The Chuckwagon.” Curious about what those are? Come to the Mane Event and check them out.\r\n\r\nTo order your tickets using PayPal, select your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 16:48:07','2016-07-10 16:48:07','',384,'http://freereincenter.com/?p=419',0,'revision','',0),(421,1,'2016-07-10 17:03:36','2016-07-10 17:03:36','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now using the PayPal button below.</strong></em>\r\n\r\nThere will be plenty of success stories to share.  Lois and Clark (Free Rein Center\'s \"spokes horses\") will share interviews of friends of Free Rein Center - including riders, parents, volunteers, board members, and instructors.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles.”  Then, poke around the “The Cork Corral” and stop and load up at “The Chuckwagon.”  <em><strong>Curious about what those are?</strong></em>  Order your tickets, come to the Mane Event, and check them out.\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.  <em><strong>If you don\'t use PayPal, you can call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:03:36','2016-07-10 17:03:36','',384,'http://freereincenter.com/?p=421',0,'revision','',0),(420,1,'2016-07-10 16:59:16','2016-07-10 16:59:16','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held from 6-10 pm on Saturday, October 15, 2016 at Connestee falls\' Overlook Clubhouse.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now using the PayPal button below.</strong></em>\r\n\r\nThere will be plenty of success stories to share.  Lois and Clark (Free Rein Center\'s \"spokes horses\") will share interviews of friends of Free Rein Center - including riders, parents, volunteers, board members, and instructors.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping,” she said, is where you can shop for “Bubbles and Baubles.”  Then, poke around the “The Cork Corral” and stop and load up at “The Chuckwagon.”  <em><strong>Curious about what those are?</strong></em>  Order your tickets, come to the Mane Event, and check them out.\r\n\r\nSelect your preferred delivery method below (mail or \"will call\") and click on the \"Buy Now\" button below.  You will specify how many tickets you want to order during the checkout process.  If you want us to mail your tickets to you, please be sure to validate your mailing address on the checkout page, as that is where we will mail them.  If you don\'t use PayPal, you can call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"7WZKKSVL9F3SE\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Please specify how you want to receive your tickets.\" />Please specify how you want to receive your tickets.</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Please mail them to me\">Please mail them to me</option>\r\n<option value=\"I will pick them up at the Gala\">I will pick them up at the Gala</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</form>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 16:59:16','2016-07-10 16:59:16','',384,'http://freereincenter.com/?p=420',0,'revision','',0),(426,1,'2016-07-10 17:21:32','2016-07-10 17:21:32','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\n[caption id=\"attachment_349\" align=\"alignleft\" width=\"182\"]<a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\"><img class=\"wp-image-349\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\" alt=\"Lois &amp; Clark with Avrey (2201 x 1506)\" width=\"182\" height=\"124\" /></a> Avery Just Loves Lois &amp; Clark[/caption]\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n<em><strong>Curious about these new activities?  </strong></em>Order your tickets, come to the Mane Event, and check them out.  Click on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.  <em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:21:32','2016-07-10 17:21:32','',384,'http://freereincenter.com/?p=426',0,'revision','',0),(427,1,'2016-07-10 17:25:21','2016-07-10 17:25:21','<a href=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event.jpg\"><img class=\"size-medium wp-image-415 alignleft\" src=\"http://freereincenter.com/wp-content/uploads/2016/04/2016-Mane-Event-300x222.jpg\" alt=\"2016 Mane Event\" width=\"300\" height=\"222\" /></a>\r\n\r\n&nbsp;\r\n\r\nThe 2016 Mane Event Gala will be held at Connestee falls\' Overlook Clubhouse from 6-10 pm on Saturday, October 15, 2016.  Please make plans to attend and enjoy an evening of fun, good food, and good fellowship - all in the pursuit of helping the horses that help the humans heal.  <em><strong>We expect a \"sellout\" crowd again this year, so buy your tickets now</strong></em>\r\n\r\nLook for some new attractions in the silent auction, too, said Dr. Denise Stretcher, chair of the gala organizing committee.  “Mane Street Shopping” is new this year and promises to be very exciting.  This is where you can shop for “Bubbles and Baubles,\" poke around the “The Cork Corral,” and load up at “The Chuckwagon.”\r\n\r\n[caption id=\"attachment_349\" align=\"alignright\" width=\"182\"]<a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506.jpg\"><img class=\"wp-image-349\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Lois-Clark-with-Avrey-2201-x-1506-300x205.jpg\" alt=\"Lois &amp; Clark with Avrey (2201 x 1506)\" width=\"182\" height=\"124\" /></a> Avery Just Loves Lois &amp; Clark[/caption]\r\n\r\nLois and Clark (Free Rein Center’s “spokes horses”) will share some short video interviews of some friends of Free Rein Center.  A parent of one of our riders will be there to share a few stories about the positive impacts that therapeutic riding has had on their child... and family.\r\n\r\n<em><strong>Curious about these new activities?</strong><strong>  </strong><strong>Order your tickets, come to the Mane Event, and check them out.  </strong></em>\r\n\r\nClick on the \"Buy Now\" button below to order your tickets via PayPal.  You will specify how many tickets you want to order during the checkout process.\r\n\r\n<em><strong>If you don\'t use PayPal, you may call or email the office to reserve your tickets, but don\'t wait too long... we do expect a sellout again this year.</strong></em>\r\n\r\n&nbsp;\r\n\r\n<input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_US/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325, </strong><strong>Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','2016 Mane Event Gala','','inherit','closed','closed','','384-revision-v1','','','2016-07-10 17:25:21','2016-07-10 17:25:21','',384,'http://freereincenter.com/?p=427',0,'revision','',0),(428,1,'2016-07-10 18:11:36','2016-07-10 18:11:36',' ','','','publish','closed','closed','','428','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',9,'http://freereincenter.com/?p=428',6,'nav_menu_item','',0),(441,1,'2016-08-29 20:15:33','2016-08-29 20:15:33','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nFree Rein Center \"[your-subject]\"\n[your-name] <wordpress@freereincenter.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Free Rein Center (http://freereincenter.com)\nfreerein1325@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nFree Rein Center \"[your-subject]\"\nFree Rein Center <wordpress@freereincenter.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Free Rein Center (http://freereincenter.com)\n[your-email]\nReply-To: freerein1325@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2016-08-29 20:15:33','2016-08-29 20:15:33','',0,'http://freereincenter.com/?post_type=wpcf7_contact_form&p=441',0,'wpcf7_contact_form','',0),(430,1,'2016-07-10 18:11:36','2016-07-10 18:11:36',' ','','','publish','closed','closed','','430','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',9,'http://freereincenter.com/?p=430',5,'nav_menu_item','',0),(431,1,'2016-07-10 18:11:36','2016-07-10 18:11:36','','2015 Mane Event Gala','','publish','closed','closed','','2015-mane-event-gala','','','2016-07-10 18:13:56','2016-07-10 18:13:56','',9,'http://freereincenter.com/?p=431',7,'nav_menu_item','',0),(434,1,'2016-07-20 13:26:15','2016-07-20 13:26:15','','Free Rein Newsletter JUN 2016 (email)','','inherit','closed','closed','','free-rein-newsletter-jun-2016-email','','','2016-07-20 13:26:15','2016-07-20 13:26:15','',0,'http://freereincenter.com/wp-content/uploads/2016/07/Free-Rein-Newsletter-JUN-2016-email.pdf',0,'attachment','application/pdf',0),(435,1,'2016-07-20 13:34:53','2016-07-20 13:34:53','<em><strong><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block.jpg\" rel=\"attachment wp-att-364\"><img class=\"wp-image-364 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2014/07/Nickers-and-News-Title-Block-300x63.jpg\" alt=\"Nickers and News Title Block\" width=\"324\" height=\"68\" /></a></strong></em>\r\n\r\n<em><strong>Nickers &amp; News</strong></em>  is a great way to stay up-to-date about what Free Rein does, who is doing it, and (more importantly) who we serve and why it matters.  If you\'d like to receive new issues by email, please send a request to <a href=\"freereincenter@gmail.com\">freereincenter@gmail.com</a> and we\'ll add you to our ever-growing list.  Please feel free to share them with your friends and family, too.\r\n\r\nClick on a newsletter issue below and it should open in a new window for you to view.  They are in \".pdf\" format, so you will need Adobe Acrobat Reader (free download at <a href=\"http://www.adobe.com/products/reader.html\">www.adobe.com</a>) or some other pdf file reader to view it.  Some browsers (i.e. Google Chrome) and smartphone operating systems (i.e. Android) have .pdf reader applications built in.\r\n\r\nIf you have any trouble opening or viewing them, please let us know so we can fix any issues involved.  <strong><em>Please note that the newsletters are listed below from most recent to oldest issues, with the newest issues at the top of the list.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>2016 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/07/Free-Rein-Newsletter-JUN-2016-email.pdf\">June 2016</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2016/03/Free-Rein-Newsletter-MAR-2016-email.pdf\" target=\"_blank\">March 2016</a></li>\r\n</ul>\r\n<strong>2015 Issues</strong>\r\n<ul>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2015/12/Free-Rein-Newsletter-DEC-2015-email.pdf\" target=\"_blank\">December 2015</a></li>\r\n 	<li><a href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-SEP-2015-email.pdf\">September 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2015/06/Free-Rein-Newsletter-JUN-2015-email.pdf\" target=\"_blank\">June 2015</a></li>\r\n 	<li><a title=\"Free Rein\'s March 2015 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-MAR-2015-email.pdf\" target=\"_blank\">March 2015</a></li>\r\n</ul>\r\n<strong>2014 Issues</strong>\r\n<ul>\r\n 	<li><a title=\"Free Rein\'s December 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/DEC-2014-Free-Rein-Newsletter-email.pdf\" target=\"_blank\">December 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s September 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/SEP-2014-Free-Rein-Newsletter-Email-Version.pdf\" target=\"_blank\">September 2014</a></li>\r\n 	<li><a title=\"Free Rein\'s June 2014 Newsletter\" href=\"http://freereincenter.com/wp-content/uploads/2014/07/Free-Rein-Newsletter-June-2014.pdf\" target=\"_blank\">June 2014</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>','Newsletters','','inherit','closed','closed','','190-revision-v1','','','2016-07-20 13:34:53','2016-07-20 13:34:53','',190,'http://freereincenter.com/?p=435',0,'revision','',0),(436,1,'2016-07-25 22:14:02','2016-07-25 22:14:02','<strong style=\"color: #333333;\">Free Rein offers therapeutic riding lessons during the spring and fall each year. We offer both daytime and after-school lessons Monday-Friday and on Saturday mornings.</strong>\r\n<p style=\"text-align: center;\"><a href=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small.jpg\"><img class=\"size-medium wp-image-176 aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/03/IMG_4432-small-300x176.jpg\" alt=\"IMG_4432 (small)\" width=\"300\" height=\"176\" /></a></p>\r\n<span style=\"line-height: 1.5em;\">Our spring 2016 session was another success, serving 65 individuals.  Our 8-week fall 2016 </span><span style=\"line-height: 1.5em;\">session will start on September 6th and end on November 5th (including the week of make-ups we invariably need due to weather).  We served more than 110 individuals in 2015, the largest number of people Free Rein has served in a year since our humble beginnings in 2000.</span>\r\n\r\nIf you need more information, or would like to apply for one of our programs, please contact Jennifer Rouse, Program Director, at (828) 883-3375 or use the email link below for more information or to request an application packet.\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Lessons','','inherit','closed','closed','','12-revision-v1','','','2016-07-25 22:14:02','2016-07-25 22:14:02','',12,'http://freereincenter.com/?p=436',0,'revision','',0),(3869,1,'2013-10-14 14:25:15','2013-10-14 14:25:15','','browsers','','inherit','closed','closed','','browsers','','','2013-10-14 14:25:15','2013-10-14 14:25:15','',0,'http://freereincenter.com/wp-content/uploads/2013/10/browsers.jpg',0,'attachment','image/jpeg',0),(3870,1,'2013-10-14 14:25:16','2013-10-14 14:25:16','','mobile','','inherit','closed','closed','','mobile','','','2013-10-14 14:25:16','2013-10-14 14:25:16','',0,'http://freereincenter.com/wp-content/uploads/2013/10/mobile.jpg',0,'attachment','image/jpeg',0),(438,1,'2016-07-26 18:56:20','2016-07-26 18:56:20','<h4><a href=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey.jpg\" rel=\"attachment wp-att-348\"><img class=\"alignright wp-image-348\" src=\"http://freereincenter.com/wp-content/uploads/2016/02/Landon-Lindsey-300x222.jpg\" alt=\"Landon Lindsey\" width=\"235\" height=\"174\" /></a>Winston Churchill once said, “There is something about the outside of a horse that is good for the inside of a (person).”</h4>\r\nThis is certainly true at Free Rein Center, where horses and humans are partners in learning. Free Rein instructors, volunteers, and horses help children and adults with a wide range of disabilities and challenges like Autism, Cerebral Palsy, ADHD, and many others. Participants gain increased flexibility, balance and coordination, enhanced gross and fine motor skills, improved posture, and self confidence.\r\n<div>\r\n\r\nFree Rein also offers courses for adults and children on such themes as spirituality, grief, and confidence-building.  Free Rein is a member center of Professional Association of Therapeutic Horsemanship International (PATH International), which also certifies our compassionate and experienced instructors. We capitalize on the human-horse connection as the therapeutic agent in working with individuals and diverse groups of all ages.\r\n\r\nFree Rein is the only PATH center in Transylvania, Henderson, or Buncombe Counties and we serve people from all three of those counties. Free Rein lesson fees are kept low to assure participation by all who might benefit, and scholarship assistance is available to all who qualify.\r\n\r\nFree Rein is a qualified 501(C)(3) nonprofit organization. For more information on Free Rein news, and events, or to find out about lessons or volunteering, click on the tabs above, or to get in touch with us, visit our Contact page.\r\n\r\n&nbsp;\r\n\r\n<strong>Free Rein Center</strong>\r\n<strong>P.O. Box 1325 Brevard, NC  28712</strong>\r\n<strong>828-883-3375</strong>\r\n<strong><a href=\"mailto:freerein1325@gmail.com\">Email us</a></strong>\r\n\r\n</div>','Welcome to Free Rein','','inherit','closed','closed','','5-autosave-v1','','','2016-07-26 18:56:20','2016-07-26 18:56:20','',5,'http://freereincenter.com/?p=438',0,'revision','',0),(3873,1,'2013-10-14 14:52:19','2013-10-14 14:52:19','','slide_2','','inherit','closed','closed','','slide_2','','','2013-10-14 14:52:19','2013-10-14 14:52:19','',0,'http://freereincenter.com/wp-content/uploads/2012/11/slide_2.jpg',0,'attachment','image/jpeg',0),(3875,1,'2013-10-14 14:54:12','2013-10-14 14:54:12','','slide_1','','inherit','closed','closed','','slide_1','','','2013-10-14 14:54:12','2013-10-14 14:54:12','',0,'http://freereincenter.com/wp-content/uploads/2013/10/slide_1.jpg',0,'attachment','image/jpeg',0),(3887,1,'2013-10-14 15:24:44','2013-10-14 15:24:44','','blog_3','','inherit','closed','closed','','blog_3','','','2013-10-14 15:24:44','2013-10-14 15:24:44','',11530,'http://freereincenter.com/wp-content/uploads/2012/07/blog_3.jpg',0,'attachment','image/jpeg',0),(3888,1,'2013-10-14 15:27:49','2013-10-14 15:27:49','','blog_4','','inherit','closed','closed','','blog_4','','','2013-10-14 15:27:49','2013-10-14 15:27:49','',211,'http://freereincenter.com/wp-content/uploads/2012/07/blog_4.jpg',0,'attachment','image/jpeg',0),(3889,1,'2013-10-14 15:36:28','2013-10-14 15:36:28','','blog_5','','inherit','closed','closed','','blog_5','','','2013-10-14 15:36:28','2013-10-14 15:36:28','',11528,'http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg',0,'attachment','image/jpeg',0),(3890,1,'2013-10-14 15:39:01','2013-10-14 15:39:01','','blog_6','','inherit','closed','closed','','blog_6','','','2013-10-14 15:39:01','2013-10-14 15:39:01','',11527,'http://freereincenter.com/wp-content/uploads/2012/07/blog_6.jpg',0,'attachment','image/jpeg',0),(3891,1,'2013-10-14 15:47:29','2013-10-14 15:47:29','','portfolio_1','','inherit','closed','closed','','portfolio_1','','','2013-10-14 15:47:29','2013-10-14 15:47:29','',11483,'http://freereincenter.com/wp-content/uploads/2012/07/portfolio_1.jpg',0,'attachment','image/jpeg',0),(3892,1,'2013-10-14 15:47:30','2013-10-14 15:47:30','','portfolio_2','','inherit','closed','closed','','portfolio_2','','','2013-10-14 15:47:30','2013-10-14 15:47:30','',11483,'http://freereincenter.com/wp-content/uploads/2012/07/portfolio_2.jpg',0,'attachment','image/jpeg',0),(3893,1,'2013-10-14 15:56:29','2013-10-14 15:56:29','','portfolio_3','','inherit','closed','closed','','portfolio_3','','','2013-10-14 15:56:29','2013-10-14 15:56:29','',11478,'http://freereincenter.com/wp-content/uploads/2012/07/portfolio_3.jpg',0,'attachment','image/jpeg',0),(3894,1,'2013-10-14 16:11:59','2013-10-14 16:11:59','','portfolio_4','','inherit','closed','closed','','portfolio_4','','','2013-10-14 16:11:59','2013-10-14 16:11:59','',11481,'http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg',0,'attachment','image/jpeg',0),(3895,1,'2013-10-14 16:22:36','2013-10-14 16:22:36','','portfolio_5','','inherit','closed','closed','','portfolio_5','','','2013-10-14 16:22:36','2013-10-14 16:22:36','',11479,'http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg',0,'attachment','image/jpeg',0),(3896,1,'2013-10-14 16:26:10','2013-10-14 16:26:10','','logo-footer','','inherit','closed','closed','','logo-footer','','','2013-10-14 16:26:10','2013-10-14 16:26:10','',0,'http://freereincenter.com/wp-content/uploads/2013/10/logo-footer.gif',0,'attachment','image/gif',0),(3904,1,'2013-10-14 16:35:15','2013-10-14 16:35:15','','features','','inherit','closed','closed','','features-2-2','','','2013-10-14 16:35:15','2013-10-14 16:35:15','',54,'http://freereincenter.com/wp-content/uploads/2013/10/features.jpg',0,'attachment','image/jpeg',0),(3936,1,'2013-10-14 16:48:57','2013-10-14 16:48:57','','portfolio_6','','inherit','closed','closed','','portfolio_6','','','2013-10-14 16:48:57','2013-10-14 16:48:57','',0,'http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg',0,'attachment','image/jpeg',0),(3938,1,'2013-10-14 16:51:33','2013-10-14 16:51:33','','client','','inherit','closed','closed','','client','','','2013-10-14 16:51:33','2013-10-14 16:51:33','',0,'http://freereincenter.com/wp-content/uploads/2013/10/client.png',0,'attachment','image/png',0),(3978,1,'2013-10-14 17:25:44','2013-10-14 17:25:44','','bkgd1','','inherit','closed','closed','','bkgd1','','','2013-10-14 17:25:44','2013-10-14 17:25:44','',0,'http://freereincenter.com/wp-content/uploads/2013/10/bkgd1.jpg',0,'attachment','image/jpeg',0),(4010,1,'2013-10-14 17:54:54','2013-10-14 17:54:54','','person','','inherit','closed','closed','','person','','','2013-10-14 17:54:54','2013-10-14 17:54:54','',3717,'http://freereincenter.com/wp-content/uploads/2013/10/person.jpg',0,'attachment','image/jpeg',0),(4053,1,'2013-10-14 18:33:09','2013-10-14 18:33:09','','elastic1','','inherit','closed','closed','','elastic1','','','2013-10-14 18:33:09','2013-10-14 18:33:09','',0,'http://freereincenter.com/wp-content/uploads/2013/10/elastic1.jpg',0,'attachment','image/jpeg',0),(4054,1,'2013-10-14 18:33:10','2013-10-14 18:33:10','','elastic2','','inherit','closed','closed','','elastic2','','','2013-10-14 18:33:10','2013-10-14 18:33:10','',0,'http://freereincenter.com/wp-content/uploads/2013/10/elastic2.jpg',0,'attachment','image/jpeg',0),(4069,1,'2013-10-14 19:18:59','2013-10-14 19:18:59','','ipad','','inherit','closed','closed','','ipad','','','2013-10-14 19:18:59','2013-10-14 19:18:59','',0,'http://freereincenter.com/wp-content/uploads/2013/10/ipad.png',0,'attachment','image/png',0),(4073,1,'2013-10-14 21:35:42','2013-10-14 21:35:42','','slide_5','','inherit','closed','closed','','slide_5','','','2013-10-14 21:35:42','2013-10-14 21:35:42','',0,'http://freereincenter.com/wp-content/uploads/2013/10/slide_5.jpg',0,'attachment','image/jpeg',0),(4074,1,'2013-10-15 15:07:22','2013-10-15 15:07:22','','slide_3','','inherit','closed','closed','','slide_3','','','2013-10-15 15:07:22','2013-10-15 15:07:22','',0,'http://freereincenter.com/wp-content/uploads/2013/10/slide_3.jpg',0,'attachment','image/jpeg',0),(4076,1,'2013-10-15 15:37:30','2013-10-15 15:37:30','','slide_4','','inherit','closed','closed','','slide_4','','','2013-10-15 15:37:30','2013-10-15 15:37:30','',0,'http://freereincenter.com/wp-content/uploads/2013/10/slide_4.jpg',0,'attachment','image/jpeg',0),(4077,1,'2013-10-15 15:58:16','2013-10-15 15:58:16','','ipad2','','inherit','closed','closed','','ipad2','','','2013-10-15 15:58:16','2013-10-15 15:58:16','',0,'http://freereincenter.com/wp-content/uploads/2013/10/ipad2.png',0,'attachment','image/png',0),(4078,1,'2013-10-15 15:58:16','2013-10-15 15:58:16','','iphone','','inherit','closed','closed','','iphone','','','2013-10-15 15:58:16','2013-10-15 15:58:16','',0,'http://freereincenter.com/wp-content/uploads/2013/10/iphone.png',0,'attachment','image/png',0),(4079,1,'2013-10-15 15:58:16','2013-10-15 15:58:16','','mac','','inherit','closed','closed','','mac','','','2013-10-15 15:58:16','2013-10-15 15:58:16','',0,'http://freereincenter.com/wp-content/uploads/2013/10/mac.png',0,'attachment','image/png',0),(4094,1,'2013-10-15 18:18:55','2013-10-15 18:18:55','','logo','','inherit','closed','closed','','logo','','','2013-10-15 18:18:55','2013-10-15 18:18:55','',0,'http://freereincenter.com/wp-content/uploads/2013/10/logo.png',0,'attachment','image/png',0),(4113,1,'2013-10-16 15:37:31','2013-10-16 15:37:31','','shirt','','inherit','closed','closed','','shirt','','','2013-10-16 15:37:31','2013-10-16 15:37:31','',4112,'http://freereincenter.com/wp-content/uploads/2013/10/shirt.jpg',0,'attachment','image/jpeg',0),(4395,1,'2013-12-11 17:59:21','2013-12-11 17:59:21','','portfolio_5','','inherit','closed','closed','','portfolio_5-2','','','2013-12-11 17:59:21','2013-12-11 17:59:21','',3705,'http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg',0,'attachment','image/jpeg',0),(4396,1,'2013-12-11 17:59:22','2013-12-11 17:59:22','','portfolio_6','','inherit','closed','closed','','portfolio_6-2','','','2013-12-11 17:59:22','2013-12-11 17:59:22','',3705,'http://freereincenter.com/wp-content/uploads/2013/05/portfolio_6.jpg',0,'attachment','image/jpeg',0),(4438,1,'2013-12-16 16:12:46','2013-12-16 16:12:46','','col_image_2','','inherit','closed','closed','','col_image_2','','','2013-12-16 16:12:46','2013-12-16 16:12:46','',0,'http://freereincenter.com/wp-content/uploads/2013/12/col_image_2.jpg',0,'attachment','image/jpeg',0),(4439,1,'2013-12-16 16:12:47','2013-12-16 16:12:47','','col_image_3','','inherit','closed','closed','','col_image_3','','','2013-12-16 16:12:47','2013-12-16 16:12:47','',0,'http://freereincenter.com/wp-content/uploads/2013/12/col_image_3.jpg',0,'attachment','image/jpeg',0),(4460,1,'2013-12-16 16:37:08','2013-12-16 16:37:08','','col_image_5','','inherit','closed','closed','','col_image_5','','','2013-12-16 16:37:08','2013-12-16 16:37:08','',3073,'http://freereincenter.com/wp-content/uploads/2013/12/col_image_5.jpg',0,'attachment','image/jpeg',0),(4488,1,'2014-03-10 15:50:58','2014-03-10 15:50:58','','logo2x','','inherit','closed','closed','','logo2x','','','2014-03-10 15:50:58','2014-03-10 15:50:58','',0,'http://freereincenter.com/wp-content/uploads/2013/02/logo2x.png',0,'attachment','image/png',0),(4586,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_1','','inherit','closed','closed','','a2_1','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_1.png',0,'attachment','image/png',0),(4587,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_2','','inherit','closed','closed','','a2_2','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_2.png',0,'attachment','image/png',0),(4588,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_3','','inherit','closed','closed','','a2_3','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_3.png',0,'attachment','image/png',0),(4589,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_4','','inherit','closed','closed','','a2_4','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_4.png',0,'attachment','image/png',0),(4590,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_5','','inherit','closed','closed','','a2_5','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_5.png',0,'attachment','image/png',0),(4591,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','A2_6','','inherit','closed','closed','','a2_6','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/A2_6.png',0,'attachment','image/png',0),(4592,1,'2014-06-16 17:24:30','2014-06-16 17:24:30','','bg6b','','inherit','closed','closed','','bg6b','','','2014-06-16 17:24:30','2014-06-16 17:24:30','',0,'http://freereincenter.com/wp-content/uploads/2014/06/bg6b.jpg',0,'attachment','image/jpeg',0),(4593,1,'2014-06-16 17:24:31','2014-06-16 17:24:31','','circle','','inherit','closed','closed','','circle','','','2014-06-16 17:24:31','2014-06-16 17:24:31','',0,'http://freereincenter.com/wp-content/uploads/2014/06/circle.png',0,'attachment','image/png',0),(4594,1,'2014-06-16 17:24:31','2014-06-16 17:24:31','','html5-color','','inherit','closed','closed','','html5-color','','','2014-06-16 17:24:31','2014-06-16 17:24:31','',0,'http://freereincenter.com/wp-content/uploads/2014/06/html5-color.png',0,'attachment','image/png',0),(4597,1,'2014-06-16 17:24:33','2014-06-16 17:24:33','','ls_bkgd_color1','','inherit','closed','closed','','ls_bkgd_color1','','','2014-06-16 17:24:33','2014-06-16 17:24:33','',0,'http://freereincenter.com/wp-content/uploads/2014/06/ls_bkgd_color1.jpg',0,'attachment','image/jpeg',0),(4598,1,'2014-06-16 17:24:34','2014-06-16 17:24:34','','ls_bkgd_dark','','inherit','closed','closed','','ls_bkgd_dark','','','2014-06-16 17:24:34','2014-06-16 17:24:34','',0,'http://freereincenter.com/wp-content/uploads/2014/06/ls_bkgd_dark.jpg',0,'attachment','image/jpeg',0),(4605,1,'2014-06-16 17:24:41','2014-06-16 17:24:41','','vimeo-color','','inherit','closed','closed','','vimeo-color','','','2014-06-16 17:24:41','2014-06-16 17:24:41','',0,'http://freereincenter.com/wp-content/uploads/2014/06/vimeo-color.png',0,'attachment','image/png',0),(4606,1,'2014-06-16 17:24:41','2014-06-16 17:24:41','','youtube-color','','inherit','closed','closed','','youtube-color','','','2014-06-16 17:24:41','2014-06-16 17:24:41','',0,'http://freereincenter.com/wp-content/uploads/2014/06/youtube-color.png',0,'attachment','image/png',0),(4610,1,'2014-06-16 17:25:18','2014-06-16 17:25:18','','box21.png','','inherit','closed','closed','','box21-png','','','2014-06-16 17:25:18','2014-06-16 17:25:18','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/box21.png',0,'attachment','image/png',0),(9734,1,'2014-06-16 17:56:06','2014-06-16 17:56:06','','wood_bkgd','','inherit','closed','closed','','wood_bkgd','','','2014-06-16 17:56:06','2014-06-16 17:56:06','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/wood_bkgd.jpg',0,'attachment','image/jpeg',0),(9736,1,'2014-06-16 18:00:39','2014-06-16 18:00:39','','bkgd13','','inherit','closed','closed','','bkgd13','','','2014-06-16 18:00:39','2014-06-16 18:00:39','',0,'http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg',0,'attachment','image/jpeg',0),(9750,1,'2014-06-16 18:10:21','2014-06-16 18:10:21','','page_bkgd8','','inherit','closed','closed','','page_bkgd8','','','2014-06-16 18:10:21','2014-06-16 18:10:21','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/page_bkgd8.jpg',0,'attachment','image/jpeg',0),(9754,1,'2014-06-16 18:13:47','2014-06-16 18:13:47','','bkgd_bw2','','inherit','closed','closed','','bkgd_bw2','','','2014-06-16 18:13:47','2014-06-16 18:13:47','',0,'http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg',0,'attachment','image/jpeg',0),(9756,1,'2014-06-16 18:16:27','2014-06-16 18:16:27','','two_third_1','','inherit','closed','closed','','two_third_1','','','2014-06-16 18:16:27','2014-06-16 18:16:27','',0,'http://freereincenter.com/wp-content/uploads/2014/06/two_third_1.jpg',0,'attachment','image/jpeg',0),(9757,1,'2014-06-16 18:16:27','2014-06-16 18:16:27','','two_third_2','','inherit','closed','closed','','two_third_2','','','2014-06-16 18:16:27','2014-06-16 18:16:27','',0,'http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg',0,'attachment','image/jpeg',0),(9762,1,'2014-06-16 18:31:05','2014-06-16 18:31:05','','browsers1','','inherit','closed','closed','','browsers1','','','2014-06-16 18:31:05','2014-06-16 18:31:05','',0,'http://freereincenter.com/wp-content/uploads/2014/06/browsers1.jpg',0,'attachment','image/jpeg',0),(9763,1,'2014-06-16 18:31:55','2014-06-16 18:31:55','','mobile','','inherit','closed','closed','','mobile-2','','','2014-06-16 18:31:55','2014-06-16 18:31:55','',0,'http://freereincenter.com/wp-content/uploads/2014/06/mobile.jpg',0,'attachment','image/jpeg',0),(9782,1,'2014-06-16 18:59:07','2014-06-16 18:59:07','','combo_text','','inherit','closed','closed','','combo_text','','','2014-06-16 18:59:07','2014-06-16 18:59:07','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/combo_text.jpg',0,'attachment','image/jpeg',0),(9783,1,'2014-06-16 18:59:07','2014-06-16 18:59:07','','demo_content','','inherit','closed','closed','','demo_content','','','2014-06-16 18:59:07','2014-06-16 18:59:07','',0,'http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png',0,'attachment','image/png',0),(9784,1,'2014-06-16 18:59:08','2014-06-16 18:59:08','','woo_feature2','','inherit','closed','closed','','woo_feature2','','','2014-06-16 18:59:08','2014-06-16 18:59:08','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/woo_feature2.jpg',0,'attachment','image/jpeg',0),(9790,1,'2014-06-16 19:05:07','2014-06-16 19:05:07','','shortcodes2','','inherit','closed','closed','','shortcodes2','','','2014-06-16 19:05:07','2014-06-16 19:05:07','',3073,'http://freereincenter.com/wp-content/uploads/2014/06/shortcodes2.jpg',0,'attachment','image/jpeg',0),(9791,1,'2014-06-16 19:05:43','2014-06-16 19:05:43','','full_width','','inherit','closed','closed','','full_width','','','2014-06-16 19:05:43','2014-06-16 19:05:43','',3662,'http://freereincenter.com/wp-content/uploads/2014/06/full_width.png',0,'attachment','image/png',0),(10155,1,'2014-08-14 22:32:55','2014-08-14 22:32:55','','port_infos','','inherit','closed','closed','','port_infos','','','2014-08-14 22:32:55','2014-08-14 22:32:55','',10075,'http://freereincenter.com/wp-content/uploads/2014/08/port_infos.jpg',0,'attachment','image/jpeg',0),(10654,1,'2014-09-05 14:57:55','2014-09-05 14:57:55','','header_infos','','inherit','closed','closed','','header_infos','','','2014-09-05 14:57:55','2014-09-05 14:57:55','',10646,'http://freereincenter.com/wp-content/uploads/2014/09/header_infos.jpg',0,'attachment','image/jpeg',0),(10667,1,'2014-09-05 15:30:05','2014-09-05 15:30:05','','slider_infos','','inherit','closed','closed','','slider_infos','','','2014-09-05 15:30:05','2014-09-05 15:30:05','',10643,'http://freereincenter.com/wp-content/uploads/2014/09/slider_infos.jpg',0,'attachment','image/jpeg',0),(10698,1,'2014-10-21 14:08:23','2014-10-21 14:08:23','','blog_1','','inherit','closed','closed','','blog_1','','','2014-10-21 14:08:23','2014-10-21 14:08:23','',3628,'http://freereincenter.com/wp-content/uploads/2013/05/blog_1.jpg',0,'attachment','image/jpeg',0),(10699,1,'2014-10-21 14:08:24','2014-10-21 14:08:24','','blog_2','','inherit','closed','closed','','blog_2','','','2014-10-21 14:08:24','2014-10-21 14:08:24','',3628,'http://freereincenter.com/wp-content/uploads/2013/05/blog_2.jpg',0,'attachment','image/jpeg',0),(10713,1,'2014-11-19 15:55:33','2014-11-19 15:55:33','','home_slider','','inherit','closed','closed','','home_slider','','','2014-11-19 15:55:33','2014-11-19 15:55:33','',0,'http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg',0,'attachment','image/jpeg',0),(11294,1,'2015-04-12 09:31:13','2015-04-12 09:31:13','','logo','','inherit','closed','closed','','logo-2','','','2015-04-12 09:31:13','2015-04-12 09:31:13','',0,'http://freereincenter.com/wp-content/uploads/2015/04/logo.png',0,'attachment','image/png',0),(11419,1,'2015-09-29 17:51:09','2015-09-29 17:51:09','','avada_collage_design1-compressor','','inherit','closed','closed','','avada_collage_design1-compressor','','','2015-09-29 17:51:09','2015-09-29 17:51:09','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg',0,'attachment','image/jpeg',0),(11420,1,'2015-09-29 17:52:11','2015-09-29 17:52:11','','avada_build_unique-compressor','','inherit','closed','closed','','avada_build_unique-compressor','','','2015-09-29 17:52:11','2015-09-29 17:52:11','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/avada_build_unique-compressor.png',0,'attachment','image/png',0),(11421,1,'2015-09-29 17:52:35','2015-09-29 17:52:35','','not_required1-compressor','','inherit','closed','closed','','not_required1-compressor','','','2015-09-29 17:52:35','2015-09-29 17:52:35','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/not_required1-compressor.png',0,'attachment','image/png',0),(11426,1,'2015-09-29 17:54:49','2015-09-29 17:54:49','','avada_intro_img2-compressor','','inherit','closed','closed','','avada_intro_img2-compressor','','','2015-09-29 17:54:49','2015-09-29 17:54:49','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/avada_intro_img2-compressor.jpg',0,'attachment','image/jpeg',0),(11428,1,'2015-09-29 19:07:23','2015-09-29 19:07:23','','agency22-compressor','','inherit','closed','closed','','agency22-compressor','','','2015-09-29 19:07:23','2015-09-29 19:07:23','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/agency22-compressor.jpg',0,'attachment','image/jpeg',0),(11429,1,'2015-09-29 19:07:24','2015-09-29 19:07:24','','app1-compressor','','inherit','closed','closed','','app1-compressor','','','2015-09-29 19:07:24','2015-09-29 19:07:24','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/app1-compressor.jpg',0,'attachment','image/jpeg',0),(11430,1,'2015-09-29 19:07:26','2015-09-29 19:07:26','','architecture1-compressor','','inherit','closed','closed','','architecture1-compressor','','','2015-09-29 19:07:26','2015-09-29 19:07:26','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/architecture1-compressor.jpg',0,'attachment','image/jpeg',0),(11431,1,'2015-09-29 19:07:27','2015-09-29 19:07:27','','cafe2-compressor','','inherit','closed','closed','','cafe2-compressor','','','2015-09-29 19:07:27','2015-09-29 19:07:27','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/cafe2-compressor.jpg',0,'attachment','image/jpeg',0),(11432,1,'2015-09-29 19:07:28','2015-09-29 19:07:28','','church-compressor','','inherit','closed','closed','','church-compressor','','','2015-09-29 19:07:28','2015-09-29 19:07:28','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/church-compressor.jpg',0,'attachment','image/jpeg',0),(11433,1,'2015-09-29 19:07:29','2015-09-29 19:07:29','','classic-compressor','','inherit','closed','closed','','classic-compressor','','','2015-09-29 19:07:29','2015-09-29 19:07:29','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/classic-compressor.jpg',0,'attachment','image/jpeg',0),(11434,1,'2015-09-29 19:07:30','2015-09-29 19:07:30','','fashion1-compressor','','inherit','closed','closed','','fashion1-compressor','','','2015-09-29 19:07:30','2015-09-29 19:07:30','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/fashion1-compressor.jpg',0,'attachment','image/jpeg',0),(11435,1,'2015-09-29 19:07:31','2015-09-29 19:07:31','','hosting-compressor','','inherit','closed','closed','','hosting-compressor','','','2015-09-29 19:07:31','2015-09-29 19:07:31','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/hosting-compressor.jpg',0,'attachment','image/jpeg',0),(11436,1,'2015-09-29 19:07:32','2015-09-29 19:07:32','','hotel-compressor','','inherit','closed','closed','','hotel-compressor','','','2015-09-29 19:07:32','2015-09-29 19:07:32','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/hotel-compressor.jpg',0,'attachment','image/jpeg',0),(11437,1,'2015-09-29 19:07:34','2015-09-29 19:07:34','','law-compressor','','inherit','closed','closed','','law-compressor','','','2015-09-29 19:07:34','2015-09-29 19:07:34','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/law-compressor.jpg',0,'attachment','image/jpeg',0),(11438,1,'2015-09-29 19:07:35','2015-09-29 19:07:35','','lifestyle-compressor','','inherit','closed','closed','','lifestyle-compressor','','','2015-09-29 19:07:35','2015-09-29 19:07:35','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/lifestyle-compressor.jpg',0,'attachment','image/jpeg',0),(11439,1,'2015-09-29 19:07:36','2015-09-29 19:07:36','','travel-compressor','','inherit','closed','closed','','travel-compressor','','','2015-09-29 19:07:36','2015-09-29 19:07:36','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/travel-compressor.jpg',0,'attachment','image/jpeg',0),(11444,1,'2015-09-29 19:13:39','2015-09-29 19:13:39','','design_desc-compressor','','inherit','closed','closed','','design_desc-compressor','','','2015-09-29 19:13:39','2015-09-29 19:13:39','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/design_desc-compressor.jpg',0,'attachment','image/jpeg',0),(11445,1,'2015-09-29 19:14:19','2015-09-29 19:14:19','','fusion_core_sm1-compressor','','inherit','closed','closed','','fusion_core_sm1-compressor','','','2015-09-29 19:14:19','2015-09-29 19:14:19','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg',0,'attachment','image/jpeg',0),(11447,1,'2015-09-29 19:18:40','2015-09-29 19:18:40','','ipads-compressor','','inherit','closed','closed','','ipads-compressor','','','2015-09-29 19:18:40','2015-09-29 19:18:40','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/ipads-compressor.jpg',0,'attachment','image/jpeg',0),(11448,1,'2015-09-29 19:19:35','2015-09-29 19:19:35','','wood_dark_bkgd_bw1-compressor','','inherit','closed','closed','','wood_dark_bkgd_bw1-compressor','','','2015-09-29 19:19:35','2015-09-29 19:19:35','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/wood_dark_bkgd_bw1-compressor.jpg',0,'attachment','image/jpeg',0),(11449,1,'2015-09-29 19:20:15','2015-09-29 19:20:15','','review_bkgd321-compressor','','inherit','closed','closed','','review_bkgd321-compressor','','','2015-09-29 19:20:15','2015-09-29 19:20:15','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/review_bkgd321-compressor.jpg',0,'attachment','image/jpeg',0),(11450,1,'2015-09-29 19:20:56','2015-09-29 19:20:56','','review_tf1-compressor','','inherit','closed','closed','','review_tf1-compressor','','','2015-09-29 19:20:56','2015-09-29 19:20:56','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png',0,'attachment','image/png',0),(11452,1,'2015-09-29 19:24:13','2015-09-29 19:24:13','','support_review-compressor','','inherit','closed','closed','','support_review-compressor','','','2015-09-29 19:24:13','2015-09-29 19:24:13','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/support_review-compressor.png',0,'attachment','image/png',0),(11456,1,'2015-09-29 19:26:57','2015-09-29 19:26:57','','avada_graphic_24','','inherit','closed','closed','','avada_graphic_24','','','2015-09-29 19:26:57','2015-09-29 19:26:57','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/avada_graphic_24.jpg',0,'attachment','image/jpeg',0),(11457,1,'2015-09-29 19:27:49','2015-09-29 19:27:49','','woo_commerce_feature-compressor','','inherit','closed','closed','','woo_commerce_feature-compressor','','','2015-09-29 19:27:49','2015-09-29 19:27:49','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/woo_commerce_feature-compressor.jpg',0,'attachment','image/jpeg',0),(11458,1,'2015-09-29 19:28:03','2015-09-29 19:28:03','','fusion_builder2-compressor','','inherit','closed','closed','','fusion_builder2-compressor','','','2015-09-29 19:28:03','2015-09-29 19:28:03','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/fusion_builder2-compressor.png',0,'attachment','image/png',0),(11459,1,'2015-09-29 19:28:16','2015-09-29 19:28:16','','layouts_white-compressor','','inherit','closed','closed','','layouts_white-compressor','','','2015-09-29 19:28:16','2015-09-29 19:28:16','',10709,'http://freereincenter.com/wp-content/uploads/2014/11/layouts_white-compressor.jpg',0,'attachment','image/jpeg',0),(11462,1,'2015-09-29 19:34:39','2015-09-29 19:34:39','','demos_cropped1-compressor','','inherit','closed','closed','','demos_cropped1-compressor','','','2015-09-29 19:34:39','2015-09-29 19:34:39','',11304,'http://freereincenter.com/wp-content/uploads/2015/04/demos_cropped1-compressor.png',0,'attachment','image/png',0),(11471,1,'2016-04-08 19:41:10','2016-04-08 19:41:10','','','','inherit','closed','closed','','11471','','','2016-04-08 19:41:10','2016-04-08 19:41:10','',0,'http://freereincenter.com/wp-content/uploads/2016/04/logo.png',0,'attachment','image/png',0),(11474,1,'2016-04-13 13:07:58','2016-04-13 13:07:58','','logo_white_big','','inherit','closed','closed','','logo_white_big','','','2016-04-13 13:07:58','2016-04-13 13:07:58','',0,'http://freereincenter.com/wp-content/uploads/2016/04/logo_white_big.png',0,'attachment','image/png',0),(11475,1,'2016-08-29 20:19:35','2016-08-29 20:19:35','','Features','','publish','closed','closed','','features','','','2016-08-29 20:19:35','2016-08-29 20:19:35','',0,'http://freereincenter.com/?p=11475',114,'nav_menu_item','',0),(11476,1,'2016-08-29 20:19:35','2016-08-29 20:19:35','','Elements','','publish','closed','closed','','elements','','','2016-08-29 20:19:35','2016-08-29 20:19:35','',0,'http://freereincenter.com/?p=11476',117,'nav_menu_item','',0),(11477,1,'2016-08-29 20:19:35','2016-08-29 20:19:35','','Pages','','publish','closed','closed','','pages','','','2016-08-29 20:19:35','2016-08-29 20:19:35','',0,'http://freereincenter.com/?p=11477',46,'nav_menu_item','',0),(11478,1,'2012-07-31 16:54:02','2012-07-31 16:54:02','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricie est justos.','Mauris Fringilla Voluts','','publish','open','closed','','mauris-fringilla-voluts','','','2012-07-31 16:54:02','2012-07-31 16:54:02','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=191',0,'avada_portfolio','',0),(11479,1,'2012-07-31 16:43:55','2012-07-31 16:43:55','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim ornare nisi, vitae mattis nulla ante id dui. Ut lectus purus, commodo et tincidunt vel, interdum sed lectus. Vestibulum adipiscing tempor nisi id elementu sadips ipsums dolores uns fugiats gravida nam elit vols nulla dolores amet untras sitsers.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.','Suspende Phara Urna','','publish','open','closed','','suspendisse-pharetra-urna','','','2012-07-31 16:43:55','2012-07-31 16:43:55','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=192',0,'avada_portfolio','',0),(11480,1,'2012-07-31 16:44:55','2012-07-31 16:44:55','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim ornare nisi, vitae mattis nulla ante id dui. Ut lectus purus, commodo et tincidunt vel, interdum sed lectus. Vestibulum adipiscing tempor nisi id elementu sadips ipsums dolores uns fugiats gravida nam elit vols nulla dolores amet untras sitsers.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.','Curabitur Malada Lorem','','publish','open','closed','','curabitur-malesuada-lorem','','','2012-07-31 16:44:55','2012-07-31 16:44:55','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=193',0,'avada_portfolio','',0),(11481,1,'2012-07-31 16:53:51','2012-07-31 16:53:51','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim ornare nisi, vitae mattis nulla ante id dui. Ut lectus purus, commodo et tincidunt vel, interdum sed lectus. Vestibulum adipiscing tempor nisi id elementu sadips ipsums dolores uns fugiats gravida nam elit vols nulla dolores amet untras sitsers.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus. Proin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorems metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum.','Proin Sodales Quam','','publish','open','closed','','proin-sodales-quam','','','2012-07-31 16:53:51','2012-07-31 16:53:51','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=195',0,'avada_portfolio','',0),(11482,1,'2012-07-31 16:53:09','2012-07-31 16:53:09','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim ornare nisi, vitae mattis nulla ante id dui. Ut lectus purus, commodo et tincidunt vel, interdum sed lectus.','Nam Viverra Euismod','','publish','open','closed','','nam-viverra-euismod','','','2012-07-31 16:53:09','2012-07-31 16:53:09','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=196',0,'avada_portfolio','',0),(11483,1,'2012-07-31 17:00:15','2012-07-31 17:00:15','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae. Sed dui lorem, adipiscing in adipiscing et, interdum nec metus. Mauris ultricies, justo eu convallis placerat, felis enim ornare nisi, vitae mattis nulla ante id dui. Ut lectus purus, commodo et tincidunt vel, interdum sed lectus. Vestibulum adipiscing tempor nisi id elementu sadips ipsums dolores uns fugiats gravida nam elit vols nulla dolores amet untras sitsers.\n\nCras id erat arcu. Suspendisse nec lacinia eros. Morbi in nisl ut quam vulputate elementum. Donec ornare, turpis eget rhoncus pharetra, nunc augue porta orci, eu volutpat enim nisi ac risus. Proin a tortor id orci fermentum sollicitudin tincidunt in magna. Quisque semper, leo a malesuada dictum, orci massa blandit diam, nec porttitor quam nunc laoreet odio. Maecenas sed felis ante, non cursus justo. Vivamus semper euismod vulputate. Praesent a hendrerit sapien. Sed dapibus leo rutrum lorem convallis et commodo urna tempus. Quisque hendrerit imperdiet erat id fringilla. Vivamus vitae odio nisi, sit amet pellentesque justo. Pellentesque enim enim, ultricies sit amet blandit a, sagittis vel dolor. Cras lorem purus, posuere sed hendrerit ac, varius vel eros. Quisque nisl ante, posuere pulvinar bibendum a, malesuada sed mi.','Donec Ore Turis Eget','','publish','open','closed','','donec-ornare-turpis-eget','','','2012-07-31 17:00:15','2012-07-31 17:00:15','',0,'http://avada.theme-fusion.com/?post_type=avada_portfolio&amp;p=198',0,'avada_portfolio','',0),(1876,1,'2012-11-27 14:42:55','2012-11-27 14:42:55','Vestibulum egestas pharetra felis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse dignissim bibendum lectus, quis ornare tortor elementum quis. Aenean semper vehicula elementum. Nulla massa est, faucibus non semper quis, laoreet et sapien. Suspendisse massa odio, aliquet nec commodo et, venenatis ut velit. Pellentesque mauris lorem, dictum vitae feugiat quis, placerat vitae eros. Vestibulum quis purus vel urna convallis faucibus. Etiam vel mauris nisi, non vehicula est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aliquam leo lorem, tincidunt sed molestie id, egestas feugiat quam. Aliquam sed ipsum non nulla tempus mollis elementum ac dolor. Curabitur ac metus et enim pellentesque pellentesque. Nunc ultrices, felis elementum iaculis semper, libero turpis semper erat, in dapibus nisi urna vel mi. Nulla sed nibh libero. Maecenas a libero mauris, sed malesuada dui.\n\nNunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.','Class aptent taciti sociosqu ad litora torquent per conubia nostra pers.','','publish','open','closed','','class-aptent-taciti-sociosqu-ad-litora-torquent-per-conubia-nostra-pers','','','2012-11-27 14:42:55','2012-11-27 14:42:55','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1876',0,'avada_faq','',0),(1877,1,'2012-11-27 14:43:24','2012-11-27 14:43:24','<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\"><img class=\"alignleft size-medium wp-image-3889\" style=\"padding-bottom: 10px;\" alt=\"blog_5\" src=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2012/07/blog_5-300x171.jpg\" width=\"300\" height=\"171\" class=\"alignleft size-full wp-image-1662\" style=\"padding-bottom: 10px;\" /></a>Nunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.\n\nAliquam commodo gravida magna eget tincidunt. Fusce nisi augue, malesuada in commodo quis, euismod quis orci. Integer vitae nisl non augue ullamcorper blandit. Donec vitae nibh ipsum, vitae semper orci. Nunc sed elit in nulla auctor imperdiet. Ut a nisl sit amet odio accumsan laoreet. Sed pharetra lectus in arcu pellentesque et iaculis justo pellentesque. Etiam laoreet sodales sapien, id congue magna malesuada ut. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.','Fusce nisi augue, malesuada in commodo quis, euismod quis orci integer vitae nisl non.','','publish','open','closed','','fusce-nisi-augue-malesuada-in-commodo-quis-euismod-quis-orci-integer-vitae-nisl-non','','','2012-11-27 14:43:24','2012-11-27 14:43:24','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1877',0,'avada_faq','',0),(1878,1,'2012-11-27 14:43:43','2012-11-27 14:43:43','Nunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.\n\nAliquam commodo gravida magna eget tincidunt. Fusce nisi augue, malesuada in commodo quis, euismod quis orci. Integer vitae nisl non augue ullamcorper blandit. Donec vitae nibh ipsum, vitae semper orci. Nunc sed elit in nulla auctor imperdiet. Ut a nisl sit amet odio accumsan laoreet. Sed pharetra lectus in arcu pellentesque et iaculis justo pellentesque. Etiam laoreet sodales sapien, id congue magna malesuada ut. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\n','Integer vitae nisl non augue ullamcorper blandit donec vitae nibh ipsums.','','publish','open','closed','','integer-vitae-nisl-non-augue-ullamcorper-blandit-donec-vitae-nibh-ipsums','','','2012-11-27 14:43:43','2012-11-27 14:43:43','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1878',0,'avada_faq','',0),(1879,1,'2012-11-27 14:44:05','2012-11-27 14:44:05','<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\"><img class=\"alignleft size-medium wp-image-3889\" style=\"padding-bottom: 10px;\" alt=\"blog_5\" src=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2012/07/blog_5-300x171.jpg\" width=\"300\" height=\"171\" class=\"alignleft size-full wp-image-1662\" style=\"padding-bottom: 10px;\" /></a>Nunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.\n\nAliquam commodo gravida magna eget tincidunt. Fusce nisi augue, malesuada in commodo quis, euismod quis orci. Integer vitae nisl non augue ullamcorper blandit. Donec vitae nibh ipsum, vitae semper orci. Nunc sed elit in nulla auctor imperdiet. Ut a nisl sit amet odio accumsan laoreet. Sed pharetra lectus in arcu pellentesque et iaculis justo pellentesque. Etiam laoreet sodales sapien, id congue magna malesuada ut. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.','Vivamus ullamcorper nim sit amet consequat laoreet tortor tortor dictum egestas urna.','','publish','open','closed','','vivamus-ullamcorper-nim-sit-amet-consequat-laoreet-tortor-tortor-dictum-egestas-urna','','','2012-11-27 14:44:05','2012-11-27 14:44:05','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1879',0,'avada_faq','',0),(1880,1,'2012-11-27 14:44:31','2012-11-27 14:44:31','Nunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.\n\nAliquam commodo gravida magna eget tincidunt. Fusce nisi augue, malesuada in commodo quis, euismod quis orci. Integer vitae nisl non augue ullamcorper blandit. Donec vitae nibh ipsum, vitae semper orci. Nunc sed elit in nulla auctor imperdiet. Ut a nisl sit amet odio accumsan laoreet. Sed pharetra lectus in arcu pellentesque et iaculis justo pellentesque. Etiam laoreet sodales sapien, id congue magna malesuada ut. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.','Fusce nisi malesuada in commodo quis, euismod quis orci on augue ullamcorpers.','','publish','open','closed','','fusce-nisi-malesuada-in-commodo-quis-euismod-quis-orci-onteger-vitae-nisl-non-augue-ullamcorpers','','','2012-11-27 14:44:31','2012-11-27 14:44:31','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1880',0,'avada_faq','',0),(1881,1,'2012-11-27 14:44:54','2012-11-27 14:44:54','<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\"><img class=\"alignleft size-medium wp-image-3889\" style=\"padding-bottom: 10px;\" alt=\"blog_5\" src=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2012/07/blog_5-300x171.jpg\" width=\"300\" height=\"171\" class=\"alignleft size-full wp-image-1662\" style=\"padding-bottom: 10px;\" /></a>Nunc euismod lobortis massa, id sollicitudin augue auctor vel. Integer ornare sollicitudin turpis vitae vestibulum. Curabitur faucibus ullamcorper lorem sed egestas. Pellentesque laoreet auctor eros, et consectetur eros auctor eget. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.\n\nAliquam commodo gravida magna eget tincidunt. Fusce nisi augue, malesuada in commodo quis, euismod quis orci. Integer vitae nisl non augue ullamcorper blandit. Donec vitae nibh ipsum, vitae semper orci. Nunc sed elit in nulla auctor imperdiet. Ut a nisl sit amet odio accumsan laoreet. Sed pharetra lectus in arcu pellentesque et iaculis justo pellentesque. Etiam laoreet sodales sapien, id congue magna malesuada ut. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.Vestibulum tortor nisi, egestas eget molestie tincidunt, tempus sed justo. Vestibulum ultricies auctor varius. Fusce consequat tincidunt dui, ac adipiscing turpis adipiscing pulvinar. Aliquam erat volutpat. Vivamus eleifend rhoncus nulla in laoreet.','Curabitur eget leo at velit imperdiet varius eu ipsum vitae velit congue iaculis vitaes.','','publish','open','closed','','curabitur-eget-leo-at-velit-imperdiet-varius-eu-ipsum-vitae-velit-congue-iaculis-vitaes','','','2012-11-27 14:44:54','2012-11-27 14:44:54','',0,'http://avada.theme-fusion.comtest/?post_type=avada_faq&amp;p=1881',0,'avada_faq','',0),(11484,1,'2016-04-13 15:04:11','2016-04-13 15:04:11','','megamenu_image','','inherit','closed','closed','','megamenu_image','','','2016-04-13 15:04:11','2016-04-13 15:04:11','',0,'http://freereincenter.com/wp-content/uploads/2016/04/megamenu_image.jpg',0,'attachment','image/jpeg',0),(11485,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Sliders','','publish','closed','closed','','sliders','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11485',35,'nav_menu_item','',0),(11486,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','404 Page','','publish','closed','closed','','404-page','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11486',63,'nav_menu_item','',0),(11487,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Shop Shortcodes','','publish','closed','closed','','shop-shortcodes','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11487',106,'nav_menu_item','',0),(11488,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Portfolio','','publish','closed','closed','','portfolio','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11488',69,'nav_menu_item','',0),(11489,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Blog','','publish','closed','closed','','blog','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11489',92,'nav_menu_item','',0),(11490,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Home','','publish','closed','closed','','home','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11490',1,'nav_menu_item','',0),(11491,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Intro','','publish','closed','closed','','intro','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11491',1,'nav_menu_item','',0),(11492,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Features','','publish','closed','closed','','features-2','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11492',2,'nav_menu_item','',0),(11493,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Pages','','publish','closed','closed','','pages-2','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11493',3,'nav_menu_item','',0),(11494,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','WooCommerce','','publish','closed','closed','','woocommerce','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11494',4,'nav_menu_item','',0),(11495,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Demo','','publish','closed','closed','','demo','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11495',5,'nav_menu_item','',0),(11496,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Shortcodes','','publish','closed','closed','','shortcodes','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11496',6,'nav_menu_item','',0),(11497,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Reviews','','publish','closed','closed','','reviews','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11497',7,'nav_menu_item','',0),(11498,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Home Samples 1','','publish','closed','closed','','home-samples-1','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11498',2,'nav_menu_item','',0),(11499,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Home Samples 2','','publish','closed','closed','','home-samples-2','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11499',11,'nav_menu_item','',0),(11500,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Home Samples 3','','publish','closed','closed','','home-samples-3','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11500',19,'nav_menu_item','',0),(11501,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Home Samples 4','','publish','closed','closed','','home-samples-4','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11501',27,'nav_menu_item','',0),(11502,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Fusion Slider','','publish','closed','closed','','fusion-slider','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11502',39,'nav_menu_item','',0),(11503,1,'2016-08-29 20:19:36','2016-08-29 20:19:36','','Author Page','','publish','closed','closed','','author-page','','','2016-08-29 20:19:36','2016-08-29 20:19:36','',0,'http://freereincenter.com/?p=11503',67,'nav_menu_item','',0),(11504,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Search Results Page','','publish','closed','closed','','search-results-page','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11504',68,'nav_menu_item','',0),(11505,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Grid Style','','publish','closed','closed','','grid-style','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11505',71,'nav_menu_item','',0),(11506,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Classic Style','','publish','closed','closed','','classic-style','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11506',77,'nav_menu_item','',0),(11507,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Text Style','','publish','closed','closed','','text-style','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11507',84,'nav_menu_item','',0),(11508,1,'2012-07-30 23:32:32','2012-07-30 23:32:32','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"This fully responsive slider ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Parallax Scrolling Effect\" title_back=\"Eye Opening Effects\" text_front=\"Beautiful butter smooth scrolling effect makes your slider stand out.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Parallax scrolling effect gives your slider the extra oomph it needs.[/flip_box][flip_box title_front=\"Full Size Control\" title_back=\"Have No Limits\" text_front=\"Fusion Slider can handle all sizes with ease giving you full control of your slider.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From fixed width to full width to full screen, Fusion Slider handles it all.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255,255,255,.05)|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"center\" class=\"\" id=\"\"]What Else You Got?[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"]\n<a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\"></a>[/modal][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"\" paddingtop=\"60px\" paddingbottom=\"30px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"rgba(000,000,000,.1)\" class=\"\" id=\"\"]Incredible Shortcodes Give You The Tools You Need[/title][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusionslider name=\"avada_small\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets sadips ips. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum. Quia dolor sit amet, consectetur, adipisci amets uns. Rumes fugats untras. Etha rums ser quidem nemo minima rerums unsers sadips rerums.\n\n[popover title=\"Popover Heading\" title_bg_color=\"\" content=\"Nice little popover shortcode for added content, triggered by click or hover. And you can control the popover position.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<strong>Hey, What\'s This Cool Text Right Here Do?</strong>[/popover][/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team[/li_item][li_item icon=\"\"]Constant Updates Added With New Features[/li_item][li_item icon=\"\"]Power Elite Author Gives You Peace of Mind[/li_item][li_item icon=\"\"]Join The Growing Community of Avada Users[/li_item][/checklist][/one_third][separator style_type=\"single\" top_margin=\"45\" bottom_margin=\"60\" sep_color=\"rgba(000,000,000,.1)\" icon=\"\" width=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.1)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"95\"]95%[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.1)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"]Users[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.1)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"][fontawesome icon=\"fa-heart\" circle=\"no\" size=\"large\" iconcolor=\"#f54646\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.1)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"]Avada[/counter_circle][/counters_circle][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"60px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"\" class=\"\" id=\"\"]Amazing Flexibility To Build Beautiful, Unique Websites[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolors nemis onis.\n\n[popover title=\"Social Icons\" title_bg_color=\"\" content=\"Customize the colors globally or individually, boxed or unboxed, tooltip position, drag and drop sorting and more!\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<strong>Keep In Touch With Our Incredibly Customizable Social Icons! 25 Total Social Networks</strong>[/popover][/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"#\" forrst=\"#\" myspace=\"\" skype=\"\" paypal=\"#\" dropbox=\"#\" soundcloud=\"\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"2\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"31\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/two_third][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][/fullwidth]','Home Version 2','','publish','open','open','','home-2','','','2012-07-30 23:32:32','2012-07-30 23:32:32','',0,'http://avada.theme-fusion.com/?page_id=6',0,'page','',0),(11509,1,'2012-07-30 23:33:19','2012-07-30 23:33:19','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"large\" class=\"\" id=\"\"][/blog]','Blog Large','','publish','open','open','','blog','','','2012-07-30 23:33:19','2012-07-30 23:33:19','',0,'http://avada.theme-fusion.com/?page_id=9',0,'page','',0),(11510,1,'2012-07-31 02:06:57','2012-07-31 02:06:57','[one_third last=\"no\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" stylecolor=\"\" align=\"center\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Design\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Responsive Design</h2>\nAvada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Resize your browser window to see the action.[/fusion_text][/one_third][one_third last=\"no\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" stylecolor=\"\" align=\"center\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Sliders\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Powerful Sliders</h2>\nAvada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider. Each slider has its unique offerings to build beautiful sliders.[/fusion_text][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" stylecolor=\"\" align=\"center\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Options\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Incredible Options</h2>\nAvada is loaded with useful options that allow you to quickly and easily customize your site. These options allow you to create unique layouts.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][fusion_tabs layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Tab Title 1\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns.  Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae.[/fusion_tab][fusion_tab title=\"Tab Title 2\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns.  Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae amets dolores.[/fusion_tab][fusion_tab title=\"Tab Title 3\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns.  Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae amets dolores.[/fusion_tab][/fusion_tabs][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Us[/title][checklist icon=\"fa-check\" iconcolor=\"#ffffff\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Unlimited color options with a backed color picker, including the gradients[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Happy Clients[/title][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients]','Home Version 3','','publish','open','open','','home-version-3','','','2012-07-31 02:06:57','2012-07-31 02:06:57','',0,'http://avada.theme-fusion.com/?page_id=35',0,'page','',0),(54,1,'2012-07-31 02:10:38','2012-07-31 02:10:38','[fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2013/10/features.jpg\" alt=\"features\" width=\"700\" height=\"300\" class=\"aligncenter size-full wp-image-3904\" />[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Sample Feature Page[/title][fusion_text]This is s sample feature page from our live demo. You will notice that there are a lot more on our live demo, but they are all the exact same page, just with a different image and text. For size purpsoes, we only included a few of these, including this sample page.[/fusion_text]','Sample Feature Page','','publish','open','open','','great-support','','','2012-07-31 02:10:38','2012-07-31 02:10:38','',80,'http://avada.theme-fusion.com/?page_id=54',0,'page','',0),(11511,1,'2012-07-31 02:15:48','2012-07-31 02:15:48','[one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Welcome To Avada[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore dolore magnm aliquam quaerat voluptatem. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.[/fusion_text][/one_half][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Who Is Avada[/title][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"We Can Deliver On Projects\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Crazy Skills[/title][progress percentage=\"90\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Web Design[/progress][progress percentage=\"95\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]HTML/CSS[/progress][progress percentage=\"85\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Graphic Design[/progress][progress percentage=\"75\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]WordPress[/progress][/one_half][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Meet Our Team[/title][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo ipsums.[/person][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo ipsums.[/person][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo ipsums.[/person][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Happy Clients[/title][images picture_size=\"fixed\" autoplay=\"no\" columns=\"6\" column_spacing=\"13\" scroll_items=\"\" show_nav=\"yes\" mouse_scroll=\"no\" border=\"yes\" lightbox=\"no\" class=\"\" id=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][image link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/images]','About Us Page 1','','publish','open','open','','about-us-2','','','2012-07-31 02:15:48','2012-07-31 02:15:48','',0,'http://avada.theme-fusion.com/?page_id=69',0,'page','',0),(11512,1,'2012-07-31 02:16:22','2012-07-31 02:16:22','[one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada’s Four Areas of Expertise[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut nemis omnis fugats vitaes nemo minima sadips labore dolore magnam aliuam quaerat voluptatem.[/fusion_text][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][separator style_type=\"single\" top_margin=\"\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"4\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Screen Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that help your content stand out to your viewers!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We include the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site for your online presence.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you freedom.[/flip_box][flip_box title_front=\"Unlimited Colors\" title_back=\"Change Any Element\" text_front=\"Avada offers color options for every element you see, take control of your colors.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-tint\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We included a backend color picker for unlimited color options. Anything can be changed, including gradients![/flip_box][/flip_boxes][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada’s Other Services[/title][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"margin-bottom: 30px;\">Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores tium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archgit, magnam aliquam quaerat voluptatem. Asunt in anim uis aute irure dolor ins. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes ser.</p>[/fusion_text][/one_fourth][three_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"no\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Service 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniams sit.[/fusion_tab][fusion_tab title=\"Service 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniams sit.[/fusion_tab][fusion_tab title=\"\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniams sit.[/fusion_tab][fusion_tab title=\"Service 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniams sit.[/fusion_tab][/fusion_tabs][/three_fourth][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Us[/title][fusion_text]<ul class=\"arrow\">\n<ul class=\"arrow\">\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section &amp; blog section</li>\n	<li>We offer free support because we care about your site as much as you do.</li>\n</ul>\n</ul>\n</ul>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]What Client\'s Say[/title][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme! Highly recommended![/testimonial][testimonial name=\"Aajami\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][testimonial name=\"Gojcus\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_half]','Services Page 1','','publish','open','open','','services','','','2012-07-31 02:16:22','2012-07-31 02:16:22','',0,'http://avada.theme-fusion.com/?page_id=72',0,'page','',0),(80,1,'2012-07-31 02:20:18','2012-07-31 02:20:18','[fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2013/10/features.jpg\" alt=\"features\" width=\"700\" height=\"300\" class=\"aligncenter size-full wp-image-3904\" />[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Avada Includes A Side Navigation Template[/title][fusion_text]With Avada\'s side navigation template, you can add even more content to your site. With the page template, its very easy to set up and use and it can be positioned on the left or right. Check out all other features listed in the side navigation menu![/fusion_text]','Side Navigation','','publish','open','open','','side-navigation','','','2012-07-31 02:20:18','2012-07-31 02:20:18','',0,'http://avada.theme-fusion.com/?page_id=80',0,'page','',0),(11513,1,'2012-07-31 02:17:47','2012-07-31 02:17:47','[slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg[/slide][/slider][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]This is Avada’s Full Width Page Option[/title][fusion_text]At vero eos et accusamus et iusto odios un dignissimos ducimus qui blan ditiis prasixer esentium voluptatum un deleniti atqueste sites excep turiitate non providentsimils. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, consequunturser magni dolores eos qui ratione voluptatem sequi nesciunt. Lorem ipsum dolor sit amet consect adipiscing elit, sed diam non ummy nibh euismod tincidunt ut laoreet, dolore magna aliquam.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tristique eleifend ipsum non facilisis. Donec elementum auctor orci in dictum. Donec non tortor mauris, in iaculis leo. Aenean orci arcu, fringilla adipiscing posuere vitae, congue id nunc. Phasellus nisl dolor, blandit a varius sit amet, dictum in libero. Integer ultricies tempor ornare. Mauris vitae tortor quis lorem feugiat varius non sed turpis. Suspendisse potenti. Vestibulum non lectus tincidunt magna euismod imperdiet sit amet eu lectus. In hac habitasse platea dictumst. Vestibulum vestibulum, turpis quis malesuada molestie, quam ante aliquet lacus, quis molestie urna sapien at lectus. Integer id semper elit. Cras neque nulla, convallis non commodo et, euismod non tortor. Mauris eu facilisis nisl. Ut eu tincidunt mauris.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper susci. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quirs.</blockquote>\nNam semper, ligula id mattis varius, ligula tortor tempus elit, a hendrerit nisi dui et velit. Ut rhoncus porta sapien euismod dictum. Fusce dictum eleifend dignissim. Quisque vel condimentum nisl. Pellentesque aliquet felis eget massa elementum suscipit. Vivamus ut ultricies nibh. Duis vitae sapien arcu. aPellentesque nisi ligula, facilisis sed rutrum sit amet, lobortis at justo. Suspendisse accumsan elementum suscipit. Pellentesque pharetra pretium neque, a tincidunt enim faucibus non. Fusce ultrices accumsan ultrices. Cras malesuada eros et nibh laoreet dictum. Duis metus turpis, sit amet, consequat vel arcu. Vestibulum rhoncus velit eget augue adipiscing vitae imperdiet turpis is sed rutrum sit amet, lobortis at justo. Suspendisse accumsan eleme eleifend.\n\nPhasellus quis ligula in odio aliquet pellentesque. Sed nec nunc quis mauris pretium commodo et cursus velit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris eu nunc a erat egestas dignissim. Vivamus eget orci dui. Cras varius arcu vitae dolor posuere facilisis. Nunc sit amet nisi metus. Morbi pellentesque venenatis rhoncus. Cras sed sapien purus, eu dignissim ipsum. Duis quam sapien, interdum nec consequat nec, pellentesque vitae erat. Praesent sollicitudin tellus ac nisl tincidunt ac tincidunt nulla ultricis sed rutrum sit amet, lobortis at justo. Suspendisse accumsan eleme dolores fugiats voluptas amets sadips ies.[/fusion_text]','Full Width','','publish','open','open','','full-width','','','2012-07-31 02:17:47','2012-07-31 02:17:47','',0,'http://avada.theme-fusion.com/?page_id=84',0,'page','',0),(11514,1,'2012-07-31 02:17:58','2012-07-31 02:17:58','[title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We\'d Love to Hear From You, Get In Touch With Us![/title][fusion_text]At vero eos et accusamus et iusto odios un dignissimos ducimus qui blan ditiis prasixer esentium voluptatum un deleniti atqueste sites excep turiitate non providentsimils. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, consequunturser magni dolores eos qui ratione voluptatem sequi nesciunt. Lorem ipsum dolor sit amet isse potenti. Vesquam ante aliquet lacusemper elit. Cras neque nulla, convallis non commodo et, euismod nonsese. Eos et accusamus et iusto odios un dignissimos ducimus qui blan ditiis prasixer esentium voluptatum un deleniti atqueste sites excep turiitate non providentsimils. Lorem ipsum dolor sit amet isse potenti. Vesquam ante aliquet lacusemper elit. Cras neque nulla, convallis non commodo et, euismod nonsese. Eos et accusamus et iusto odios un dignissimos ducimus qui blan ditiis prasixer esentium voluptatum un deleniti atqueste sites excep turiitate non ipsum dolor sit amet isse potenti. Vesquam ante aliquet lacusemper elit providentsimils.[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]','Contact Page','','publish','open','open','','contact-2','','','2012-07-31 02:17:58','2012-07-31 02:17:58','',0,'http://avada.theme-fusion.com/?page_id=86',0,'page','',0),(11515,1,'2012-07-31 02:20:13','2012-07-31 02:20:13','','1 Column Classic','','publish','open','open','','1-column','','','2012-07-31 02:20:13','2012-07-31 02:20:13','',0,'http://avada.theme-fusion.com/?page_id=94',0,'page','',0),(11516,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Shortcodes 1','','publish','closed','closed','','shortcodes-1','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11516',118,'nav_menu_item','',0),(11517,1,'2016-08-29 20:19:37','2016-08-29 20:19:37','','Shortcodes 2','','publish','closed','closed','','shortcodes-2','','','2016-08-29 20:19:37','2016-08-29 20:19:37','',0,'http://freereincenter.com/?p=11517',127,'nav_menu_item','',0),(11518,1,'2016-08-29 20:19:38','2016-08-29 20:19:38','','Shortcodes 3','','publish','closed','closed','','shortcodes-3','','','2016-08-29 20:19:38','2016-08-29 20:19:38','',0,'http://freereincenter.com/?p=11518',138,'nav_menu_item','',0),(11519,1,'2016-08-29 20:19:38','2016-08-29 20:19:38','','Shortcodes 4','','publish','closed','closed','','shortcodes-4','','','2016-08-29 20:19:38','2016-08-29 20:19:38','',0,'http://freereincenter.com/?p=11519',148,'nav_menu_item','',0),(11520,1,'2016-08-29 20:19:38','2016-08-29 20:19:38','','Reviews','','publish','closed','closed','','reviews-2','','','2016-08-29 20:19:38','2016-08-29 20:19:38','',0,'http://freereincenter.com/?p=11520',157,'nav_menu_item','',0),(11521,1,'2016-08-29 20:19:38','2016-08-29 20:19:38','','New','','publish','closed','closed','','new','','','2016-08-29 20:19:38','2016-08-29 20:19:38','',0,'http://freereincenter.com/?p=11521',161,'nav_menu_item','',0),(11522,1,'2016-08-29 20:19:38','2016-08-29 20:19:38','','Shop Pages','','publish','closed','closed','','shop-pages','','','2016-08-29 20:19:38','2016-08-29 20:19:38','',0,'http://freereincenter.com/?p=11522',101,'nav_menu_item','',0),(11523,1,'2012-07-31 02:20:24','2012-07-31 02:20:24','','2 Column Classic','','publish','open','open','','2-column','','','2012-07-31 02:20:24','2012-07-31 02:20:24','',0,'http://avada.theme-fusion.com/?page_id=96',0,'page','',0),(11524,1,'2012-07-31 02:20:35','2012-07-31 02:20:35','','3 Column Classic','','publish','open','open','','3-column','','','2012-07-31 02:20:35','2012-07-31 02:20:35','',0,'http://avada.theme-fusion.com/?page_id=98',0,'page','',0),(11525,1,'2012-07-31 02:20:47','2012-07-31 02:20:47','','4 Column Classic','','publish','open','open','','4-column','','','2012-07-31 02:20:47','2012-07-31 02:20:47','',0,'http://avada.theme-fusion.com/?page_id=100',0,'page','',0),(730,1,'2012-08-08 02:54:23','2012-08-08 02:54:23','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"60\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"yes\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"medium\" class=\"\" id=\"\"][/blog]','Blog Medium Image','','publish','open','open','','blog-medium','','','2012-08-08 02:54:23','2012-08-08 02:54:23','',0,'http://avada.theme-fusion.com/?page_id=730',0,'page','',0),(1290,1,'2012-11-08 15:19:54','2012-11-08 15:19:54','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][one_half last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Avada?[/title][fusion_text]\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section &amp; blog section</li>\n	<li>We offer free support because we care about your site as much as you do</li>\n	<li>Avada will constantly be updated with brand new features and additions</li>\n	<li>Advanced Theme options makes it easy for you to customize the theme</li>\n</ul>\n[/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use The Slider Anywhere With Shortcodes[/title][layerslider id=\"3\"][/one_half]','Layer Slider','','publish','open','closed','','layer-slider-3-0','','','2012-11-08 15:19:54','2012-11-08 15:19:54','',0,'http://avada.theme-fusion.comtest/?page_id=1290',0,'page','',0),(1298,1,'2012-11-08 15:43:23','2012-11-08 15:43:23','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][one_half last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Avada?[/title][fusion_text]\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section &amp; blog section</li>\n	<li>We offer free support because we care about your site as much as you do.</li>\n	<li>Avada will constantly be updated with brand new features and additions</li>\n	<li>Advanced Theme Options makes it easy for you to customize your settings</li>\n</ul>\n[/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use The Slider Anywhere With Shortcodes[/title][rev_slider Avada_Small_Slider][/one_half]','Revolution Slider','','publish','open','closed','','slider-revolution','','','2012-11-08 15:43:23','2012-11-08 15:43:23','',0,'http://avada.theme-fusion.comtest/?page_id=1298',0,'page','',0),(1345,1,'2012-11-10 03:12:49','2012-11-10 03:12:49','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"25px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\">Avada Gives You Power To [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Create[/popover] Something That Is Beautiful</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"50\" sep_color=\"#cdcdcd\" icon=\"fa-thumbs-up\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that make your content stand out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you perfect freedom.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"50px\" paddingbottom=\"30px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Amazing Elements To Build Beauty[/title][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p>The #1 selling theme of all time on Themeforest. But don’t take our word for it, check our features and user testimonials to understand why our users have enjoyed using Avada and keep coming back time after time!</p>[/fusion_text][soundcloud url=\"http://api.soundcloud.com/tracks/110813479\" comments=\"yes\" auto_play=\"no\" color=\"#a0ce4e\" width=\"100%\" height=\"81px\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][progress percentage=\"90\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"80\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"70px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][three_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Latest From The Blog[/title][blog number_posts=\"3\" cat_slug=\"image\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"10\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"no\" meta_date=\"yes\" meta_link=\"no\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/blog][/three_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]User Reviews[/title][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Sarumbear\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]I bought a copy of this theme to test and I am impressed. Not only the theme is well thought out with good amount options and excellent customisation facilities but their support at their support forum is exemplary.I can thoroughly recommend the theme and the developer. I will be buying more licenses.[/testimonial][testimonial name=\"Sherman\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]Awesome, You People are Extraordinary with Support and I don\'t know any word which is bigger than extraordinary or have written here million times! Superb Theme Superb People and Superb Support! Thanks for Awesome Help! I don\'t need to buy any theme again, this is ultimate THEME for Me for Every Business and Client of Mine.[/testimonial][testimonial name=\"Marymaier,\" avatar=\"female\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]This theme is GREAT. I have tried to work with other themes in the past and always run into bugs, but not with Avada! It is very easy to customize the theme to suit your site without any code knowledge. The portfolio and sliders are a must-have for me, and Avada truly delivers! I will be sticking with Avada for quite some time![/testimonial][/testimonials][/one_fourth][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"]\n<a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\"></a>[/modal][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#c6c6c6\" borderstyle=\"\" paddingtop=\"25px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\">Pretty Nice, What Else You Got Though?</h1>[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Click Here To Find Out![/button][/one_third][/fullwidth]','Home Version 1','','publish','open','closed','','home-version-1','','','2012-11-10 03:12:49','2012-11-10 03:12:49','',0,'http://avada.theme-fusion.comtest/?page_id=1345',0,'page','',0),(1522,1,'2012-11-16 15:47:45','2012-11-16 15:47:45','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"46\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"large\" class=\"\" id=\"\"][/blog]','Blog Full Width','','publish','open','closed','','blog-2','','','2012-11-16 15:47:45','2012-11-16 15:47:45','',0,'http://avada.theme-fusion.comtest/?page_id=1522',0,'page','',0),(1693,1,'2012-11-21 20:50:59','2012-11-21 20:50:59','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Pricing Table Shortcode[/title][fusion_text]Avada includes some amazing pricing table elements that are full with customization options. Pricing tables are a critical part in showcasing your services, prices and overall offerings. With Avada\'s pricing tables, two different design styles can be selected along with various column widths. Take control of the border colors, background colors and divider colors. Make a column standout for added visibility and it provides a nice drop shadow that lifts the column off the others. We give you full control over changing the type of currency and the currency position which is needed for global compatibility. Change the length of payment time, such as monthly or weekly and add buttons to the footer section. These many options allow you to create beautiful, customized pricing tables throughout your site with ease.[/fusion_text][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Premium Service\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"199.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]5 Projects[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][/one_third][/fullwidth][separator style_type=\"single\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"http://avada.theme-fusion.com/wp-content/uploads/2013/07/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"50px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Avada\'s [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Pricing Tables [/popover] For Your Business</h1>[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Standard\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"19.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]5 Projects[/pricing_row]\n[pricing_row]5 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]10 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Premium\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"29.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]10 Projects[/pricing_row]\n[pricing_row]15 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]20 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer]\n[/pricing_column]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Extreme\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"59.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]Unlimited Projects[/pricing_row]\n[pricing_row]Unlimited Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]Unlimited Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"30px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px;\">Choose From Two Pricing Table Designs &amp; Column Options</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"18\" bottom_margin=\"65\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Pricing Design 1 With Up To 5 Columns</h2>[/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"year\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"year\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Pricing Design 2 With Up To 4 Columns</h2>[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"20px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px;\">Easily [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Customzie the map styles, colors, map markers and info box elements. Take full control of your Google Map!\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Customize[/popover] Pricing Table Colors!</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"18\" bottom_margin=\"60\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#cde1a8\" bordercolor=\"#a2cc55\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#cde1a8\" gradient_hover_colors=\"#c4d99e\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Change Background Color</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>[/fusion_text][/one_third][one_third last=\"no\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#b9d8e7\" bordercolor=\"#78b6d4\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#b9d8e7\" gradient_hover_colors=\"#accddd\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Change Border Colors</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>[/fusion_text][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#e5c594\" bordercolor=\"#c59347\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#e5c594\" gradient_hover_colors=\"#debe8c\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Change Divider Colors</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px;\">Standout Columns Allow You To [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Customzie the map styles, colors, map markers and info box elements. Take full control of your Google Map!\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Highlight[/popover] By Priority</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"18\" bottom_margin=\"60\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Standard\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"19.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]5 Projects[/pricing_row]\n[pricing_row]5 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]10 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Premium\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"29.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]10 Projects[/pricing_row]\n[pricing_row]15 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]20 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer]\n[/pricing_column]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"20px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px;\">Full Control Over [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Customzie the map styles, colors, map markers and info box elements. Take full control of your Google Map!\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Currency[/popover] Type &amp; Position</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"18\" bottom_margin=\"60\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"€\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Currency Symbols</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada\'s pricing tables give you full control over the currency symbol. Easily make the selection per pricing column by choosing any currency symbol that is available for the font you choose to use.</p>[/fusion_text][/one_third][one_third last=\"no\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"¥\" currency_position=\"right\" price=\"39.99\" time=\"daily\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Currency Location</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada\'s pricing tables give you full control over the currency location. Some currency symbols need to be before the price, some after the price. Easily make that selection per pricing column.</p>[/fusion_text][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"yearly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center;\">Pricing Time / Length</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">Avada pricing tables allow you to specify a \"time\" value. This is perfect for describing different lengths of time for subscriptions or various prices. For example: yearly, monthly, daily, etc.</p>[/fusion_text][/one_third][/fullwidth][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"http://avada.theme-fusion.com/wp-content/uploads/2013/07/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"22px\" paddingbottom=\"0px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>[/fusion_text][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"text-align: center;\">[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"pill\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]I\'M SOLD, BUY AVADA NOW![/button][fusion_text]</p>[/fusion_text][/one_third][/fullwidth]','Pricing Options','','publish','open','closed','','pricing-options','','','2012-11-21 20:50:59','2012-11-21 20:50:59','',0,'http://avada.theme-fusion.comtest/?page_id=1693',0,'page','',0),(2291,1,'2012-12-03 02:56:42','2012-12-03 02:56:42','[fusion_text]<img class=\"alignnone  wp-image-180\" title=\"full_width\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" alt=\"\" />[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]This Is An Example Of Our Sidebar Page[/title][fusion_text]Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exercitation.Sed tincidunt semper lorem. Etiam in libero felis, at blandit felis. Integer in est ultrices sapien ultrices condimentum at porttitor arcu. Nam congue nunc ac leo pretium sit amet fermentum leo feugiat. Donec erat magna, lobortis in pretium vitae, sollicitudin ac ante. Maecenas ullamcorper augue pretium lacus lacinia in accumsan lorem auctor. Quisque massa sem, faucibus sit amet porttitor ac, feugiat id tortor. Integer mattis elit sit amet enim eleifend mattis sagittis ante dapibus. Nunc erat dui, tincidunt vel pharetra.</blockquote>\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.\n\nSed tincidunt semper lorem. Etiam in libero felis, at blandit felis. Integer in est ultrices sapien ultrices condimentum at porttitor arcu. Nam congue nunc ac leo pretium sit amet fermentum leo feugiat. Donec erat magna, lobortis in pretium vitae, sollicitudin ac ante. Maecenas ullamcorper augue pretium lacus lacinia in accumsan lorem auctor. Quisque massa sem, faucibus sit amet porttitor ac, feugiat id tortor. Integer mattis elit sit amet enim eleifend mattis sagittis ante dapibus. Nunc erat dui, tincidunt vel pharetra ac, egestas ut mi. Mauris ut nunc vel nunc malesuada facilisis ac quis augue.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.[/fusion_text]','Sidebar Page','','publish','open','closed','','sidebar-left','','','2012-12-03 02:56:42','2012-12-03 02:56:42','',0,'http://avada.theme-fusion.com/?page_id=2291',0,'page','',0),(2300,1,'2012-12-04 15:19:54','2012-12-04 15:19:54','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-15\" bottom_margin=\"-15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"yes\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"We Can Deliver On Projects\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_half][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Latest From The Blog[/title][blog number_posts=\"4\" cat_slug=\"wordpress\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"9\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"4\" layout=\"grid\" class=\"\" id=\"\"][/blog]','Home Version 4','','publish','open','closed','','home-version-4','','','2012-12-04 15:19:54','2012-12-04 15:19:54','',0,'http://avada.theme-fusion.com/?page_id=2300',0,'page','',0),(2318,1,'2012-12-04 15:53:01','2012-12-04 15:53:01','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is versatile so you don\'t have to be.\" description=\"Use our pre-defined layouts, or build your own with tools we provide!\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-15\" bottom_margin=\"-15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Latest From The Blog[/title][recent_posts layout=\"default\" columns=\"3\" number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" strip_html=\"yes\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][fusion_tabs design=\"\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Tab Item 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerums facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam Ut enim ad minim veniam, quis nostrud Neque qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert.[/fusion_tab][fusion_tab title=\"Tab Item 2\" icon=\"\"][fontawesome icon=\"thumbs-up\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerums facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam Ut enim ad minim veniam, quis nostrud Neque qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert.[/fusion_tab][fusion_tab title=\"Tab Item 3\" icon=\"\"][fontawesome icon=\"magic\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerums facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam Ut enim ad minim veniam, quis nostrud Neque qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillumsert.[/fusion_tab][/fusion_tabs][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Sliders Anywhere[/title][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Flexible Shortcodes[/title][progress percentage=\"90\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Web Design[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]HTML/CSS[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Graphic Design[/progress][progress percentage=\"100\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]WordPress[/progress][/one_half]','Home Version 5','','publish','open','closed','','home-version-5','','','2012-12-04 15:53:01','2012-12-04 15:53:01','',0,'http://avada.theme-fusion.com/?page_id=2318',0,'page','',0),(2367,1,'2012-12-04 17:27:32','2012-12-04 17:27:32','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is incredibly responsive, with a refreshingly clean design\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-15\" bottom_margin=\"-15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Welcome To Avada![/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam enim ipsam voluptatem aliquam quaerat voluptatem quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam enims.[/fusion_text][/one_half][three_fourth last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Latest From The Blog[/title][recent_posts layout=\"default\" columns=\"3\" number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"17\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][/three_fourth][one_fourth last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"double\" sep_color=\"\" class=\"\" id=\"\"]User Reviews[/title][testimonials backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"male\" image=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme! Highly recommended![/testimonial][testimonial name=\"Aajami\" avatar=\"male\" image=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][testimonial name=\"Gojcus\" avatar=\"male\" image=\"\" company=\"Avada\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_fourth]','Home Version 6','','publish','open','closed','','home-version-6','','','2012-12-04 17:27:32','2012-12-04 17:27:32','',0,'http://avada.theme-fusion.com/?page_id=2367',0,'page','',0),(2398,1,'2012-12-04 17:53:50','2012-12-04 17:53:50','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-on-top\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"4\" class=\"\" id=\"\"][content_box title=\"Responsive Design\" icon=\"fa-tablet\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"\"]     Avada is fully responsive and can adapt to any screen size. Try resizing your browser window to view it![/content_box][content_box title=\"Awesome Sliders\" icon=\"fa-random\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"\"]     Avada includes the Revolution Slider, Layer Slider, Fusion Slider and Elastic Slider for eye catching slides![/content_box][content_box title=\"Unlimited Colors\" icon=\"fa-tint\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"\"]     We included a backend color picker for unlimited color options. Any element can have color change![/content_box][content_box title=\"Google Fonts\" icon=\"fa-text-width\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"\"]     Avada loves fonts, choose from over 500+ Google Fonts and change all headings and body copy with ease![/content_box][/content_boxes][/fullwidth][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#3d3c3c\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#\" borderstyle=\"\" paddingtop=\"30px\" paddingbottom=\"35px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Avada Gives You Complete Control of Your Website</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada makes it easy to build unique, custom pages that are catered to your taste. Take control of your website.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#3d3c3c\" backgroundcolor=\"#3d3c3c\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"75px\" paddingbottom=\"30px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][blog number_posts=\"3\" cat_slug=\"image\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"9\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"no\" meta_date=\"yes\" meta_link=\"no\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/blog][/fullwidth][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"65px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important;\">With an ever growing User Base, Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n[/fusion_text][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth]','Home Version 7','','publish','open','closed','','home-version-7','','','2012-12-04 17:53:50','2012-12-04 17:53:50','',0,'http://avada.theme-fusion.com/?page_id=2398',0,'page','',0),(2466,1,'2012-12-05 17:20:13','2012-12-05 17:20:13','','FAQ Page','','publish','open','closed','','faq-page-1','','','2012-12-05 17:20:13','2012-12-05 17:20:13','',0,'http://avada.theme-fusion.comtest/?page_id=2466',0,'page','',0),(2660,1,'2013-01-14 19:44:32','2013-01-14 19:44:32','[fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"45px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Design\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Responsive Design</h2>\nAvada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Resize your browser window to see the action. Your site will look fantastic.[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Sliders\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Powerful Sliders</h2>\nAvada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider. Each slider has its unique offerings to build beautiful, eye-catching sliders.[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Options\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Incredible Options</h2>\nAvada is loaded with useful options that allow you to quickly and easily customize your site. These options allow you to create unique layouts that stand out to your viewers.[/fusion_text][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Design\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Responsive Design</h2>\nAvada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Resize your browser window to see the action. Your site will look fantastic.[/fusion_text][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"55px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is incredibly responsive, with a refreshingly clean design\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"yes\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][tabs tab1=\"Tab Data #1\" tab2=\"Tab Data #2\" tab3=\"Tab Data #3\"]\n[tab id=1]\n[fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerums facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam.Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet.\n[/tab]\n[tab id=2]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. &nbsp;Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo. amets dolores.[/tab]\n[tab id=3]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. &nbsp;Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo. amets dolores.[/tab]\n[/tabs][/fusion_text][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"15px\" paddingbottom=\"25px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 22px;\">Avada Has Some Incredible Social Icon Options To Help You Keep In Touch!</h1>\n[/fusion_text][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"#747474\" box_colors=\"rgba(255,255,255,.5)\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"#\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"#\" yahoo=\"#\" deviantart=\"#\" vimeo=\"#\" youtube=\"#\" pinterest=\"#\" digg=\"#\" flickr=\"#\" forrst=\"#\" myspace=\"#\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth]','Home Version 8','','publish','open','closed','','home-version-8','','','2013-01-14 19:44:32','2013-01-14 19:44:32','',0,'http://avada.theme-fusion.com/?page_id=2660',0,'page','',0),(2712,1,'2013-01-19 20:28:10','2013-01-19 20:28:10','[one_half last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President &amp; Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo. Nemo enim.[/person][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][person name=\"Jane Doe\" title=\"CEO\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo. Nemo enim.[/person][/one_half][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada includes multiple page layouts ready to use, just insert your content!\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options and so much more!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Valuable Team Members[/title][one_third last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third][one_third last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third][one_third last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicab nemo enims.[/person][/one_third]','Meet The Team','','publish','open','closed','','meet-the-team','','','2013-01-19 20:28:10','2013-01-19 20:28:10','',0,'http://avada.theme-fusion.com/?page_id=2712',0,'page','',0),(2745,1,'2013-01-21 17:11:03','2013-01-21 17:11:03','[fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2013/10/bkgd1.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"-10\" bottom_margin=\"70\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 57px; line-height: 75px;\">Avada Is The #1 Selling WP Theme</h1>\n<p style=\"text-align: center; margin-top: -20px; font-size: 18px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>95,000+ Users and counting</strong>[/tooltip], Avada is the most complete and trusted wordpress theme on the market.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/browsers.png\" alt=\"\" />[/imageframe][/fullwidth][fullwidth background_color=\"#fff\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that make your content stand out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Fusion Builder\" title_back=\"Build Something Beautiful\" text_front=\"Fusion Builder is an intuitive visual page builder that is a pleasure to use.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-trophy\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Fusion Builder includes dozens of shortcodes loaded with options, giving you perfect freedom.[/flip_box][/flip_boxes][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Dedicated Support\" title_back=\"You Can Count On Us\" text_front=\"We care about your site as much as you do, you can count on us for theme support.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We thrive on our users, and want to see everyone happy when using Avada.[/flip_box][flip_box title_front=\"Powerful Options\" title_back=\"Unleash The Power of Avada\" text_front=\"Avada\'s theme options and page options allow you to take control of your website.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-cog\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We build intuitive, user-friendly options so you can quickly and easily build your site.[/flip_box][flip_box title_front=\"Free Updates With Value\" title_back=\"Its Like Getting A New Theme\" text_front=\"We issue updates that matter; rich with amazing new features and improvements.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-gift\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada just keeps getting better and better, each update is like getting a brand new theme all for free.[/flip_box][/flip_boxes][separator style_type=\"single\" top_margin=\"22\" bottom_margin=\"70\" sep_color=\"rgba(000,000,000,.1)\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"35\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? We Have The Best Support Around</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you purchase a copy of Avada you will also get the [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\" stretch=\"default\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/forest3.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.2)\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"rgba(255,255,255,.4)\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\" <span style=\"color: #ffffff;\">Avada Is The Ultimate Wordpress Multi-Purpose Wordpress Theme!</span>\" description=\" <span style=\"color: #ffffff;\">Loaded with awesome features like Fusion Builder, premium sliders, unlimited colors, advanced theme options &amp; more!</span>\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth]','Home Version 9','','publish','open','closed','','home-version-9','','','2013-01-21 17:11:03','2013-01-21 17:11:03','',0,'http://avada.theme-fusion.com/?page_id=2745',0,'page','',0),(2776,1,'2013-01-21 19:10:06','2013-01-21 19:10:06','[rev_slider Avada_Page_Slider][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][three_fourth last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We Are Here To Serve You[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores veritatis et quasi architecto beatae vitae dicta sunt etras sits eos qui. Ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam explicabo fugiat nulla.[/fusion_text][/three_fourth][one_fourth last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Crazy Skills[/title][progress percentage=\"90\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Web Design[/progress][progress percentage=\"95\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]HTML/CSS[/progress][progress percentage=\"85\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Graphic Design[/progress][progress percentage=\"75\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]WordPress[/progress][/one_fourth][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Valuable Team Members[/title][one_fourth last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis etras quasi architectos beatae vitae dicta sunt est explicabo sadips ipsum dolores ets.[/person][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis etras quasi architectos beatae vitae dicta sunt est explicabo sadips ipsum dolores ets.[/person][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis etras quasi architectos beatae vitae dicta sunt est explicabo sadips ipsum dolores ets.[/person][/one_fourth][one_fourth last=\"yes\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis etras quasi architectos beatae vitae dicta sunt est explicabo sadips ipsum dolores ets.[/person][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Happy Clients[/title][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients]','About Us Page 2','','publish','open','closed','','about-us-page-2','','','2013-01-21 19:10:06','2013-01-21 19:10:06','',0,'http://avada.theme-fusion.com/?page_id=2776',0,'page','',0),(2803,1,'2013-01-21 20:24:32','2013-01-21 20:24:32','[rev_slider Avada_Page_Slider][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We Are Here To Serve You[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui.Ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius m ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[/fusion_text][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Are We The Best?[/title][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][/accordian][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" /> \n<h2>Ultra-Responsive Design</h2>\nAvada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Try resizing your browser window to see it.[/fusion_text][/one_third][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" alt=\"\" />\n<h2>Awesome Powerful Sliders</h2>\nAvada includes amazing premium sliders, each fitting for a different purpose throughout your site. Each of them are intuitive and a joy to use.[/fusion_text][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][fusion_text]<img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" />\n<h2>Loaded With Options</h2>\nThis theme is loaded, unlimited color options, 500+ google fonts, 4 post types, advanced theme options, 3 home page layouts, boxed &amp; wide to name a few.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is incredibly responsive, with a refreshingly clean design\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options and so much more!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box]','Services Page 2','','publish','open','closed','','services-page-2','','','2013-01-21 20:24:32','2013-01-21 20:24:32','',0,'http://avada.theme-fusion.com/?page_id=2803',0,'page','',0),(3073,1,'2013-02-05 21:19:50','2013-02-05 21:19:50','[fusion_text]<img class=\"aligncenter size-full wp-image-3076\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_6.jpg\" alt=\"home_10_img\">[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Avada Gives You Power To [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Create[/popover] Something Beautiful</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"20\" bottom_margin=\"55\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that make your content stand out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-trophy\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you perfect freedom.[/flip_box][/flip_boxes][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Dedicated Support\" title_back=\"You Can Count On Us\" text_front=\"We care about your site as much as you do, you can count on us for theme support.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We thrive on our users, and want to see everyone happy when using Avada.[/flip_box][flip_box title_front=\"Powerful Options\" title_back=\"Unleash The Power of Avada\" text_front=\"Avada\'s theme options and page options allow you to take control of your website.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-cog\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We build intuitive, user-friendly options so you can quickly and easily build your site.[/flip_box][flip_box title_front=\"Free Updates With Value\" title_back=\"Its Like Getting A New Theme\" text_front=\"We issue updates that matter; rich with amazing new features and improvements.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-gift\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada just keeps getting better and better, each update is like getting a brand new theme all for free.[/flip_box][/flip_boxes][separator style_type=\"single\" top_margin=\"20\" bottom_margin=\"65\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"none\" sep_color=\"\" class=\"\" id=\"\"]Amazing Elements To Build Beauty[/title][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"-10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]The #1 selling theme of all time on Themeforest. But don’t take our word for it, check our features and user testimonials to understand why our users have enjoyed using Avada and keep coming back time after time![/fusion_text][soundcloud url=\"http://api.soundcloud.com/tracks/110813479\" comments=\"yes\" auto_play=\"no\" color=\"#a0ce4e\" width=\"100%\" height=\"81px\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][progress percentage=\"90\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"80\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][/one_half][separator style_type=\"single\" top_margin=\"30\" bottom_margin=\"60\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"70\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Why Has Avada been The #1 Selling Theme For Over 2 Years?\" description=\"Because we truly care about our users and our product and we feel these points reveal themselves in our work and support.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box]','Home Version 10','','publish','open','closed','','home-version-10','','','2013-02-05 21:19:50','2013-02-05 21:19:50','',0,'http://avada.theme-fusion.com/?page_id=3073',0,'page','',0),(11683,2,'2016-08-29 20:52:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2016-08-29 20:52:32','0000-00-00 00:00:00','',0,'http://freereincenter.com/?p=11683',0,'post','',0),(3089,1,'2013-02-09 20:23:28','2013-02-09 20:23:28','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"\" border=\"\" bordercolor=\"\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada also includes the stylish Elastic Slider! Beautiful. Simple. Elegant\" description=\"Fully responsive &amp; perfect for a simply, beautiful slider. Customize sizes, captions, animation &amp; more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"-20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"4\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Screen Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that help your content stand out to your viewers!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We include the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site for your online presence.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you freedom.[/flip_box][flip_box title_front=\"Unlimited Colors\" title_back=\"Change Any Element\" text_front=\"Avada offers color options for every element you see, take control of your colors.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-tint\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We included a backend color picker for unlimited color options. Anything can be changed, including gradients![/flip_box][/flip_boxes][separator style_type=\"\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Avada[/title][fusion_text]The FlexSlider can easily be used as the large slider at the top of the page, or you can use it as a shortcode inside page content. For the large slider at the top of the page, users can use the WooSlider plugin, or use it via Theme Options. Avada 2.0 now has it integrated into our Theme Options for use with captions.\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section &amp; blog section</li>\n	<li>We offer free support because we care about your site as much as you do.</li>\n</ul>\n[/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Our Postslider Anywhere With Shortcodes![/title][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half]','Elastic Slider','','publish','open','closed','','elastic-slider','','','2013-02-09 20:23:28','2013-02-09 20:23:28','',0,'http://avada.theme-fusion.com2/?page_id=3089',0,'page','',0),(3474,1,'2013-02-13 17:51:22','2013-02-13 17:51:22','[fusion_text][gallery link=\"file\" ids=\"3895,3894,3892,3891,3904,3888\"][/fusion_text]','Featured Child Page','','publish','open','closed','','gallery-of-screenshots','','','2013-02-13 17:51:22','2013-02-13 17:51:22','',54,'http://avada.theme-fusion.comxml/?page_id=3474',0,'page','',0),(3492,1,'2013-04-04 15:17:18','2013-04-04 15:17:18','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Meet Your New Best Friends[/title][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis et quasi architectos beatae vitae dicta sunt est sadips ipsums dolores uns explicabo.[/person][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][person name=\"Jane Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis et quasi architectos beatae vitae dicta sunt est sadips ipsums dolores uns explicabo.[/person][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][person name=\"Jamie Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\" \" email=\"\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo un inventore veritatis et quasi architectos beatae vitae dicta sunt est sadips ipsums dolores uns explicabo.[/person][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We Are Here To Serve You[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae explicabo nemo enimset.[/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-chevron-right\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"fa-chevron-right\"]Awesome sliders give you the opportunity to showcase important conten[/li_item][li_item icon=\"fa-chevron-right\"]Unlimited color options with a backed color picker, including the gradients[/li_item][li_item icon=\"fa-chevron-right\"]We offer free support because we care about your site as much as you do.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Workplace[/title][map address=\"new york city, ny\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#70b260\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"235px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Happy Clients[/title][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Version 11','','publish','open','closed','','home-version-11','','','2013-04-04 15:17:18','2013-04-04 15:17:18','',0,'http://avada.theme-fusion.comxml/?page_id=3492',0,'page','',0),(11682,1,'2016-08-29 20:20:04','2016-08-29 20:20:04','','9757','','inherit','closed','closed','','9757','','','2016-08-29 20:20:04','2016-08-29 20:20:04','',0,'http://freereincenter.com/wp-content/uploads/2016/08/9757.jpg',0,'attachment','image/jpeg',0),(3494,1,'2013-04-04 15:17:53','2013-04-04 15:17:53','[fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"45px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/11/slide_2.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/11/slide_2.jpg\" alt=\"\"></a>[/fusion_text][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single solid\" sep_color=\"rgba(000,000,000,.3)\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Avada Includes Many Pre-Built Page Layouts For Fast Setup[/title][fusion_text]Avada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Try resizing your browser window to see the adaptation in action. Avada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Try resizing your browser window to see the adaptation in action.Avada is fully responsive and can adapt to any screen size, its incredibly fast and flexible. Come and join the amazing Avada community![/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][map address=\"new york city, ny\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#469cf2\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"328px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" animation=\"yes\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"27\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"4\" content_align=\"left\" style_type=\"single solid\" sep_color=\"rgba(000,000,000,.3)\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Located In Beautiful New York City[/title][separator style_type=\"none\" top_margin=\"-15\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]12345 North Main Street, New York, NY 555555\nPhone: 1.800.555.6789\nFax: 1.800.555.6789\nWeb: <a href=\"http://themeforest.net/user/ThemeFusion\">www.yoursite.com</a>[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][/fullwidth][separator style_type=\"none\" top_margin=\"-25\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_tabs design=\"\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Tab Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia nemis onis fugats vitaes nemo minima rerums unsers sadips amet dolor sit amet, consectetur, adipisci amets[/fusion_tab][fusion_tab title=\"Tab Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia nemis onis fugats vitaes nemo minima rerums unsers sadips amet dolor sit amet, consectetur, adipisci amets[/fusion_tab][/fusion_tabs][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Why Choose Avada[/title][checklist icon=\"\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-chevron-right\"]Fully responsive with a beautiful design.[/li_item][li_item icon=\"fa-chevron-right\"]Awesome sliders for content that pops.[/li_item][li_item icon=\"fa-chevron-right\"]Unlimited color options from a color picker.[/li_item][li_item icon=\"fa-chevron-right\"]Free support because we care about your site.[/li_item][li_item icon=\"fa-chevron-right\"]Constant updates bring new functionality.[/li_item][li_item icon=\"fa-chevron-right\"]Power elite author gives you peace of mind.[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Slider Content[/title][slider hover_type=\"none\" width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"http://avada.theme-fusion.com/wp-content/uploads/2014/03/bg6b_bw.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Amazing Elements To Build Beauty[/title][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]The #1 selling theme of all time on Themeforest. But don’t take our word for it, check our features and user testimonials to understand why our users have enjoyed using Avada and keep coming back time after time![/fusion_text][soundcloud url=\"http://api.soundcloud.com/tracks/110813479\" layout=\"yes\" comments=\"yes\" show_related=\"yes\" show_user=\"yes\" auto_play=\"no\" color=\"#a0ce4e\" width=\"100%\" height=\"81px\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][progress percentage=\"90\" unit=\"%\" filledcolor=\"\" filledbordercolor=\"\" filledbordersize=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" filledbordercolor=\"\" filledbordersize=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"80\" unit=\"%\" filledcolor=\"\" filledbordercolor=\"\" filledbordersize=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" filledbordercolor=\"\" filledbordersize=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"\" filledbordercolor=\"\" filledbordersize=\"\" unfilledcolor=\"#e3e2e2\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress[/progress][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Latest From The Blog[/title][blog number_posts=\"3\" offset=\"\" cat_slug=\"image\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"10\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"no\" meta_date=\"yes\" meta_link=\"no\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/blog][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"]\n<a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\"></a>[/modal][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#a0ce4e\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"10px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255,255,255,.05)|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"center\" class=\"\" id=\"\"]What Else You Got?[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth]','Home Version 12','','publish','open','closed','','home-version-12','','','2013-04-04 15:17:53','2013-04-04 15:17:53','',0,'http://avada.theme-fusion.comxml/?page_id=3494',0,'page','',0),(3496,1,'2013-04-04 15:18:43','2013-04-04 15:18:43','[slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][two_third last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We Love To Work &amp; We Love Where We Work[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla. <strong><em> Avada is the perfect choice for your business. It\'s loaded with features, options &amp; page layouts. Plus we have the best customer support around, but dont take our word for it, <a href=\"http://avadatest.theme-fusion.com/user-reviews/\">ask our amazing users!</a></em></strong>[/fusion_text][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Location[/title][map address=\"775 E New York Ave‎ Brooklyn, NY 11203\" type=\"terrain\" map_style=\"default\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"\" width=\"100%\" height=\"180px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" popup=\"yes\" class=\"\" id=\"\"][/map][fusion_text]\n<h4>Located In Beautiful New York City</h4>\n12345 Main Street, New York, NY 02781 Phone: 1.800.555.6789 Web: <a href=\"http://themeforest.net/user/ThemeFusion\">www.yoursite.com</a>[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Images Of Our Workplace[/title][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"yes\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth]','Our Office','','publish','open','closed','','our-office','','','2013-04-04 15:18:43','2013-04-04 15:18:43','',0,'http://avada.theme-fusion.comxml/?page_id=3496',0,'page','',0),(3524,1,'2013-04-08 23:13:00','2013-04-08 23:13:00','','1 Column Text','','publish','open','closed','','1-column-text','','','2013-04-08 23:13:00','2013-04-08 23:13:00','',0,'http://avada.theme-fusion.comxml/?page_id=3524',0,'page','',0),(3526,1,'2013-04-08 23:13:10','2013-04-08 23:13:10','','2 Column Text','','publish','open','closed','','2-column-text','','','2013-04-08 23:13:10','2013-04-08 23:13:10','',0,'http://avada.theme-fusion.comxml/?page_id=3526',0,'page','',0),(3528,1,'2013-04-08 23:13:22','2013-04-08 23:13:22','','3 Column Text','','publish','open','closed','','3-column-text','','','2013-04-08 23:13:22','2013-04-08 23:13:22','',0,'http://avada.theme-fusion.comxml/?page_id=3528',0,'page','',0),(3530,1,'2013-04-08 23:13:33','2013-04-08 23:13:33','','4 Column Text','','publish','open','closed','','4-column-text','','','2013-04-08 23:13:33','2013-04-08 23:13:33','',0,'http://avada.theme-fusion.comxml/?page_id=3530',0,'page','',0),(3610,1,'2013-05-24 19:42:07','2013-05-24 19:42:07','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#f6f6f6\" border_style=\"\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][content_boxes settings_lvl=\"child\" layout=\"icon-with-title\" columns=\"3\" icon_align=\"left\" title_size=\"\" title_color=\"\" body_color=\"\" backgroundcolor=\"\" icon_circle=\"\" icon_circle_radius=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" circlebordersize=\"\" outercirclebordercolor=\"\" outercirclebordersize=\"\" icon_size=\"\" icon_hover_type=\"\" hover_accent_color=\"\" link_type=\"\" link_area=\"\" linktarget=\"\" animation_delay=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.1\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"][content_box title=\"Beautifully Simplistic\" icon=\"fa-tablet\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" circlebordersize=\"\" outercirclebordercolor=\"\" outercirclebordersize=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]    If you\'re a code nerd or a Word Press newbie, Avada is for you. It\'s [tooltip title=\"That\'s Right, It\'s For You!\"]<strong>simply built for everyone</strong>[/tooltip], and can be as simple or complex as you want it to be. Enjoy using Avada![/content_box][content_box title=\"Free Support & Updates\" icon=\"fa-magic\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" circlebordersize=\"\" outercirclebordercolor=\"\" outercirclebordersize=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]    We truly care about our users & our finished product which is why[tooltip title=\"94% Recommend Avada!\"]<strong> our users love Avada!</strong>[/tooltip] You will too with free updates & the most incredible support around. Enjoy using Avada![/content_box][content_box title=\"Blissful Layout Options \" icon=\"fa-thumbs-up\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" circlebordersize=\"\" outercirclebordercolor=\"\" outercirclebordersize=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]    Avada includes so many different options and designs. Users can make [tooltip title=\"Like This Text Tooltip!\"]<strong>amazingly cool layouts</strong>[/tooltip] with the tools we provide. It doesn\'t get any better. Enjoy using Avada![/content_box][/content_boxes][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n\n[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"1px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/browsers.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#f6f6f6\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"5px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? We Have The Best Support Around</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you buy Avada, rest assure that you will also get the [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" hover_type=\"none\" columns=\"1\" number_posts=\"3\" offset=\"\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" strip_html=\"yes\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"-25\" bottom_margin=\"-25\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">More Ways Than Ever To Display Your Hard Work!</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important;\">We\'ve added several [tooltip title=\"Lots of Them!\"]<strong>useful shortcodes</strong>[/tooltip] and more [tooltip title=\"6 Total Layouts!\"]<strong>amazing blog layouts</strong>[/tooltip] that allow you to build amazing pages for your website.</p>\n\n[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"6\" offset=\"\" excerpt_length=\"35\" strip_html=\"yes\" carousel_layout=\"title_on_rollover\" scroll_items=\"\" autoplay=\"no\" show_nav=\"yes\" mouse_scroll=\"no\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"70px\" padding_bottom=\"5px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]Amazing Tools To Build Awesome Websites[/title][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with meta options for easy customization[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][li_item icon=\"\"]The #1 Selling Wordpress theme on Themeforest[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/mobile.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][/fullwidth][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"]','Home Version 13','','publish','open','closed','','home-page-13','','','2013-05-24 19:42:07','2013-05-24 19:42:07','',0,'http://avada.theme-fusion.comxml/?page_id=3610',0,'page','',0),(3628,1,'2013-05-24 19:48:46','2013-05-24 19:48:46','[fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"15px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"45\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"4\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Screen Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks amazing no matter the screen size will be.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four easy to use premium sliders that help your content stand out to your viewers!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We include the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Fusion Builder\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers an amzzing visual page builder called Fusion Builder. This allows you to create a beautiful site.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you freedom.[/flip_box][flip_box title_front=\"Unlimited Colors\" title_back=\"Change Any Element\'s Color\" text_front=\"Avada offers color options for every element you see. This allows you to easily take control of your colors.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-tint\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We included a backend color picker for unlimited color options. Anything can be changed, including gradients![/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"45px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"attachments\" excerpt=\"35\" category=\"\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"-40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? We Have The Best Support Around</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you buy Avada you will also get the [tooltip title=\"Support Forum, Docs & Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"35px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">More Ways Than Ever To Display Your Hard Work!</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">We\'ve added several [tooltip title=\"Lots of Them!\"]<strong>useful shortcodes</strong>[/tooltip] and more [tooltip title=\"6 Total Layouts!\"]<strong>amazing blog layouts</strong>[/tooltip] that allow you to build amazing pages for your website.</p>\n\n[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"50\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"6\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"50px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]What Else Does Avada Include? We\'ll Tell You![/title][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Avada is loaded with features and options that make it easy for you to build an online presence. We\'ve put a lot of thought and care into making Avada user-friendly, and our 20,000+ sales are proof to that point. We know you will enjoy Avada as much as we do. It offers so many different options like multiple styles of portfolio layouts that allow you to choose text excerpts or not, sidebars or 1-4 columns. We also offer 7 different blog blog layouts that include new grid and timeline styles. And of course it includes all of our pre made demo pages. Include all of that with over 100 shortcodes and you have endless layout and design options to build your website. Avada also includes free support and future updates that will always include new features from user feedback, this can be the last theme you ever buy! Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][counters_box  columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"70000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users & Counting[/counter_box][counter_box value=\"25000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Amazing Tools To Build Awesome Websites[/title][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with meta options for easy customization[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Join the 95,000+ user community and see why everyone loves Avada![/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://freereincenter.com/wp-content/uploads/2014/06/mobile.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2014/06/mobile.jpg\" alt=\"lightbox title\"></a>[/fusion_text][/one_half][/fullwidth]','Home Version 14','','publish','open','closed','','home-version-14-2','','','2013-05-24 19:48:46','2013-05-24 19:48:46','',0,'http://avada.theme-fusion.comxml/?page_id=3628',0,'page','',0),(3638,1,'2013-05-24 19:50:44','2013-05-24 19:50:44','[fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"17px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][layerslider id=\"1\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][rev_slider captions_tall][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"20px\" paddingbottom=\"15px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Avada Gives You Power To [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Create[/popover] Something Beautiful</h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"20\" bottom_margin=\"55\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that make your content stand out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-trophy\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you perfect freedom.[/flip_box][/flip_boxes][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Dedicated Support\" title_back=\"You Can Count On Us\" text_front=\"We care about your site as much as you do, you can count on us for theme support.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We thrive on our users, and want to see everyone happy when using Avada.[/flip_box][flip_box title_front=\"Powerful Options\" title_back=\"Unleash The Power of Avada\" text_front=\"Avada\'s theme options and page options allow you to take control of your website.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-cog\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We build intuitive, user-friendly options so you can quickly and easily build your site.[/flip_box][flip_box title_front=\"Free Updates With Value\" title_back=\"Its Like Getting A New Theme\" text_front=\"We issue updates that matter; rich with amazing new features and improvements.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-gift\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada just keeps getting better and better, each update is like getting a brand new theme all for free.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"5px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? We Have The Best Support Around</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you purchase a copy of Avada you will also get the [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" strip_html=\"yes\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"-45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"60px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Amazingly Versatile Shortcodes[/title][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets emi sat.\n<ul class=\"arrow\">\n	<li>Fully responsive so your content looks great</li>\n	<li>Loaded with lots of amazing shortcodes</li>\n	<li>Unlimited color options via theme options</li>\n</ul>[/fusion_text][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"\" layout=\"vertical\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Tab #1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architeci.[/fusion_tab][fusion_tab title=\"Tab #2\" icon=\"\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo. amets dolores.[/fusion_tab][fusion_tab title=\"Tab #3\" icon=\"\"]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips ameet quasi architecto beatae vitae dicta sunt explicabo amets dolores.[/fusion_tab][/fusion_tabs][/two_third][/fullwidth][separator style_type=\"none\" top_margin=\"-50\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]','Home Version 15','','publish','open','closed','','home-version-15','','','2013-05-24 19:50:44','2013-05-24 19:50:44','',0,'http://avada.theme-fusion.comxml/?page_id=3638',0,'page','',0),(3652,1,'2013-05-24 19:55:33','2013-05-24 19:55:33','[separator style_type=\"none\" top_margin=\"-15\" bottom_margin=\"-15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Hey, We\'re <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">Avada</span></a> &amp; We Make Beautiful Things! Check It Out!</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"12\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][separator style_type=\"double\" top_margin=\"-30\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][testimonials backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226\" target=\"\"]\"Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized tha the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Yes, I have purchased it and it is working great. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. \"[/testimonial][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226\" target=\"\"]\"If I could give 100 stars for support and attention to detail I definitely would. I’ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. If you are considering buying this theme at all then take it from me, you will be extremely pleased. Thanks very much to Luke &amp; Muhammad!\"[/testimonial][testimonial name=\"Rel1961\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226\" target=\"\"]\"I have to echo sarumbear’s post on the previous page (82), I too can highly recomend this theme for it’s ease of use and support. Hell I manufacture cupboards for a living and have no previous experince with web design, so only use this to build our own company website and am finding it so easy, all the work is done for you. To the Avada team – thank you ALL for all the hard work especially after this huge update when you have released a further update the minute a problem was encountered. PS:- Mell I often have a good laugh at your responses to difficult customers\"[/testimonial][testimonial name=\"Strata1\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226\" target=\"\"]\"Hi, I just wanted to say thanks for the great theme. I’m finding new ways to improve it every day and find that it’s been the most user-friendly theme I’ve ever purchased. I am practically computer illiterate and know extremely little if anything at all about code, CSS, or any of the inner workings of a website. The Avada theme removes all the worry, hassle, frustration and angst that beginners (and novices) feel when designing websites. If you can read and follow directions, this theme is for you. I’ve tried a hundred plug-ins with other themes and the Avada theme makes almost all of them unnecessary and obsolete.\"[/testimonial][/testimonials][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? Over 70,000 Users Choose Avada!</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Build A Website!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you buy Avada you will also get the [tooltip title=\"Support Forum, Online Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team[/li_item][li_item icon=\"\"]Constant Updates Added With New Features[/li_item][/checklist][/one_half]','Home Portfolio Style 1','','publish','open','closed','','home-portfolio-style-1','','','2013-05-24 19:55:33','2013-05-24 19:55:33','',0,'http://avada.theme-fusion.comxml/?page_id=3652',0,'page','',0),(3655,1,'2013-05-24 19:56:24','2013-05-24 19:56:24','[fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"10px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Hey, We\'re <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">Avada</span></a> &amp; We Make Beautiful Things! Check It Out!</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"25px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][recent_works layout=\"grid-with-excerpts\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"2\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"6\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Portfolio Style 2','','publish','open','closed','','home-portfolio-style-2','','','2013-05-24 19:56:24','2013-05-24 19:56:24','',0,'http://avada.theme-fusion.comxml/?page_id=3655',0,'page','',0),(3658,1,'2013-05-24 19:56:57','2013-05-24 19:56:57','[postslider layout=\"posts\" excerpt=\"25\" category=\"design\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"\" title=\"Avada includes a blog shortcode you can use anywhere on the site!\" description=\"This blog shortcode was submitted by Markus, one of our Avada users and now on our developing team! It just goes to show what an awesome community we have, everyone is willing to help &amp; share ideas.  Dont wait, be a part of the Avada community today!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][blog number_posts=\"4\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"infinite\" strip_html=\"yes\" blog_grid_columns=\"2\" layout=\"grid\" class=\"\" id=\"\"][/blog]','Home Blog Style 1','','publish','open','closed','','home-blog-style-1','','','2013-05-24 19:56:57','2013-05-24 19:56:57','',0,'http://avada.theme-fusion.comxml/?page_id=3658',0,'page','',0),(3660,1,'2013-05-24 19:57:49','2013-05-24 19:57:49','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"\" title=\"Avada includes a blog shortcode you can use anywhere on the site!\" description=\"This blog shortcode was submitted by Markus, one of our Avada users and now on our developing team! It just goes to show what an awesome community we have, everyone is willing to help &amp; share ideas.  Dont wait, be a part of the Avada community today!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][blog number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"yes\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"2\" blog_grid_column_spacing=\"40\" layout=\"large\" class=\"\" id=\"\"][/blog]','Home Blog Style 2','','publish','open','closed','','home-blog-style-2','','','2013-05-24 19:57:49','2013-05-24 19:57:49','',0,'http://avada.theme-fusion.comxml/?page_id=3660',0,'page','',0),(3662,1,'2013-05-24 19:58:21','2013-05-24 19:58:21','[fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"20px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"66px\" paddingbottom=\"50px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? We Have The Best Support Around</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you buy Avada you will also get the [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/ipad2up1.png\" rel=\"prettyPhoto\"><img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/ipad2up1.png\" alt=\"lightbox title\"></a>[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/page_bkgd4.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#dadada\" borderstyle=\"\" paddingtop=\"40px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: left; font-size: 30px !important;\">Amazing <span style=\"color: #a0ce4e;\">Product:</span> Get It Before Anyone Else!</h1>\n<p style=\"text-align: left; margin-top: -10px; font-size: 17px;\">This is where your [tooltip title=\"But It Now!\"]<strong>amazing product</strong>[/tooltip] promotion text goes so your viewers can read about how awesome it is!</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/iphones_small1.png\" rel=\"prettyPhoto\"><img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/iphones_small1.png\" alt=\"lightbox title\"></a>[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"70px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Amazing Tools To Build Awesome Websites[/title][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with meta options for easy customization[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"\" href=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/laptop1.png\" rel=\"prettyPhoto\"><img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/laptop1.png\" alt=\"\"></a>[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/page_bkgd3.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"30px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Get This <span style=\"color: #a0ce4e;\">Amazing Product</span> Now! See Details Below!</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">This is where your [tooltip title=\"But It Now!\"]<strong>amazing product promotion text</strong>[/tooltip] can go so [tooltip title=\"Like you!\"]<strong>your viewers</strong>[/tooltip] can read about how awesome it is!</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/ipads1.png\" rel=\"prettyPhoto\"><img class=\"aligncenter\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/ipads1.png\" alt=\"lightbox title\"></a> [/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/mobile1.jpg\" rel=\"prettyPhoto\"><img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/mobile1.jpg\" alt=\"lightbox title\"></a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>What Else? Over 70,000 Users Choose Avada!</h2>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: left; margin-top: -10px;\">This is where your [tooltip title=\"And Use Cool Text Tooltips!\"]<strong>amazing product promotion text</strong>[/tooltip] can go so your viewers can read [tooltip title=\"Grab Their Attention!\"]<strong>all about the features</strong>[/tooltip] and see how awesome it is!</p>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][/checklist][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Purchase Avada Now![/button][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"-25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]','Product Launch','','publish','open','closed','','product-launch','','','2013-05-24 19:58:21','2013-05-24 19:58:21','',0,'http://avada.theme-fusion.comxml/?page_id=3662',0,'page','',0),(3678,1,'2013-05-24 20:01:55','2013-05-24 20:01:55','[one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" rel=\"attachment wp-att-3673\"><img class=\"alignnone size-full wp-image-3673\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" alt=\"image_3b\"></a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Who Am I?[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores quasi architecto beatae vitae dicta sunt nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam vols.[/fusion_text][separator style_type=\"single\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest Is The Right Choice For You[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team Around, Trust In Us[/li_item][li_item icon=\"\"]Constant Updates Added With New Features Give You Major Value[/li_item][li_item icon=\"\"]Power Elite Author Gives You Peace of Mind, You Can Trust In Us[/li_item][li_item icon=\"\"]Buy Avada Today And Join The Growing Community of Avada Users[/li_item][/checklist][/one_half][separator style_type=\"double\" top_margin=\"30\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"257\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"95\"]HTML[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"257\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"85\"]CSS[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"257\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"90\"]WP[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"257\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"100\"][fontawesome icon=\"thumbs-up\" circle=\"no\" size=\"large\" iconcolor=\"#747474\" circlecolor=\"#333333\" circlebordercolor=\"#333333\"][/counter_circle][/counters_circle][separator style_type=\"none\" top_margin=\"35\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Profile Picture[/title][person name=\"Johnathan Dorian\" title=\"Front End Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"\" pic_style_color=\"\" pic_bordersize=\"0\" pic_bordercolor=\"\" pic_borderradius=\"0\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"4px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo. Nemo enims sadip ipsums uns.[/person][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Some of my highlights[/title][accordian class=\"\" id=\"\"][toggle title=\"My Favorite Projects\" open=\"yes\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rers. [separator top=\"20\" style=\"none\"] [checklist icon=\"plus\" iconcolor=\"#fff\" circle=\"yes\"]\n<ul>\n	<li>Fully responsive so content looks great</li>\n	<li>Awesome sliders to showcase content</li>\n	<li>Amazing shortcodes loaded with options</li>\n</ul>\n[/checklist][/toggle][toggle title=\"The Highest Accomplishment\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam vols.[/toggle][toggle title=\"My Work Process\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un velit, sed quia nons. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enisi.[/toggle][toggle title=\"Off Topic Favorite Things to Do\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam vols.[/toggle][/accordian][/one_half][separator style_type=\"double\" top_margin=\"30\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Here\'s The <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">Good Stuff</span></a>. Some of My Best <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">Work</span></a> Is Featured Below.</h1>\n<p style=\"text-align: center; margin-top: -15px; font-size: 17px;\">Yes that\'s right, we\'ve added over <strong><span style=\"color: #a0ce4e;\">100 new features!</span></strong> New<span style=\"color: #a0ce4e;\"><strong> layouts</strong></span>, <strong><span style=\"color: #a0ce4e;\">short codes</span></strong>, <span style=\"color: #a0ce4e;\"><strong>theme options &amp; more</strong></span>!</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"6\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box]','About Me','','publish','open','closed','','about-me','','','2013-05-24 20:01:55','2013-05-24 20:01:55','',0,'http://avada.theme-fusion.comxml/?page_id=3678',0,'page','',0),(4204,1,'2013-04-08 23:16:22','2013-04-08 23:16:22','[tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"We know you will love Avada as much as we do. We put so much time and effort into Avada, and our wonderful users who buy it. But dont take our word for it, just ask our users!  Check below to read dozens of testimonials from our dedicated users!\" description=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][fusion_text]<span style=\"line-height: 1.5em;\">[/fusion_text][separator style_type=\"none\" top_margin=\"-25\" bottom_margin=\"-25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]</span>[/fusion_text][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Julie Larson\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Just bought my 5th and 6th copies of Avada this weekend!!! I just wanted to say how much I\'m loving your Avada Theme!!! It\'s awesome!!! :)[/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"KyliEvie\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Just posting for anyone considering buying this theme. It is absolutely wonderful to work with – you won’t regret a decision to buy it! I had a website entirely set up in a couple of hours with no glitches and my client is thrilled.[/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Riffster\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Seriously, WOW! I’ve purchased a ton of stuff on Envato. This theme is the cleanest and easiest to use. Well done folks.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"MarketingMonsters\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]WOW – I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. But thank you so much for this theme, Best $40 bucks I have ever spent in my entire life! WOW- AMAZING!.[/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]If I could give 100 stars for support and attention to detail I definitely would. I’ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. If you are considering buying this theme at all then take it from me, you will be extremely pleased.[/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Agustin666\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Great theme, I had to build a site in a hurry , and could choose no better, in 10 hours I have the site up and running, the best part is that I never had to ask for support, all parameter change was made within the theme and with a little css customization (also within the theme). Best wordpress theme I ever used![/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Trentscott\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This is absolutely one of the best themes I have ever worked with. Everything works so well – kudos.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Andrewhellmich\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Awesome design, awesome after sales service and support! Thanks guys, very happy.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aurelien\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you so much, Avada\'s support team is amazing! I\'m really glad I\'ve spent my money on a theme so well supported.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"JoMillerPh\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]THANK YOU for the best theme ever! I\'ve worked with quite a few, and this one is the first theme I\'m using repeatedly.[/testimonial][/testimonials][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Strata1\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hi, I just wanted to say thanks for the great theme. I’m finding new ways to improve it every day and find that it’s been the most user-friendly theme I’ve ever purchased. I am practically computer illiterate and know extremely little if anything at all about code, CSS, or any of the inner workings of a website. The Avada theme removes all the worry, hassle, frustration and angst that beginners (and novices) feel when designing websites. If you can read and follow directions, this theme is for you. I’ve tried a hundred plug-ins with other themes and the Avada theme makes almost all of them unnecessary and obsolete.[/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Breakbeat\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Your theme is beautiful, I really love it! It’s very customizable: everyone can completely personalize it and that is power. Thanks to the great staff who reply immediately to thousands of “problematic people”…[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Alfromhell\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you very much for your quick and useful response. Your theme is an awesome piece of work! WOW! It was super easy – I WILL GIVE YOU 5 STARS! Thanx a lot guys!!![/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Deadro\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hello, I have just to say YOUR THEME IS AMAZING! I bought another one but after AVADA I can’t use it. I’ m back and I use AVADA again for another client. THANKS A LOT.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"sparkysplus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you. I have purchased the theme and I’m very happy that I did. Its so much better than the other themes that I have seen. The list of options is amazing.[/testimonial][/testimonials][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Stephanvuuren\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thanks so much for the quick support. You solved my problem. I can’t believe it was such a simple oversight from my side. I misunderstood the instructions, but makes complete sense in hindsight. You rock! Thanks so much for taking the time to help a novice like me. The theme is really great and easy to install, even for someone like me who comes predominantly from a print design and comms background. I’m really impressed with your service and support! [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Rel1961\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I have to echo sarumbear’s post on the previous page (82), I too can highly recomend this theme for it’s ease of use and support. Hell I manufacture cupboards for a living and have no previous experince with web design, so only use this to build our own company website and am finding it so easy, all the work is done for you. To the Avada team – thank you ALL for all the hard work especially after this huge update when you have released a further update the minute a problem was encountered.[/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Ngiverson\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hi there – am a WordPress neophyte and your theme was so helpfu! It allowed me to set up a business website even without having any significant HTML knowledge. Thanks for offering so many bells and whistles![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Emily 2013\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Dearest Team of ThemeFusion, Thank you – Thank You – Thank You!!!! Yout support is so great!!!! And your passion helping others to get it is huge!!! I appriciate your wonderful support![/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"SeriousToni\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought the theme last week and really I must say the documentation is great and so it is fun to work with it! Thank you for your great job here, guys! Keep up the good work! :)[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"bfield3\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]For anyone considering the purchase of this theme and might be on the fence as to whether or not to buy it, I say go for it! The documentation is wonderful and even though I haven’t posted a question in the support forum yet, I can see no questions go unanswered and are often answered within a matter of hours or less. The few questions I have had I found were already answered in the forum. Plus take a look at all the features this theme includes. It’s got everything but the kitchen sink….maybe it’s got that too but I haven’t found it yet I’m giving major props to the ThemeFusion team for the theme and their support. In a world where you can get a “widget” (no pun intended) from anyone, customer support always makes or breaks you. These guys have it nailed.Nice work ThemeFusion team.[/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Ganga108\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hi, guys just want to say thanks for such awesome theme and outstanding support! I love that I can search your forum, open the ticket and you even provide php code for changes when they are needed! Makes it all so easy and inspiring! I can focus on designing and structuring info on my site, instead of trying to figure out how it works for hours:) Thanks![/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"MrIpkiss\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]It’s one of the best themes I have ever bought on themeforest. I use it for my website which was build with my webbuilder next to me. He did not knew this theme before and he said that it was the easiest wordpress navigation structure that he has ever seen. So esecially if you are new with wordpress, this is the theme you will need! [/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Dalemartin12\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]You guys have thought of everything with this theme. I am really enjoying it, the documentation is very well done.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"HHarland123\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This theme rocks and because it’s so well made it’s making my life much easier![/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Tinnsiah\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Great theme. Easy to use and get around creating pages of different looks. [/testimonial][/testimonials][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Deana Zelinova\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I can\'t imagine nothing better. AVADA is easy to use also for beginner as me. Great job guys! [/testimonial][/testimonials][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Martinitgirl\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I love this theme… it totally kicks ass[/testimonial][/testimonials][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"eMKT\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This developer ISNT joking about customer service. If you are about to buy it, close your eyes and invest this 40 USD. That is nothing compare to the quality of this template.[/testimonial][/testimonials][/two_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"DeeJaeb\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This is an incredible theme. The more I work with it, the more I see how easy it is to customize and do anything!!! Your support is also outstanding. My two small inquiries, you got back to me immediately. I will use this template for many more sites in the future. Keep up the good work. And THANKS!!!![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Djaef\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you Luke and Muhammad for your awesome theme, and for your belief in the importance of ongoing improvements of the theme and for your stellar efforts in establishing, maintaining and improving customer service. The theme is great by itself, but I believe it\'s the other stuff that keeps it popular, as that\'s what keeps customers happy.[/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"ePixelMedia\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Purchasing the Avada theme turned out to be a GREAT decision! The user friendly theme options, video tutorials and support forum are all second to none. All this support allowed me to focus on my layout and not spending all my time trying to figure out how to use the theme.I highly recommend the Avada theme![/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Sarumbear\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought a copy of this theme to test and I am impressed. Not only the theme is well thought out with good amount options and excellent customisation facilities but their support at their support forum is exemplary.\nI can thoroughly recommend the theme and the developer. I will be buying more licenses.[/testimonial][/testimonials][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Die_wonne\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Just wanna say THANK YOU! Avada is just great. It’s easy to use and has some really neat features. It’s a pleasure to work with it. My clients are happy and so am I. Go ahead![/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Javed_iqbal\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I have to say the documentation must be the best I have come across with a theme, Thanks![/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Tobedoit\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]u know what? u r so great that I want to buy whatever u wl make. After Service is tremendous :)[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"jvgDesign\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you so much for your quick and accurate responses. Your theme is really wonderful![/testimonial][/testimonials][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Christobar9\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thanks. You guys are awesome! Your support is just as (if not more) ‘responsive’ as this amazing theme. [/testimonial][/testimonials][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"DavidTrees\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This video is totally brilliant. A simple, visual explanation of how to use short codes that even an almost newbie can understand and use straight away. I\'ve been trying to find an easy to listen to (some others have no voice...insane) and understand video. I got to say... This rocks, your theme rocks, and dude... You do too :) Thanks for taking the time to create this. I will look at the others now too. The videos are why I am buying and recommending your theme. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Sherman\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Awesome, You People are Extraordinary with Support and I don\'t know any word which is bigger than extraordinary or have written here million times. Superb Theme Superb People and Superb Support. Thanks a Lot for Awesome Help! I don\'t need to buy any theme again, this is ultimate THEME for Me for Every Business and Client of Mine. Thanks a Million![/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"kdt784\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Awesome! Thank you. I seriously love this theme. The features are outstanding and the support rocks. Someone recommended it to me and I\'m so glad they did. Good stuff. [/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Hindrik\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Just wanted to say that the themefusion guys just helped me out on the forum. Great service. A new update is coming out which fixes the problem. It’s an awesome theme and the guys work really hard on it. The shortcodes are really easy to use and they have lots of it. Also good design with conversion elements. Good luck guys and thanks again for the help![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Jeremysoca\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I have never in my life received more value for my money in regards to the product and the post purchase support I received. As a newcomer to WP I had multiple questions which where answered OVER THE WEEKEND WITHIN SECONDS. Absolutely AMAZING!!! On top of all that, this is a first rate, perfectly executed theme. Man, all this for $40???? WOW!!![/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Marymaier\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]This theme is GREAT. I have tried to work with other themes in the past and always run into bugs, but not with Avada! It is very easy to customize the theme to suit your site without any code knowledge. The portfolio and sliders are a must-have for me, and Avada truly delivers! I will be sticking with Avada for quite some time because it is so functional and flexible![/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Jwhosky1\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]You guys really have the best user comment response I have seen. I have purchased nearly 45 themes in the last 2 years and I am really impressed with your service.[/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Tashigyaltsen\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Excellent template. One of the best theme I have ever used. Every minor detail has been taken care of. Awesome support as well. Not 5 but 10 Star Ratings. [/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Ferry\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hey, I Love This Theme!! It’s amazing… Never had any issues with it! It works fine and is surely one of the top themes of this age![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"3elevenmedia\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you so much! amazing support! amazing theme![/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Ross Sadler\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Awesome theme, awesome support! 5*Stars! [/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"VernK\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]INCREDIBLE INCREDIBLE INCREDIBLE!!! Thats all I can say about this theme and the documentation that comes with it. It seriously is amazingly created and I am so impressed with all the work you put into the documentation that I am shocked!! The theme works flawlessly and I migrated from my old theme to Avada without any issues. Be very proud of your work because you deserve to be!! I recommended your Avada theme to a few others today because I do really believe it is the best theme on and off themeforest. Keep up the fabulous work!![/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Themis_Designs\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hi. I just want to say that this is the most amazing theme and an absolute joy to work with. I’m not WordPress savvy at all, and this is the third premium theme I’ve bought, trying to get it right. You know what they say, third time is the charm. I have other websites to create in the future. Avada is my number 1 choice from now on. Thanks so much for creating something so beautiful, so easy to work with, and not only that, it loads fast, too. [/testimonial][/testimonials][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Brenda and Lisa\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]We just wanted to say Thank You for your great responses, an amazing theme and awesome forum and video tutorials. We are actually learning about all the components of theme design from the very thorough explanations! We are so happy we chose this theme after failing with others. no comparison. this theme really rocks….and it will rock more when we learn everything about it! Theme Fusion is absolute 5 Star![/testimonial][/testimonials][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Gawdess\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I’m only half way to setting the whole website but I’m breezing through it since it’s really easy to do it. I’m very pleased with the design, customization and functionality… not a single regret![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"cgowan_i\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thanks for creating such an excellent and well put together theme. The theme has been brilliant and it\'s allowed me to put together a very professional looking website with minimal coding. Keep up the great work! :-)[/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Andrewwhellmich\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]You bloody legends! I don’t know how you do the things you do but that’s awesome – thank you… again. I’ll be singing your praises from the rooftops.\nHave a great weekend.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Stiggandr1\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hey Theme Fusion. Just wanted to say thanks for the great videos. I\'ve recently expanded from Joomla to Wordpress and am using your Avada theme. These videos have been a huge help in learning my way around WP as well as using the Avada theme to its full potential.[/testimonial][/testimonials][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Breakbeat\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Avada is the best theme I’ve ever bought! Theme Fusion has the best support over the net! Keep it up![/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Joelbechtolt\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Hello! I have to say, this is the most versatile, user-friendly theme I have ever worked with. I couldn’t be happier with my purchase.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Michael_Gleeson\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thanks For the great Product. As an experience web designer I find this solves a lot clients request and makes website turnover a breeze.[/testimonial][/testimonials][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"TMac313\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Bravo on an AWESOME theme! I am just finishing up my site and I absolutely love it and your support service is superb! I gave you a 5 star rating! Thank you![/testimonial][/testimonials][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"WindyCityFella\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Avada keeps getting better &amp; better. Now with the added UberMenu Plugin compatibility and updated the other great features, the possibilities are endless.[/testimonial][/testimonials][/one_fourth][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Want to join the club and experience these awesome results our users have had?\" description=\"All you need to do is buy Avada! You will not be disappointed, our theme and service are top of the line! Buy now!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box]','User Reviews','','publish','open','closed','','user-reviews-2','','','2013-04-08 23:16:22','2013-04-08 23:16:22','',0,'http://avada.theme-fusion.comxml/?page_id=3537',0,'page','',0),(3697,1,'2013-05-24 20:06:34','2013-05-24 20:06:34','[blog number_posts=\"10\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"yes\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"grid\" class=\"\" id=\"\"][/blog]','Grid','','publish','open','closed','','grid','','','2013-05-24 20:06:34','2013-05-24 20:06:34','',0,'http://avada.theme-fusion.comxml/?page_id=3697',0,'page','',0),(3698,1,'2013-05-24 20:06:42','2013-05-24 20:06:42','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes or no\" meta_categories=\"yes or no\" meta_comments=\"yes or no\" meta_date=\"yes or no\" meta_link=\"yes or no\" meta_tags=\"yes\" paging=\"no\" scrolling=\"infinite\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"timeline\" class=\"\" id=\"\"][/blog]','Timeline','','publish','open','closed','','timeline','','','2013-05-24 20:06:42','2013-05-24 20:06:42','',0,'http://avada.theme-fusion.comxml/?page_id=3698',0,'page','',0),(3699,1,'2013-05-24 20:06:48','2013-05-24 20:06:48','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"large alternate\" class=\"\" id=\"\"][/blog]','Large Alternate','','publish','open','closed','','large-alternate','','','2013-05-24 20:06:48','2013-05-24 20:06:48','',0,'http://avada.theme-fusion.comxml/?page_id=3699',0,'page','',0),(3700,1,'2013-05-24 20:06:54','2013-05-24 20:06:54','[blog number_posts=\"6\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"30\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"yes\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" layout=\"medium alternate\" class=\"\" id=\"\"][/blog]','Medium Alternate','','publish','open','closed','','medium-alternate','','','2013-05-24 20:06:54','2013-05-24 20:06:54','',0,'http://avada.theme-fusion.comxml/?page_id=3700',0,'page','',0),(3705,1,'2013-05-24 20:18:58','2013-05-24 20:18:58','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Post Sliders Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes an awesome Flexsldier plugin that comes bundled with shortcodes. There are 3 different post sliders that can be used. Two of them work with your blog posts, and one is for image attachments. They are great for showcasing your blog posts and images on your website.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"35\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Post Slider With Titles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">One of the layouts that goes perfectly with your blog is the Post Slider With Titles. It automatically pulls your posts and displays it beautifully. Choose which category you\'d like to include and exclude, as well as the number of slides that will be displayed.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"35\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Post Slider With Titles[/title][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ac nisl eget metus imperdiet venenatis non at nisi. Nam vitae risus neque, sed egestas sem. Suspendisse tristique, purus et ullamcorper tempor, purus enim scelerisque nisl, eget mollis turpis tellus ac augue. Proin aliquet lorem at magna eleifend molestie. Donec eu malesuada odio. Pellentesque euismod nulla eget lorem fringilla pharetra. In odio leo, interdum nec laoreet sed, tempus sit amet.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use per page[/li_item][li_item icon=\"\"]Auto pulls recent blog posts & titles[/li_item][li_item icon=\"\"]Many parameters to control content & slide[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Post Slider With Titles &amp; Excerpt</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Another layout that goes great with your blog is the Post Slider With Titles and Excerpt. It automatically pulls your posts and adds an excerpt to provide your viewers with a sneak peek into the article. Set various settings such as how long your excerpt will be, which category you\'d like to include and exclude, as well as the number of slides that will be displayed.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Post Slider Excerpt & Titles[/title][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ac nisl eget metus imperdiet venenatis non at nisi. Nam vitae risus neque, sed egestas sem. Suspendisse tristique, purus et ullamcorper tempor, purus enim scelerisque nisl, eget mollis turpis tellus ac augue. Proin aliquet lorem at magna eleifend molestie. Donec eu malesuada odio. Pellentesque euismod nulla eget lorem fringilla pharetra. In odio leo, interdum nec laoreet sed, tempus sit amet.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use per page[/li_item][li_item icon=\"\"]Auto pulls recent blog posts, titles, excerpt[/li_item][li_item icon=\"\"]Many parameters to control content & slide[/li_item][/checklist][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts-with-excerpt\" excerpt=\"20\" category=\"design\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/two_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Post Slider With Attachments</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Attachments layout will automatically pull any images attached to the page, or images from a post. Open your image in a lightbox, or link it to the article. Also control which categories are included or excluded.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"attachments\" excerpt=\"20\" category=\"\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Post Slider With Attachments[/title][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ac nisl eget metus imperdiet venenatis non at nisi. Nam vitae risus neque, sed egestas sem. Suspendisse tristique, purus et ullamcorper tempor, purus enim scelerisque nisl, eget mollis turpis tellus ac augue. Proin aliquet lorem at magna eleifend molestie. Donec eu malesuada odio. Pellentesque euismod nulla eget lorem fringilla pharetra.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use per page[/li_item][li_item icon=\"\"]Auto pulls recent blog posts, titles, excerpt[/li_item][li_item icon=\"\"]Many parameters to control content & slide[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the post slider shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>layout</strong> - Can be one of these values: <em>posts</em>, which pulls blog posts, <em>attachments</em>, which pulls images attached to the page and shows thumbnail navigation, or <em>posts-with-excerpt</em>, which pulls blog posts with excerpts.[/li_item][li_item icon=\"\"]<strong>excerpt</strong> - Accepts a numerical value that sets the number of words you want to show in the excerpt. Can only be used with the <em>posts-with-excerpt</em> layout.[/li_item][li_item icon=\"\"]<strong>category</strong> - The <em>slug</em> of the category you want to display.[/li_item][li_item icon=\"\"]<strong>limit</strong> - Accepts a numerical value that  sets the number of slides you\'d like to display.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>lightbox</strong> - Can be one of these values: <em>yes,</em> or <em>no. </em>Can only be used with the <em>attachments</em> layout.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a<em> custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Page Post Sliders','','publish','open','closed','','page-post-sliders','','','2013-05-24 20:18:58','2013-05-24 20:18:58','',0,'http://avada.theme-fusion.comxml/?page_id=3705',0,'page','',0),(3713,1,'2013-05-24 20:22:31','2013-05-24 20:22:31','[fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"10px\" paddingbottom=\"20px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Avada <span style=\"color: #a0ce4e;\">:</span> Includes The Ability For A 100% Width Page</h1>\n<p style=\"text-align: center; margin-top: -10px;\">Yes that\'s right, you can now have a <strong><span style=\"color: #84b231;\">100&amp; Full Width Page!</span></strong> Along with the new page template is a <span style=\"color: #84b231;\"><strong>full width shortcode</strong></span> that you can use to contain content, insert background images or use a background color along with awesome scrolling effects. The new layout possibilities are absolutely stunning!</p>\n[/fusion_text][/fullwidth][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"yes\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth]','Full Width 100%','','publish','open','closed','','full-width-100','','','2013-05-24 20:22:31','2013-05-24 20:22:31','',0,'http://avada.theme-fusion.comxml/?page_id=3713',0,'page','',0),(3717,1,'2013-05-24 20:54:51','2013-05-24 20:54:51','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Toggles Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Toggles are perfect for adding multiple sections of information with varying content and titles, such as a frequently asked questions. Toggles will only allow one item to be open at a time, giving your viewer a chance to interact with them.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"rgba(255,255,255,.2)\" bordersize=\"15px\" borderradius=\"0\" stylecolor=\"\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada Toggle Shortcode[/title][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][separator style_type=\"none\" top_margin=\"22\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"We Can Deliver On Projects\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Open On Page Load</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Avada\'s Toggle Shortcode allows you to set a toggle or multiple toggles to open when the page loads, and insert an array of shortcode content into them.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"yes\"]<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\"><img class=\"alignleft wp-image-4010 size-thumbnail\" src=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2013/10/person-150x150.jpg\" alt=\"person\" width=\"150\" height=\"150\" /></a>Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets unosi sectetut sits met fermntum condim eser ntumsi nibh, uum a justo vitaes amet risus amets. Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets unosi sectetut sits met fermntum condim eser ntumsi nibh, uum a justo vitaes amet risus amets.\n<div style=\"clear: both;\"></div>[/toggle][toggle title=\"The Avada Philosophy\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets unosi sectetut sits met fermntum[/toggle][/accordian][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"yes\"][checklist icon=\"\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Lorem ipsum dolor sit amet[/li_item][li_item icon=\"\"]Lorem ipsum dolor sit amet[/li_item][li_item icon=\"\"]Lorem ipsum dolor sit amet[/li_item][/checklist]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets unosi sectetut sits met fermntum condim eser ntumsi nibh, uum a justo vitaes amet risus amets.[/toggle][toggle title=\"The Avada Philosophy\" open=\"no\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets unosi sectetut sits met fermntum[/toggle][/accordian][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the toggles shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>title</strong> - The <em>custom title text</em> of the individual accordion item.[/li_item][li_item icon=\"\"]<strong>open</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. Sets which accordion-item should be open by default when the page loads.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Toggles','','publish','open','closed','','accordions-toggles','','','2013-05-24 20:54:51','2013-05-24 20:54:51','',0,'http://avada.theme-fusion.comxml/?page_id=3717',0,'page','',0),(3719,1,'2013-05-24 20:55:29','2013-05-24 20:55:29','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Alert Message Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">These are perfect for displaying important information, alerts or messages to your viewers. The options we include allow you to animate the box when it shows in the viewport, use font awesome icons, customize the colors, accent colors, border sizes and more.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"general\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Alert Message Content Goes Here[/alert][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"general\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Click The X To Close Out The Box[/alert][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>4 Default Message Types Or Build Your Own</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">There are 4 default message types: general, error, success, notice.  And a \"custom\" message type can be used to customize the elements.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"general\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Default General Message Type[/alert][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"error\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Default Error Message Type[/alert][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"success\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Default Success Message Type[/alert][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"notice\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Default Notice Message Type[/alert][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The shortcode options allow you to set background colors, accent colors (text/icon), border size and color, and display a bottom shadow.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"custom\" accent_color=\"#ecf7d4\" background_color=\"#a2cc55\" border_size=\"1px\" icon=\"fa-cog\" box_shadow=\"no\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Fully Customizable Settings![/alert][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"custom\" accent_color=\"#ffffff\" background_color=\"#74badb\" border_size=\"0px\" icon=\"fa-cog\" box_shadow=\"no\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Customize The Background Color[/alert][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"custom\" accent_color=\"#ffc852\" background_color=\"#d5962c\" border_size=\"0px\" icon=\"fa-paint-brush\" box_shadow=\"no\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Customize The Accent Colors[/alert][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"custom\" accent_color=\"#dda34a\" background_color=\"#ffffff\" border_size=\"5px\" icon=\"fa-wrench\" box_shadow=\"no\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Control The Border Size[/alert][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"custom\" accent_color=\"#74badb\" background_color=\"#ffffff\" border_size=\"5px\" icon=\"fa-eyedropper\" box_shadow=\"no\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Control The Border Color[/alert][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"general\" accent_color=\"#ffffff\" background_color=\"#cccccc\" border_size=\"1\" icon=\"fa-adjust\" box_shadow=\"yes\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"]Subtle Box Shadow Setting[/alert][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Animation Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Alert boxes can have CSS3 animations. This allow the box to animate when it comes into the viewport to helps catch the viewers eye.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"general\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"bounce\" animation_direction=\"down\" animation_speed=\"0.5\" class=\"\" id=\"\"]Bounce Animation Setting[/alert][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"error\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.5\" class=\"\" id=\"\"]Slide Animation Setting[/alert][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"success\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"flash\" animation_direction=\"left\" animation_speed=\"0.5\" class=\"\" id=\"\"]Flash Animation Setting[/alert][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][alert type=\"notice\" accent_color=\"\" background_color=\"\" border_size=\"1px\" icon=\"\" box_shadow=\"yes\" animation_type=\"shake\" animation_direction=\"up\" animation_speed=\"0.5\" class=\"\" id=\"\"]Shake Animation Setting[/alert][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>type</strong> - Can be one of these values: <em>general, error, success, notice, </em>or<em> custom.</em> Sets the type of alert message.[/li_item][li_item icon=\"\"]<strong>accent_color</strong> - <em>Custom </em>setting only. Accepts a hexcode <em>( #000000 ). </em> Sets the border, text and icon color.[/li_item][li_item icon=\"\"]<strong>background_color</strong> - <em>Custom</em> setting only. Accept a hexcode <em>( #000000 ). </em>Sets the background color.[/li_item][li_item icon=\"\"]<strong>border_size</strong> - <em>Custom </em>setting only. Accepts a pixel value. For example, <em>1px.</em> Sets border width.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\" target=\"_blank\">font awesome</a> icon value. For example, <em>fa-glass.</em>[/li_item][li_item icon=\"\"]<strong>box_shadow</strong> - Can be one of these values: <em>yes,</em> or <em>no</em>. This will show or hide a box shadow below the alert box.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, </em><em>bounce, fade, flash, shake, </em>or<em> slide.</em> Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or up. Sets the incoming direction for the animation.<strong>\n</strong>[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Alert Messages','','publish','open','closed','','alert-messages','','','2013-05-24 20:55:29','2013-05-24 20:55:29','',0,'http://avada.theme-fusion.comxml/?page_id=3719',0,'page','',0);
INSERT INTO `wp_posts` VALUES (3725,1,'2013-05-24 20:56:23','2013-05-24 20:56:23','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"Avada comes with several carousel sliders to display your images. Recent Work works directly with your portfolio posts, Client Carousel is used to display client logos or images, and the Image Carousel is perfect for random images that need to be displayed on your site. \" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Recent Work Carousel[/title][recent_works layout=\"carousel\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" excerpt_length=\"35\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<h3>Use Carousels With Columns</h3>\nThe recent work carousel can be used inside of column shortcodes to control the size. By default it will display all categories of portfolio posts. Users can specify that only a specific category is displayed instead of all categories, which gives you full control over what posts are seen by viewers.[/fusion_text][/one_third][two_third last=\"yes\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"carousel\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" excerpt_length=\"35\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/two_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Client Carousel[/title][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<h3>Use Carousels With Columns</h3>\nThe client logo carousel can be used in column shortcodes. And its perfect to display client logos that link directly to projects on your site, or to an external page. There is also a \"linktarget\" attribute that allows you to select how the link will open.[/fusion_text][/one_third][two_third last=\"yes\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/client.png\" alt=\"\"][/clients][/two_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Image Carousel[/title][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"\" linktarget=\"_self\" image=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" alt=\"\"][/clients][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<h3>Use Carousels With Columns</h3>\nThe client logo carousel can be used in column shortcodes. And its perfect to display client logos that link directly to projects on your site, or to an external page. There is also a \"linktarget\" attribute that allows you to select how the link will open.[/fusion_text][/one_third][two_third last=\"yes\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][clients picture_size=\"fixed\" class=\"\" id=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][client link=\"#\" linktarget=\"\" image=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"\"][/clients][/two_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use and items per carousel and per page[/li_item][li_item icon=\"\"]Specify a specific category to display in recent work carousel[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Use with column shortcodes to control the width[/li_item][li_item icon=\"\"]Set the link target attribute to control how the link opens[/li_item][/checklist][/one_half]','Carousel Sliders','','publish','open','closed','','carousel-sliders','','','2013-05-24 20:56:23','2013-05-24 20:56:23','',0,'http://avada.theme-fusion.comxml/?page_id=3725',0,'page','',0),(11679,1,'2016-08-29 20:20:04','2016-08-29 20:20:04','','9756','','inherit','closed','closed','','9756','','','2016-08-29 20:20:04','2016-08-29 20:20:04','',0,'http://freereincenter.com/wp-content/uploads/2016/08/9756.jpg',0,'attachment','image/jpeg',0),(11680,1,'2016-08-29 20:20:04','2016-08-29 20:20:04','','3873','','inherit','closed','closed','','3873','','','2016-08-29 20:20:04','2016-08-29 20:20:04','',0,'http://freereincenter.com/wp-content/uploads/2016/08/3873.jpg',0,'attachment','image/jpeg',0),(11681,1,'2016-08-29 20:20:04','2016-08-29 20:20:04','','10713','','inherit','closed','closed','','10713','','','2016-08-29 20:20:04','2016-08-29 20:20:04','',0,'http://freereincenter.com/wp-content/uploads/2016/08/10713.jpg',0,'attachment','image/jpeg',0),(3727,1,'2013-05-24 20:56:37','2013-05-24 20:56:37','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Content Boxes Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Content boxes are a great way to display unique, featured or highlighted content to your viewer. Our content box shortcode is loaded with design and customization options.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Flexible Content Boxes\" icon=\"fa-heart\" backgroundcolor=\"#f4f4f4\" iconcolor=\"#ffffff\" circlecolor=\"#292929\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Display content attractively by using Avada\'s Content Boxes![/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>4 Design Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Content boxes come in 4 different design styles allowing you to choose the style per shortcode instance.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Icon Boxed\" icon=\"fa-th-large\" backgroundcolor=\"#f4f4f4\" iconcolor=\"#ffffff\" circlecolor=\"#292929\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][content_boxes layout=\"icon-with-title\" icon_circle_size=\"small\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Icon Beside Title\" icon=\"fa-arrow-right\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Transparent Background\" icon=\"fa-tint\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][content_boxes layout=\"icon-on-side\" icon_circle_size=\"small\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Aligned With Title\" icon=\"fa-align-left\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Utilize Them In 1-6 Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Our column option is built into the content boxes allowing you to choose 1-6 columns</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"4\" class=\"\" id=\"\"][content_box title=\"1 of 4 Columns\" icon=\"fa-star\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"2 of 4 Columns\" icon=\"fa-star\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"3 of 4 Columns\" icon=\"fa-star\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"4 of 4 Columns\" icon=\"fa-star\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"1 of 3 Columns\" icon=\"fa-star-o\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"2 of 3 Columns\" icon=\"fa-star-o\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"3 of 3 Columns\" icon=\"fa-star-o\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"2\" class=\"\" id=\"\"][content_box title=\"1 of 2 Columns\" icon=\"fa-star-half-o\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"2 of 2 Columns\" icon=\"fa-star-half-o\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"horizontal\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"1\" class=\"\" id=\"\"][content_box title=\"Full Width\" icon=\"fa-arrows-h\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Font Awesome &amp; Custom Icon Integration</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Content boxes can utilize any of the font awesome icons, or you can choose to upload custom icons. Font Awesome icons can be set to flip, rotate and spin.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"Flip Icon\" icon=\"fa-check\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"horizontal\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"Rotate Icon\" icon=\"fa-user\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"90\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][content_box title=\"Spinning Icon\" icon=\"fa-refresh\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"yes\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Styling Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Fully control the styling of the icons, circles, borders, alignment and more.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"Abundance of Icons\" icon=\"fa-pencil\" backgroundcolor=\"#74badb\" iconcolor=\"#ffffff\" circlecolor=\"#4f95bf\" circlebordercolor=\"#74badb\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span>[/content_box][content_box title=\"Border Customization\" icon=\"fa-square-o\" backgroundcolor=\"#a2cc55\" iconcolor=\"#a2cc55\" circlecolor=\"#ffffff\" circlebordercolor=\"#a2cc55\" iconflip=\"\" iconrotate=\"90\" iconspin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #436311;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span>[/content_box][content_box title=\"Circle Containers\" icon=\"fa-refresh\" backgroundcolor=\"#d5962c\" iconcolor=\"#ffffff\" circlecolor=\"#c08520\" circlebordercolor=\"#ffffff\" iconflip=\"\" iconrotate=\"\" iconspin=\"yes\" image=\"\" image_width=\"35\" image_height=\"35\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktext=\"Learn More\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"] <span style=\"color: #ffe5b7;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span>[/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>columns</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6. </em>Sets the number of columns per row.[/li_item][li_item icon=\"\"]<strong>color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the counter\'s value and icon color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title_size</strong> - Accepts a numerical value that sets the font size of the title text in pixels. For example, <em>50</em>.[/li_item][li_item icon=\"\"]<strong>icon_size</strong> - Accepts a numerical value that sets the font size of the icon in pixels. For example <em>50</em>.[/li_item][li_item icon=\"\"]<strong>body_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the body font\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>body_size</strong> - Accepts a numerical value that sets the font size of the body text in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>border_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>value</strong> - The <em>Counter Value. </em>Accepts a numerical value to set the value to which the counter will animate. For example, <em>95</em>.[/li_item][li_item icon=\"\"]<strong>unit</strong> - Accepts an alphanumeric value or symbols to represent a unit of measurement. For example, <em>%</em> or <em>cm</em>.[/li_item][li_item icon=\"\"]<strong>unit_pos</strong> - Can be one of these values: <em>prefix</em> to place before the counter, or<em> suffix </em>to place after the counter.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A font awesome icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>direction</strong> - Can be one of these values: <em>up, </em>or<em> down. </em>Sets the counter to count up or to count down.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Content Boxes','','publish','open','closed','','content-boxes','','','2013-05-24 20:56:37','2013-05-24 20:56:37','',0,'http://avada.theme-fusion.comxml/?page_id=3727',0,'page','',0),(3729,1,'2013-05-24 20:56:50','2013-05-24 20:56:50','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Separator Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes several different separator styles. They are perfect to use for breaking up content and draw the users eye to the next section. Each separator shortcode also has margin settings included that allows you to adjust the spacing so you can obtain more, or less, around the divider.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][separator style_type=\"shadow\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Separator Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">There are 8 different separator styles: No Style, Single Border Solid, Double Border Solid, Single Border Dashed, Double Border Dashed, Single Border Dotted, Double Border Dotted, or Shadow.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"single\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"double|dashed\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"double\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"single|dotted\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"single|dashed\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][separator style_type=\"double|dotted\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][separator style_type=\"shadow\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Control the top and bottom margin of the separator, as well as it\'s color, and width. You can also choose to display an icon in the center.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"#92be43\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][separator style_type=\"single|dashed\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"#62a7c9\" icon=\"fa-star\" width=\"75%\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][separator style_type=\"shadow\" top_margin=\"50\" bottom_margin=\"50\" sep_color=\"#ca7b25\" icon=\"fa-user\" width=\"40%\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eros ipsum, facilisis eget scelerisque non, fermentum at tellus. Etiam eleifend nibh quis eros gravida luctus. Vestibulum et velit tellus. Maecenas at fermentum dui. Nam metus nisl, volutpat id faucibus non, auctor at lectus. Nulla elementum, tortor non ornare feugiat, sapien nulla commodo velit, eget ultrices mauris nisi vitae ipsum. Ut vel dolor vel lacus venenatis egestas eget vel ante. Sed id mi turpis, sed ultrices orci ulla ids.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the separator shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>style_type</strong> - Can be one of these values: <em>none, single, double, single|dashed, double|dashed, single|dotted, double|dotted, </em>or<em> shadow</em>. Sets the separator\'s line style.[/li_item][li_item icon=\"\"]<strong>top_margin</strong> - Accepts a numerical value to set the top margin. For example <em>40</em> to increase spacing, or -<em>40</em> to decrease spacing.[/li_item][li_item icon=\"\"]<strong>bottom_margin</strong> - Accepts a numerical value to set the bottom margin. For example <em>40</em> to increase spacing, or -<em>40</em> to decrease spacing.[/li_item][li_item icon=\"\"]<strong>sep_color</strong> - Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the separator\'s color. Leave Blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\">font awesome</a> icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>width</strong> - Accepts a pixel value or a percentage to set the width. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Separators','','publish','open','closed','','separators','','','2013-05-24 20:56:50','2013-05-24 20:56:50','',0,'http://avada.theme-fusion.comxml/?page_id=3729',0,'page','',0),(3731,1,'2013-05-24 20:57:15','2013-05-24 20:57:15','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Font Awesome Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Font Awesome Icons are incredibly awesome. Avada has them built right into the theme so you can use any of the 300+ icons. Each one comes in 3 sizes and can be used with or without a circle and every one is 100% full vector so they look incredibly sharp and are retina-ready!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fontawesome icon=\"fa-tablet\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flask\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-magic\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-book\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-comments-o\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-random\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-umbrella\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-laptop\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-key\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-leaf\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cog\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Size Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Display the Font Awesome icons in 3 sizes, Small, Medium, or Large.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Large Icons[/title][fontawesome icon=\"fa-stethoscope\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-picture-o\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-sitemap\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-comment-o\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Medium Icons[/title][fontawesome icon=\"fa-magnet\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-asterisk\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bar-chart-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-beer\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bell-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bookmark\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-fighter-jet\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud-upload\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-credit-card\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-mobile\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-pencil-square-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gavel\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gift\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-unlock\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Small Icons[/title][fontawesome icon=\"fa-wrench\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-floppy-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-user\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-columns\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-arrow-circle-o-up\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-file\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tint\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-envelope\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-link\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-eye\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-coffee\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tasks\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-square-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tag\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gift\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-spinner\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumb-tack\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-arrows\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-headphones\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-music\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-heart-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-check\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-times\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-pencil\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-minus\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-phone\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-refresh\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-plus\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-font\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-star-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-rocket\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bullseye\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-smile-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-code\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-shield\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Display In Circles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Choose to show the icons inside a circle, or just as is.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fontawesome icon=\"fa-desktop\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-fire\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-film\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gift\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-check-square-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cog\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-leaf\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tachometer\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-lock\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-user\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flag\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bolt\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-smile-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-lightbulb-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-signal\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-truck\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-crosshairs\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-clock-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-camera-retro\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-print\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-video-camera\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-line-chart\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-shopping-cart\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Color Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Font Awesome Shortcode allows you to easily control the circle color, icon color and border color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fontawesome icon=\"fa-tablet\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#a0ce4e\" circlebordercolor=\"#54770f\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flask\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#398cd2\" circlebordercolor=\"#398cd2\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-magic\" circle=\"yes\" size=\"large\" iconcolor=\"#e27d3a\" circlecolor=\"#ffffff\" circlebordercolor=\"#e27d3a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#b83e2a\" circlebordercolor=\"#b83e2a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-book\" circle=\"yes\" size=\"large\" iconcolor=\"#5c5d5c\" circlecolor=\"#b1b1b1\" circlebordercolor=\"#5c5d5c\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-comments-o\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#96947a\" circlebordercolor=\"#96947a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-random\" circle=\"yes\" size=\"large\" iconcolor=\"#24469b\" circlecolor=\"#ffffff\" circlebordercolor=\"#24469b\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#6b5694\" circlebordercolor=\"#6b5694\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-umbrella\" circle=\"yes\" size=\"large\" iconcolor=\"#74a37b\" circlecolor=\"#4f7a55\" circlebordercolor=\"#4f7a55\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-laptop\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#98a7c5\" circlebordercolor=\"#98a7c5\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-key\" circle=\"yes\" size=\"large\" iconcolor=\"#333333\" circlecolor=\"#ffffff\" circlebordercolor=\"#333333\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-leaf\" circle=\"yes\" size=\"large\" iconcolor=\"#92be43\" circlecolor=\"#ffffff\" circlebordercolor=\"#92be43\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cog\" circle=\"yes\" size=\"large\" iconcolor=\"#1185bf\" circlecolor=\"#96cae8\" circlebordercolor=\"#1185bf\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Full Icon List</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Below is a complete list of all the Font Awesome icons you can utilize as well as their names.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_sixth last=\"no\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-glass\"]fa-glass[/li_item][li_item icon=\"fa-music\"]fa-music[/li_item][li_item icon=\"fa-search\"]fa-search[/li_item][li_item icon=\"fa-envelope-o\"]fa-envelope-o[/li_item][li_item icon=\"fa-heart\"]fa-heart[/li_item][li_item icon=\"fa-star\"]fa-star[/li_item][li_item icon=\"fa-star-o\"]fa-star-o[/li_item][li_item icon=\"fa-user\"]fa-user[/li_item][li_item icon=\"fa-film\"]fa-film[/li_item][li_item icon=\"fa-th-large\"]fa-th-large[/li_item][li_item icon=\"fa-th\"]fa-th[/li_item][li_item icon=\"fa-th-list\"]fa-th-list[/li_item][li_item icon=\"fa-check\"]fa-check[/li_item][li_item icon=\"fa-times\"]fa-times[/li_item][li_item icon=\"fa-search-plus\"]fa-search-plus[/li_item][li_item icon=\"fa-search-minus\"]fa-search-minus[/li_item][li_item icon=\"fa-power-off\"]fa-power-off[/li_item][li_item icon=\"fa-signal\"]fa-signal[/li_item][li_item icon=\"fa-cog\"]fa-cog[/li_item][li_item icon=\"fa-trash-o\"]fa-trash-o[/li_item][li_item icon=\"fa-home\"]fa-home[/li_item][li_item icon=\"fa-file-o\"]fa-file-o[/li_item][li_item icon=\"fa-clock-o\"]fa-clock-o[/li_item][li_item icon=\"fa-road\"]fa-road[/li_item][li_item icon=\"fa-download\"]fa-download[/li_item][li_item icon=\"fa-arrow-circle-o-down\"]fa-arrow-circle-o-down[/li_item][li_item icon=\"fa-arrow-circle-o-up\"]fa-arrow-circle-o-up[/li_item][li_item icon=\"fa-inbox\"]fa-inbox[/li_item][li_item icon=\"fa-play-circle-o\"]fa-play-circle-o[/li_item][li_item icon=\"fa-repeat\"]fa-repeat[/li_item][li_item icon=\"fa-refresh\"]fa-refresh[/li_item][li_item icon=\"fa-list-alt\"]fa-list-alt[/li_item][li_item icon=\"fa-lock\"]fa-lock[/li_item][li_item icon=\"fa-flag\"]fa-flag[/li_item][li_item icon=\"fa-headphones\"]fa-headphones[/li_item][li_item icon=\"fa-volume-off\"]fa-volume-off[/li_item][li_item icon=\"fa-volume-down\"]fa-volume-down[/li_item][li_item icon=\"fa-volume-up\"]fa-volume-up[/li_item][li_item icon=\"fa-qrcode\"]fa-qrcode[/li_item][li_item icon=\"fa-barcode\"]fa-barcode[/li_item][li_item icon=\"fa-tag\"]fa-tag[/li_item][li_item icon=\"fa-tags\"]fa-tags[/li_item][li_item icon=\"fa-book\"]fa-book[/li_item][li_item icon=\"fa-bookmark\"]fa-bookmark[/li_item][li_item icon=\"fa-print\"]fa-print[/li_item][li_item icon=\"fa-camera\"]fa-camera[/li_item][li_item icon=\"fa-font\"]fa-font[/li_item][li_item icon=\"fa-bold\"]fa-bold[/li_item][li_item icon=\"fa-italic\"]fa-italic[/li_item][li_item icon=\"fa-text-height\"]fa-text-height[/li_item][li_item icon=\"fa-text-width\"]fa-text_width[/li_item][li_item icon=\"fa-align-left\"]fa-align-left[/li_item][li_item icon=\"fa-align-center\"]fa-align-center[/li_item][li_item icon=\"fa-align-right\"]fa-align-right[/li_item][li_item icon=\"fa-align-justify\"]fa-align-justify[/li_item][li_item icon=\"fa-list\"]fa-list[/li_item][li_item icon=\"fa-outdent\"]fa-outdent[/li_item][li_item icon=\"fa-indent\"]fa-indent[/li_item][li_item icon=\"fa-video-camera\"]fa-video-camera[/li_item][li_item icon=\"fa-picture-o\"]fa-picture-o[/li_item][li_item icon=\"fa-pencil\"]fa-pencil[/li_item][li_item icon=\"fa-map-marker\"]fa-map-marker[/li_item][li_item icon=\"fa-adjust\"]fa-adjust[/li_item][li_item icon=\"fa-tint\"]fa-tint[/li_item][li_item icon=\"fa-pencil-square-o\"]fa-pencil-square-o[/li_item][li_item icon=\"fa-share-square-o\"]fa-share-square-o[/li_item][li_item icon=\"fa-check-square-o\"]fa-check-square-o[/li_item][li_item icon=\"fa-arrows\"]fa-arrows[/li_item][li_item icon=\"fa-step-backward\"]fa-step-backward[/li_item][li_item icon=\"fa-fast-backward\"]fa-fast-backward[/li_item][li_item icon=\"fa-backward\"]fa-backward[/li_item][li_item icon=\"fa-play\"]fa-play[/li_item][li_item icon=\"fa-pause\"]fa-pause[/li_item][li_item icon=\"fa-stop\"]fa-stop[/li_item][li_item icon=\"fa-forward\"]fa-forward[/li_item][li_item icon=\"fa-fast-forward\"]fa-fast-foward[/li_item][li_item icon=\"fa-step-forward\"]fa-step-forward[/li_item][li_item icon=\"fa-eject\"]fa-eject[/li_item][li_item icon=\"fa-chevron-left\"]fa-chevron-left[/li_item][li_item icon=\"fa-chevron-right\"]fa-chevron-right[/li_item][/checklist][/one_sixth][one_sixth last=\"no\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-plus-circle\"]fa-plus-circle[/li_item][li_item icon=\"fa-minus-circle\"]fa-minus-circle[/li_item][li_item icon=\"fa-times-circle\"]fa-times-circle[/li_item][li_item icon=\"fa-check-circle\"]fa-check-circle[/li_item][li_item icon=\"fa-question-circle\"]fa-question-circle[/li_item][li_item icon=\"fa-info-circle\"]fa-info-circle[/li_item][li_item icon=\"fa-crosshairs\"]fa-crosshairs[/li_item][li_item icon=\"fa-times-circle-o\"]fa-times-circle-o[/li_item][li_item icon=\"fa-check-circle-o\"]fa-check-circle-o[/li_item][li_item icon=\"fa-ban\"]fa-ban[/li_item][li_item icon=\"fa-arrow-left\"]fa-arrow-left[/li_item][li_item icon=\"fa-arrow-right\"]fa-arrow-right[/li_item][li_item icon=\"fa-arrow-up\"]fa-arrow-up[/li_item][li_item icon=\"fa-arrow-down\"]fa-arrow-down[/li_item][li_item icon=\"fa-share\"]fa-share[/li_item][li_item icon=\"fa-expand\"]fa-expand[/li_item][li_item icon=\"fa-compress\"]fa-compress[/li_item][li_item icon=\"fa-plus\"]fa-plus[/li_item][li_item icon=\"fa-minus\"]fa-minus[/li_item][li_item icon=\"fa-asterisk\"]fa-asterisk[/li_item][li_item icon=\"fa-exclamation-circle\"]fa-exclamation-circle[/li_item][li_item icon=\"fa-gift\"]fa-gift[/li_item][li_item icon=\"fa-leaf\"]fa-leaf[/li_item][li_item icon=\"fa-fire\"]fa-fire[/li_item][li_item icon=\"fa-eye\"]fa-eye[/li_item][li_item icon=\"fa-eye-slash\"]fa-eye-slash[/li_item][li_item icon=\"fa-exclamation-triangle\"]fa-exclamation-triangle[/li_item][li_item icon=\"fa-plane\"]fa-plane[/li_item][li_item icon=\"fa-calendar\"]fa-calendar[/li_item][li_item icon=\"fa-random\"]fa-random[/li_item][li_item icon=\"fa-comment\"]fa-comment[/li_item][li_item icon=\"fa-magnet\"]fa-magnet[/li_item][li_item icon=\"fa-chevron-up\"]fa-chevron-up[/li_item][li_item icon=\"fa-chevron-down\"]fa-chevron-down[/li_item][li_item icon=\"fa-retweet\"]fa-retweet[/li_item][li_item icon=\"fa-shopping-cart\"]fa-shopping-cart[/li_item][li_item icon=\"fa-folder\"]fa-folder[/li_item][li_item icon=\"fa-folder-open\"]fa-folder-open[/li_item][li_item icon=\"fa-arrows-v\"]fa-arrows-v[/li_item][li_item icon=\"fa-arrows-h\"]fa-arrows-h[/li_item][li_item icon=\"fa-bar-chart\"]fa-bar-chart[/li_item][li_item icon=\"fa-twitter-square\"]fa-twitter-square[/li_item][li_item icon=\"fa-facebook-square\"]fa-facebook-square[/li_item][li_item icon=\"fa-camera-retro\"]fa-camera-retro[/li_item][li_item icon=\"fa-key\"]fa-key[/li_item][li_item icon=\"fa-cogs\"]fa-cogs[/li_item][li_item icon=\"fa-comments\"]fa-comments[/li_item][li_item icon=\"fa-thumbs-o-up\"]fa-thumbs-o-up[/li_item][li_item icon=\"fa-thumbs-o-down\"]fa-thumbs-o-down[/li_item][li_item icon=\"fa-star-half\"]fa-star-half[/li_item][li_item icon=\"fa-heart-o\"]fa-heart-o[/li_item][li_item icon=\"fa-sign-out\"]fa-sign-out[/li_item][li_item icon=\"fa-linkedin-square\"]fa-linkedin-square[/li_item][li_item icon=\"fa-thumb-tack\"]fa-thumb-tack[/li_item][li_item icon=\"fa-external-link\"]fa-external-link[/li_item][li_item icon=\"fa-sign-in\"]fa-sign-in[/li_item][li_item icon=\"fa-trophy\"]fa-trophy[/li_item][li_item icon=\"fa-github-square\"]fa-github-square[/li_item][li_item icon=\"fa-upload\"]fa-upload[/li_item][li_item icon=\"fa-lemon-o\"]fa-lemon-o[/li_item][li_item icon=\"fa-phone\"]fa-phone[/li_item][li_item icon=\"fa-square-o\"]fa-square-o[/li_item][li_item icon=\"fa-bookmark-o\"]fa-bookmark-o[/li_item][li_item icon=\"fa-phone-square\"]fa-phone-square[/li_item][li_item icon=\"fa-twitter\"]fa-twitter[/li_item][li_item icon=\"fa-facebook\"]fa-facebook[/li_item][li_item icon=\"fa-github\"]fa-github[/li_item][li_item icon=\"fa-unlock\"]fa-unlock[/li_item][li_item icon=\"fa-credit-card\"]fa-credit-card[/li_item][li_item icon=\"fa-rss\"]fa-rss[/li_item][li_item icon=\"fa-hdd-o\"]fa-hdd-o[/li_item][li_item icon=\"fa-bullhorn\"]fa-bullhorn[/li_item][li_item icon=\"fa-bell\"]fa-bell[/li_item][li_item icon=\"fa-certificate\"]fa-certificate[/li_item][li_item icon=\"fa-hand-o-right\"]fa-hand-o-right[/li_item][li_item icon=\"fa-hand-o-left\"]fa-hand-o-left[/li_item][li_item icon=\"fa-hand-o-up\"]fa-hand-o-up[/li_item][li_item icon=\"fa-hand-o-down\"]fa-hand-o-down[/li_item][li_item icon=\"fa-arrow-circle-left\"]fa-arrow-circle-left[/li_item][li_item icon=\"fa-arrow-circle-right\"]fa-arrow-circle-right[/li_item][/checklist][/one_sixth][one_sixth last=\"no\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-arrow-circle-up\"]fa-arrow-circle-up[/li_item][li_item icon=\"fa-arrow-circle-down\"]fa-arrow-circle-down[/li_item][li_item icon=\"fa-globe\"]fa-globe[/li_item][li_item icon=\"fa-wrench\"]fa-wrench[/li_item][li_item icon=\"fa-tasks\"]fa-tasks[/li_item][li_item icon=\"fa-filter\"]fa-filter[/li_item][li_item icon=\"fa-briefcase\"]fa-briefcase[/li_item][li_item icon=\"fa-arrows-alt\"]fa-arrows-alt[/li_item][li_item icon=\"fa-users\"]fa-users[/li_item][li_item icon=\"fa-link\"]fa-link[/li_item][li_item icon=\"fa-cloud\"]fa-cloud[/li_item][li_item icon=\"fa-flask\"]fa-flask[/li_item][li_item icon=\"fa-scissors\"]fa-scissors[/li_item][li_item icon=\"fa-files-o\"]fa-files-o[/li_item][li_item icon=\"fa-paperclip\"]fa-paperclip[/li_item][li_item icon=\"fa-floppy-o\"]fa-floppy-o[/li_item][li_item icon=\"fa-square\"]fa-square[/li_item][li_item icon=\"fa-bars\"]fa-bars[/li_item][li_item icon=\"fa-list-ul\"]fa-list-ul[/li_item][li_item icon=\"fa-list-ol\"]fa-list-ol[/li_item][li_item icon=\"fa-strikethrough\"]fa-strikethrough[/li_item][li_item icon=\"fa-underline\"]fa-underline[/li_item][li_item icon=\"fa-table\"]fa-table[/li_item][li_item icon=\"fa-magic\"]fa-magic[/li_item][li_item icon=\"fa-truck\"]fa-truck[/li_item][li_item icon=\"fa-pinterest\"]fa-pinterest[/li_item][li_item icon=\"fa-pinterest-square\"]fa-pinterest-square[/li_item][li_item icon=\"fa-google-plus-square\"]fa-google-plus-square[/li_item][li_item icon=\"fa-google-plus\"]fa-google-plus[/li_item][li_item icon=\"fa-money\"]fa-money[/li_item][li_item icon=\"fa-caret-down\"]fa-caret-down[/li_item][li_item icon=\"fa-caret-up\"]fa-caret-up[/li_item][li_item icon=\"fa-caret-left\"]fa-caret-left[/li_item][li_item icon=\"fa-caret-right\"]fa-caret-right[/li_item][li_item icon=\"fa-columns\"]fa-columns[/li_item][li_item icon=\"fa-sort\"]fa-sort[/li_item][li_item icon=\"fa-sort-desc\"]fa-sort-desc[/li_item][li_item icon=\"fa-sort-asc\"]fa-sort-asc[/li_item][li_item icon=\"fa-envelope\"]fa-envelope[/li_item][li_item icon=\"fa-linkedin\"]fa-linkedin[/li_item][li_item icon=\"fa-undo\"]fa-undo[/li_item][li_item icon=\"fa-gavel\"]fa-gavel[/li_item][li_item icon=\"fa-tachometer\"]fa-tachometer[/li_item][li_item icon=\"fa-comment-o\"]fa-comment-o[/li_item][li_item icon=\"fa-comments-o\"]fa-comments-o[/li_item][li_item icon=\"fa-bolt\"]fa-bolt[/li_item][li_item icon=\"fa-sitemap\"]fa-sitemap[/li_item][li_item icon=\"fa-umbrella\"]fa-umbrella[/li_item][li_item icon=\"fa-clipboard\"]fa-clipboard[/li_item][li_item icon=\"fa-lightbulb-o\"]fa-lightbulb-o[/li_item][li_item icon=\"fa-exchange\"]fa-exchange[/li_item][li_item icon=\"fa-cloud-download\"]fa-cloud-download[/li_item][li_item icon=\"fa-cloud-upload\"]fa-cloud-upload[/li_item][li_item icon=\"fa-user-md\"]fa-user-md[/li_item][li_item icon=\"fa-stethoscope\"]fa-stethoscope[/li_item][li_item icon=\"fa-suitcase\"]fa-suitcase[/li_item][li_item icon=\"fa-bell-o\"]fa-bell-o[/li_item][li_item icon=\"fa-coffee\"]fa-coffee[/li_item][li_item icon=\"fa-cutlery\"]fa-cutlery[/li_item][li_item icon=\"fa-file-text-o\"]fa-file-text-o[/li_item][li_item icon=\"fa-building-o\"]fa-building-o[/li_item][li_item icon=\"fa-hospital-o\"]fa-hospital-o[/li_item][li_item icon=\"fa-ambulance\"]fa-ambulance[/li_item][li_item icon=\"fa-medkit\"]fa-medkit[/li_item][li_item icon=\"fa-fighter-jet\"]fa-fighter-jet[/li_item][li_item icon=\"fa-beer\"]fa-beer[/li_item][li_item icon=\"fa-h-square\"]fa-h-square[/li_item][li_item icon=\"fa-plus-square\"]fa-plus-square[/li_item][li_item icon=\"fa-angle-double-left\"]fa-angle-double-left[/li_item][li_item icon=\"fa-angle-double-right\"]fa-angle-double-right[/li_item][li_item icon=\"fa-angle-double-up\"]fa-angle-double-up[/li_item][li_item icon=\"fa-angle-double-down\"]fa-angle-double-down[/li_item][li_item icon=\"fa-angle-left\"]fa-angle-left[/li_item][li_item icon=\"fa-angle-right\"]fa-angle-right[/li_item][li_item icon=\"fa-angle-up\"]fa-angle-up[/li_item][li_item icon=\"fa-angle-down\"]fa-angle-down[/li_item][li_item icon=\"fa-desktop\"]fa-desktop[/li_item][li_item icon=\"fa-laptop\"]fa-laptop[/li_item][li_item icon=\"fa-tablet\"]fa-tablet[/li_item][li_item icon=\"fa-mobile\"]fa-mobile[/li_item][/checklist][/one_sixth][one_sixth last=\"no\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-circle-o\"]fa-circle-o[/li_item][li_item icon=\"fa-quote-left\"]fa-quote-left[/li_item][li_item icon=\"fa-quote-right\"]fa-quote-right[/li_item][li_item icon=\"fa-spinner\"]fa-spinner[/li_item][li_item icon=\"fa-circle\"]fa-circle[/li_item][li_item icon=\"fa-reply\"]fa-reply[/li_item][li_item icon=\"fa-github-alt\"]fa-github-alt[/li_item][li_item icon=\"fa-folder-o\"]fa-folder-o[/li_item][li_item icon=\"fa-folder-open-o\"]fa-folder-open-o[/li_item][li_item icon=\"fa-smile-o\"]fa-smile-o[/li_item][li_item icon=\"fa-frown-o\"]fa-frown-o[/li_item][li_item icon=\"fa-meh-o\"]fa-meh-o[/li_item][li_item icon=\"fa-gamepad\"]fa-gamepad[/li_item][li_item icon=\"fa-keyboard-o\"]fa-keyboard-o[/li_item][li_item icon=\"fa-flag-o\"]fa-flag-o[/li_item][li_item icon=\"fa-flag-checkered\"]fa-flag-checkered[/li_item][li_item icon=\"fa-terminal\"]fa-terminal[/li_item][li_item icon=\"fa-code\"]fa-code[/li_item][li_item icon=\"fa-reply-all\"]fa-reply-all[/li_item][li_item icon=\"fa-star-half-o\"]fa-star-half-o[/li_item][li_item icon=\"fa-location-arrow\"]fa-location-arrow[/li_item][li_item icon=\"fa-crop\"]fa-crop[/li_item][li_item icon=\"fa-code-fork\"]fa-code-fork[/li_item][li_item icon=\"fa-chain-broken\"]fa-chain-broken[/li_item][li_item icon=\"fa-question\"]fa-question[/li_item][li_item icon=\"fa-info\"]fa-info[/li_item][li_item icon=\"fa-exclamation\"]fa-exclamation[/li_item][li_item icon=\"fa-superscript\"]fa-superscript[/li_item][li_item icon=\"fa-subscript\"]fa-subscript[/li_item][li_item icon=\"fa-eraser\"]fa-eraser[/li_item][li_item icon=\"fa-puzzle-piece\"]fa-puzzle-piece[/li_item][li_item icon=\"fa-microphone\"]fa-microphone[/li_item][li_item icon=\"fa-microphone-slash\"]fa-microphone-slash[/li_item][li_item icon=\"fa-shield\"]fa-shield[/li_item][li_item icon=\"fa-calendar-o\"]fa-calendar-o[/li_item][li_item icon=\"fa-fire-extinguisher\"]fa-fire-extinguisher[/li_item][li_item icon=\"fa-rocket\"]fa-rocket[/li_item][li_item icon=\"fa-maxcdn\"]fa-maxcdn[/li_item][li_item icon=\"fa-chevron-circle-left\"]fa-chevron-circle-left[/li_item][li_item icon=\"fa-chevron-circle-right\"]fa-chevron-circle-right[/li_item][li_item icon=\"fa-chevron-circle-up\"]fa-chevron-circle-up[/li_item][li_item icon=\"fa-chevron-circle-down\"]fa-chevron-circle-down[/li_item][li_item icon=\"fa-html5\"]fa-html5[/li_item][li_item icon=\"fa-css3\"]fa-css3[/li_item][li_item icon=\"fa-anchor\"]fa-anchor[/li_item][li_item icon=\"fa-unlock-alt\"]fa-unlock-alt[/li_item][li_item icon=\"fa-bullseye\"]fa-bullseye[/li_item][li_item icon=\"fa-ellipsis-h\"]fa-ellipsis-h[/li_item][li_item icon=\"fa-ellipsis-v\"]fa-ellipsis-v[/li_item][li_item icon=\"fa-rss-square\"]fa-rss-square[/li_item][li_item icon=\"fa-play-circle\"]fa-play-circle[/li_item][li_item icon=\"fa-ticket\"]fa-ticket[/li_item][li_item icon=\"fa-minus-square\"]fa-minus-square[/li_item][li_item icon=\"fa-minus-square-o\"]fa-minus-square-o[/li_item][li_item icon=\"fa-level-up\"]fa-level-up[/li_item][li_item icon=\"fa-level-down\"]fa-level-down[/li_item][li_item icon=\"fa-check-square\"]fa-check-square[/li_item][li_item icon=\"fa-pencil-square\"]fa-pencil-square[/li_item][li_item icon=\"fa-external-link-square\"]fa-external-link-square[/li_item][li_item icon=\"fa-share-square\"]fa-share-square[/li_item][li_item icon=\"fa-compass\"]fa-compass[/li_item][li_item icon=\"fa-caret-square-o-down\"]fa-caret-square-o-down[/li_item][li_item icon=\"fa-caret-square-o-up\"]fa-caret-square-o-up[/li_item][li_item icon=\"fa-caret-square-o-right\"]fa-caret-square-o-right[/li_item][li_item icon=\"fa-eur\"]fa-eur[/li_item][li_item icon=\"fa-gbp\"]fa-gbp[/li_item][li_item icon=\"fa-usd\"]fa-usd[/li_item][li_item icon=\"fa-inr\"]fa-inr[/li_item][li_item icon=\"fa-jpy\"]fa-jpy[/li_item][li_item icon=\"fa-rub\"]fa-rub[/li_item][li_item icon=\"fa-krw\"]fa-krw[/li_item][li_item icon=\"fa-btc\"]fa-btc[/li_item][li_item icon=\"fa-file\"]fa-file[/li_item][li_item icon=\"fa-file-text\"]fa-file-text[/li_item][li_item icon=\"fa-sort-alpha-asc\"]fa-sort-alpha-asc[/li_item][li_item icon=\"fa-sort-alpha-desc\"]fa-sort-alpha-desc[/li_item][li_item icon=\"fa-sort-amount-asc\"]fa-sort-amount-asc[/li_item][li_item icon=\"fa-sort-amount-desc\"]fa-sort-amount-desc[/li_item][li_item icon=\"fa-sort-numeric-asc\"]fa-sort-numeric-asc[/li_item][li_item icon=\"fa-sort-numeric-desc\"]fa-sort-numeric-desc[/li_item][/checklist][/one_sixth][one_sixth last=\"no\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-thumbs-up\"]fa-thumbs-up[/li_item][li_item icon=\"fa-thumbs-down\"]fa-thumbs-down[/li_item][li_item icon=\"fa-youtube-square\"]fa-youtube-square[/li_item][li_item icon=\"fa-youtube\"]fa-youtube[/li_item][li_item icon=\"fa-xing\"]fa-xing[/li_item][li_item icon=\"fa-xing-square\"]fa-xing-square[/li_item][li_item icon=\"fa-youtube-play\"]fa-youtube-play[/li_item][li_item icon=\"fa-dropbox\"]fa-dropbox[/li_item][li_item icon=\"fa-stack-overflow\"]fa-stack-overflow[/li_item][li_item icon=\"fa-instagram\"]fa-instagram[/li_item][li_item icon=\"fa-flickr\"]fa-flickr[/li_item][li_item icon=\"fa-adn\"]fa-adn[/li_item][li_item icon=\"fa-bitbucket\"]fa-bitbucket[/li_item][li_item icon=\"\"]fa-bitbucket-square[/li_item][li_item icon=\"fa-tumblr\"]fa-tumblr[/li_item][li_item icon=\"fa-tumblr-square\"]fa-tumblr-square[/li_item][li_item icon=\"fa-long-arrow-down\"]fa-long-arrow-down[/li_item][li_item icon=\"fa-long-arrow-up\"]fa-long-arrow-up[/li_item][li_item icon=\"fa-long-arrow-left\"]fa-long-arrow-left[/li_item][li_item icon=\"fa-long-arrow-right\"]fa-long-arrow-right[/li_item][li_item icon=\"fa-apple\"]fa-apple[/li_item][li_item icon=\"fa-windows\"]fa-windows[/li_item][li_item icon=\"fa-android\"]fa-android[/li_item][li_item icon=\"fa-linux\"]fa-linux[/li_item][li_item icon=\"fa-dribbble\"]fa-dribbble[/li_item][li_item icon=\"fa-skype\"]fa-skype[/li_item][li_item icon=\"fa-foursquare\"]fa-foursquare[/li_item][li_item icon=\"fa-trello\"]fa-trello[/li_item][li_item icon=\"fa-female\"]fa-female[/li_item][li_item icon=\"fa-male\"]fa-male[/li_item][li_item icon=\"fa-gittip\"]fa-gittip[/li_item][li_item icon=\"fa-sun-o\"]fa-sun-o[/li_item][li_item icon=\"fa-moon-o\"]fa-moon-o[/li_item][li_item icon=\"fa-archive\"]fa-archive[/li_item][li_item icon=\"fa-bug\"]fa-bug[/li_item][li_item icon=\"fa-vk\"]fa-vk[/li_item][li_item icon=\"fa-weibo\"]fa-weibo[/li_item][li_item icon=\"fa-renren\"]fa-renren[/li_item][li_item icon=\"fa-pagelines\"]fa-pagelines[/li_item][li_item icon=\"fa-stack-exchange\"]fa-stack-exchange[/li_item][li_item icon=\"fa-arrow-circle-o-right\"]fa-arrow-circle-o-right[/li_item][li_item icon=\"fa-arrow-circle-o-left\"]fa-arrow-circle-o-left[/li_item][li_item icon=\"fa-caret-square-o-left\"]fa-caret-square-o-left[/li_item][li_item icon=\"fa-dot-circle-o\"]fa-dot-circle-o[/li_item][li_item icon=\"fa-wheelchair\"]fa-wheelchair[/li_item][li_item icon=\"fa-vimeo-square\"]fa-vimeo-square[/li_item][li_item icon=\"fa-try\"]fa-try[/li_item][li_item icon=\"fa-plus-square-o\"]fa-plus-square-o[/li_item][li_item icon=\"fa-space-shuttle\"]fa-space-shuttle[/li_item][li_item icon=\"fa-slack\"]fa-slack[/li_item][li_item icon=\"fa-envelope-square\"]fa-envelope-square[/li_item][li_item icon=\"fa-wordpress\"]fa-wordpress[/li_item][li_item icon=\"fa-openid\"]fa-openid[/li_item][li_item icon=\"fa-university\"]fa-university[/li_item][li_item icon=\"fa-graduation-cap\"]fa-graduation-cap[/li_item][li_item icon=\"fa-yahoo\"]fa-yahoo[/li_item][li_item icon=\"fa-google\"]fa-google[/li_item][li_item icon=\"fa-reddit\"]fa-reddit[/li_item][li_item icon=\"fa-reddit-square\"]fa-reddit-square[/li_item][li_item icon=\"fa-stumbleupon-circle\"]fa-stumbleupon-circle[/li_item][li_item icon=\"fa-stumbleupon\"]fa-stumbleupon[/li_item][li_item icon=\"fa-delicious\"]fa-delicious[/li_item][li_item icon=\"fa-digg\"]fa-digg[/li_item][li_item icon=\"fa-pied-piper\"]fa-pied-piper[/li_item][li_item icon=\"fa-pied-piper-alt\"]fa-pied-piper-alt[/li_item][li_item icon=\"fa-drupal\"]fa-drupal[/li_item][li_item icon=\"fa-joomla\"]fa-joomla[/li_item][li_item icon=\"fa-language\"]fa-language[/li_item][li_item icon=\"fa-fax\"]fa-fax[/li_item][li_item icon=\"fa-building\"]fa-building[/li_item][li_item icon=\"fa-child\"]fa-child[/li_item][li_item icon=\"fa-paw\"]fa-paw[/li_item][li_item icon=\"fa-spoon\"]fa-spoon[/li_item][li_item icon=\"fa-cube\"]fa-cube[/li_item][li_item icon=\"fa-cubes\"]fa-cubes[/li_item][li_item icon=\"fa-behance\"]fa-behance[/li_item][li_item icon=\"fa-behance-square\"]fa-behance-square[/li_item][li_item icon=\"fa-steam\"]fa-steam[/li_item][li_item icon=\"fa-steam-square\"]fa-steam-square[/li_item][li_item icon=\"fa-recycle\"]fa-recycle[/li_item][/checklist][/one_sixth][one_sixth last=\"yes\" spacing=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#262626\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"fa-car\"]fa-car[/li_item][li_item icon=\"fa-taxi\"]fa-taxi[/li_item][li_item icon=\"fa-tree\"]fa-tree[/li_item][li_item icon=\"fa-spotify\"]fa-spotify[/li_item][li_item icon=\"fa-deviantart\"]fa-deviantart[/li_item][li_item icon=\"fa-soundcloud\"]fa-soundcloud[/li_item][li_item icon=\"fa-database\"]fa-database[/li_item][li_item icon=\"fa-file-pdf-o\"]fa-file-pdf-o[/li_item][li_item icon=\"fa-file-word-o\"]fa-file-word-o[/li_item][li_item icon=\"fa-file-excel-o\"]fa-file-excel-o[/li_item][li_item icon=\"fa-file-powerpoint-o\"]fa-file-powerpoint-o[/li_item][li_item icon=\"fa-file-image-o\"]fa-file-image-o[/li_item][li_item icon=\"fa-file-archive-o\"]fa-file-archive-o[/li_item][li_item icon=\"fa-file-audio-o\"]fa-file-audio-o[/li_item][li_item icon=\"fa-file-video-o\"]fa-file-video-o[/li_item][li_item icon=\"fa-file-code-o\"]fa-file-code-o[/li_item][li_item icon=\"fa-vine\"]fa-vine[/li_item][li_item icon=\"fa-codepen\"]fa-codepen[/li_item][li_item icon=\"fa-jsfiddle\"]fa-jsfiddle[/li_item][li_item icon=\"\"]fa-life-ring[/li_item][li_item icon=\"fa-circle-o-notch\"]fa-circle-o-notch[/li_item][li_item icon=\"fa-rebel\"]fa-rebel[/li_item][li_item icon=\"fa-empire\"]fa-empire[/li_item][li_item icon=\"fa-git-square\"]fa-git-square[/li_item][li_item icon=\"fa-git\"]fa-git[/li_item][li_item icon=\"fa-hacker-news\"]fa-hacker-news[/li_item][li_item icon=\"fa-tencent-weibo\"]fa-tencent-weibo[/li_item][li_item icon=\"fa-qq\"]fa-qq[/li_item][li_item icon=\"fa-weixin\"]fa-weixin[/li_item][li_item icon=\"fa-paper-plane\"]fa-paper-plane[/li_item][li_item icon=\"fa-paper-plane-o\"]fa-paper-plane-o[/li_item][li_item icon=\"fa-history\"]fa-history[/li_item][li_item icon=\"fa-circle-thin\"]fa-circle-thin[/li_item][li_item icon=\"fa-header\"]fa-header[/li_item][li_item icon=\"fa-paragraph\"]fa-paragraph[/li_item][li_item icon=\"fa-sliders\"]fa-sliders[/li_item][li_item icon=\"fa-share-alt\"]fa-share-alt[/li_item][li_item icon=\"fa-share-alt-square\"]fa-share-alt-square[/li_item][li_item icon=\"fa-bomb\"]fa-bomb[/li_item][li_item icon=\"fa-futbol-o\"]fa-futfol-o[/li_item][li_item icon=\"fa-tty\"]fa-tty[/li_item][li_item icon=\"fa-binoculars\"]fa-binoculars[/li_item][li_item icon=\"fa-plug\"]fa-plug[/li_item][li_item icon=\"fa-slideshare\"]fa-slideshare[/li_item][li_item icon=\"fa-twitch\"]fa-twitch[/li_item][li_item icon=\"fa-yelp\"]fa-yelp[/li_item][li_item icon=\"fa-newspaper-o\"]fa-newspaper-o[/li_item][li_item icon=\"fa-wifi\"]fa-wifi[/li_item][li_item icon=\"fa-calculator\"]fa-calculator[/li_item][li_item icon=\"fa-paypal\"]fa-paypal[/li_item][li_item icon=\"fa-google-wallet\"]fa-google-wallet[/li_item][li_item icon=\"fa-cc-visa\"]fa-cc-visa[/li_item][li_item icon=\"fa-cc-mastercard\"]fa-cc-mastercard[/li_item][li_item icon=\"fa-cc-discover\"]fa-cc-discover[/li_item][li_item icon=\"fa-cc-amex\"]fa-cc-amex[/li_item][li_item icon=\"fa-cc-paypal\"]fa-cc-paypal[/li_item][li_item icon=\"fa-cc-stripe\"]fa-cc-stripe[/li_item][li_item icon=\"fa-bell-slash\"]fa-bell-slash[/li_item][li_item icon=\"fa-bell-slash-o\"]fa-bell-slash-o[/li_item][li_item icon=\"fa-trash\"]fa-trash[/li_item][li_item icon=\"fa-copyright\"]fa-copyright[/li_item][li_item icon=\"fa-at\"]fa-at[/li_item][li_item icon=\"fa-eyedropper\"]fa-eyedropper[/li_item][li_item icon=\"fa-paint-brush\"]fa-paint-brush[/li_item][li_item icon=\"fa-birthday-cake\"]fa-birthday-cake[/li_item][li_item icon=\"fa-area-chart\"]fa-area-chart[/li_item][li_item icon=\"fa-pie-chart\"]fa-pie-chart[/li_item][li_item icon=\"fa-line-chart\"]fa-line-chart[/li_item][li_item icon=\"fa-lastfm\"]fa-lastfm[/li_item][li_item icon=\"fa-lastfm-square\"]fa-lastfm-square[/li_item][li_item icon=\"fa-toggle-off\"]fa-toggle-off[/li_item][li_item icon=\"fa-toggle-on\"]fa-toggle-on[/li_item][li_item icon=\"fa-bicycle\"]fa-bicycle[/li_item][li_item icon=\"fa-bus\"]fa-bus[/li_item][li_item icon=\"fa-ioxhost\"]fa-ioxhost[/li_item][li_item icon=\"fa-angellist\"]fa-angellist[/li_item][li_item icon=\"fa-cc\"]fa-cc[/li_item][li_item icon=\"fa-ils\"]fa-ils[/li_item][li_item icon=\"fa-meanpath\"]fa-meanpath[/li_item][/checklist][/one_sixth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>icon</strong> - A font awesome icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>circle</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets if the icon is circular or not.[/li_item][li_item icon=\"\"]<strong>size</strong> - Can be one of these values: <em>large, medium, </em>or<em> small.</em>[/li_item][li_item icon=\"\"]<strong>iconcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>circlecolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s background color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>circlebordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s border color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>flip</strong> - Can be one of these values: <em>none, horizontal, </em>or<em> vertical.</em> Sets the direction where the icon will flip.[/li_item][li_item icon=\"\"]<strong>rotate</strong> - Can be one of these values: <em>none, 90, 180, </em>or<em> 270.</em> Sets the angle of the icon\'s rotation.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>spin</strong> - Can be one of these values: <em>yes, </em>or<em> no.</em> This will enable or disable the icon\'s spinning feature.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>alignment</strong> - Can be one of these values: <em>left, right, </em>or<em> center</em>. Sets the icon\'s alignment.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization. [/li_item][/checklist][/one_half][/fullwidth]','Font Awesome','','publish','open','closed','','font-awesome','','','2013-05-24 20:57:15','2013-05-24 20:57:15','',0,'http://avada.theme-fusion.comxml/?page_id=3731',0,'page','',0),(3733,1,'2013-05-24 20:57:42','2013-05-24 20:57:42','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Full Width Section</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada now includes a full width 100% page template. Using this you can use full width sections that span the entire width of your browser window, or keep content contained inside the 960px width. Use background images, borders, colors, padding, positioning and more with the shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"Beautifully Simplistic\" icon=\"fa-tablet\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] If you\'re a code nerd or a Word Press newbie, Avada is for you.<strong><span style=\"color: #84b231;\"> It\'s built for everyone</span></strong>, and can be as simple or complex as you want.[/content_box][content_box title=\"Free Support &amp; Updates\" icon=\"fa-magic\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] We truly care about our users and our end product. <strong><span style=\"color: #84b231;\">Our users love Avada</span></strong>, and you will too with free updates &amp; incredible support.[/content_box][content_box title=\"Blissful Layout Options \" icon=\"fa-thumbs-up\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"] Avada includes so many different options and designs. Users are able to make <strong><span style=\"color: #84b231;\">amazingly cool layouts</span></strong> with the tools we provide.[/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Video &amp; Image Backgrounds</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Full Width Section provides an abundance of customization settings to make your sections look as unique and elegant as you\'d like. Choose an image, solid color, or even a video to be your Full Width Section\'s background. Control the border size and color, the padding, as well as the position of the section. This shortcode also has a unique effect that blurs and fades image backgrounds.</p>\n[/fusion_text][/one_full][/fullwidth][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"right center\" backgroundattachment=\"fixed\" video_webm=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/11/Hand-With-Wedding-Ring.webm\" video_mp4=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/2014/11/Hand-With-Wedding-Ring.mp4\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"#000000\" overlay_opacity=\"0.85\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"200px\" paddingbottom=\"200px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Video Backgrounds For Full Width Container</span></h1>\n<p style=\"text-align: center; font-size: 17px; line-height: 25px;\"><span style=\"color: #ffffff;\">The same self hosted video backgrounds that can be used with our Fusion Slider make their way to the highly popular Full Width Container. Use color overlays, set color opacity, mute and loop the videos. Video backgrounds are perfect for adding visual appeal to your layouts.</span></p>\n[/fusion_text][/fullwidth][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#3d352f\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"right center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"200px\" paddingbottom=\"200px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"rgba(255,255,255,.7)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">Awesome Blur/Fading Effect On Scroll For The Full Width Background Image</h1>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"rgba(151,201,61,.7)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255,255,255,.1)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"center\" class=\"\" id=\"\"]PURCHASE AVADA[/button][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][/one_third][/fullwidth][separator style_type=\"none\" top_margin=\"60\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Use as Many As You Want!</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Use as many Full Width Sections as you need to create beautiful layouts that will capture your viewer\'s attention. Set background images, colors or videos to span 100% browser width to make it even more interesting.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"30px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][three_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]We Are Here To Serve You[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui.\n\nRatione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla.[/fusion_text][/three_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Crazy Skills[/title][progress percentage=\"90\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Web Design[/progress][progress percentage=\"95\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]HTML/CSS[/progress][progress percentage=\"85\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Graphic Design[/progress][progress percentage=\"75\" unit=\"\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]WordPress[/progress][fusion_text]\n\n[/fusion_text][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#eae9e9\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"\" lightbox=\"\"]http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg[/slide][/slider][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]This Is A Full Width Section, Pretty Cool Heh?[/title][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with meta options for easy customization[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"60\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Spacing &amp; Width Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Set Full Width Containers to be 100% full width, or boxed. Set the spacing between columns, as well as the top, bottom, left and right padding. This shortcode also includes an option that lets you set columns to have equal heights.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"right center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"yes\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"no\" background_color=\"#1a1613\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">100% Content Width</span></h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"20\" sep_color=\"#ffffff\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Content placed on the inside of a full width container can now be set to 100% of the browser window. This little option gives you major flexibility in building creative layouts.</span></p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"no\" background_color=\"#312d29\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Equal Column Heights</span></h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"20\" sep_color=\"#ffffff\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">The height of the column will depend on the interior content. At times this can be a design distraction. Now you can easily set columns inside a full width container to be equal heights.</span></p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"no\" background_color=\"#3d3b38\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Spacing Between Columns</span></h1>\n[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"20\" sep_color=\"#ffffff\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">We love spacing, it is needed for clean design. However, many situations will look even better with no spacing between columns. Avada 3.7 gives you the power to make the decision.</span></p>\n[/fusion_text][/one_third][/fullwidth][separator style_type=\"none\" top_margin=\"60\" bottom_margin=\"60\" sep_color=\"\" icon=\"\" width=\"200px\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the full width container shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s background color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>backgroundimage</strong> - The URL path of the background image you\'d like to display, starting with <em>http://</em> and usually ending on <em>.jpg, .png </em>or<em> .gif.</em>[/li_item][li_item icon=\"\"]<strong>backgroundrepeat</strong> - Can be one of these values: <em>no-repeat, repeat, repeat-y, </em>or<em> repeat-x. </em>Sets how the background repeats.[/li_item][li_item icon=\"\"]<strong>backgroundposition</strong> - Accept a pixel value, percentage or certain alphabetic values. For example,<em> 50px, 100%, left top, left center, left bottom, right top, right center, right bottom, center top, center center, </em>or<em> center bottom. </em>Sets the background\'s position.[/li_item][li_item icon=\"\"]<strong>backgroundattachment</strong> - Can be one of these values: <em>fixed, scroll, </em>or<em> local. </em>Sets how the background scrolls.[/li_item][li_item icon=\"\"]<strong>video_webm</strong> - The URL path of your WebM video file. <em>WebM</em> and <em>MP4</em> format must be included to render your video with cross browser compatibility.[/li_item][li_item icon=\"\"]<strong>video_mp4</strong> - The URL path of your MP4 video file. <em>WebM</em> and <em>MP4</em> format must be included to render your video with cross browser compatibility.[/li_item][li_item icon=\"\"]<strong>video_ogv</strong> - The URL path of your OGV video file. This parameter is optional.[/li_item][li_item icon=\"\"]<strong>video_preview_image</strong> - The URL path of the preview image you\'d like to display, starting with <em>http://</em> and usually ending on <em>.jpg, .png </em>or<em> .gif. </em>If uploading <strong>Self-Hosted</strong> videos, this parameter must be filled.[/li_item][li_item icon=\"\"]<strong>video_mute</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable mute.[/li_item][li_item icon=\"\"]<strong>video_loop</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable video loop.[/li_item][li_item icon=\"\"]<strong>overlay_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the video\'s overlay color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>overlay_opacity</strong> - Can be a numerical value from <em>0.1</em> to <em>1</em>. Sets the color opacity level. <em>1</em> is equivalent to <em>100%</em>.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>fade</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets the image to fade and blur on scroll. This parameter is for <em>images</em> only.[/li_item][li_item icon=\"\"]<strong>bordersize</strong> - Accepts a pixel value that sets the border\'s size. For example, <em>5px</em>.[/li_item][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>borderstyle</strong> - Can be one of these values: <em>solid, dashed, </em>or<em> dotted. </em>Sets the border\'s style.[/li_item][li_item icon=\"\"]<strong>paddingtop</strong> - Accepts a numerical value that sets the top padding in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>paddingbottom</strong> - Accepts a numerical value that sets the bottom padding in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>paddingleft</strong> - Accepts a numerical value that sets the left padding in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>paddingright</strong> - Accepts a numerical value that sets the right padding in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>menu_anchor</strong> - The <em>unique name</em> you give the corresponding menu item.[/li_item][li_item icon=\"\"]<strong>equal_height_columns</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets all the column shortcodes inside the container to be equal in height.[/li_item][li_item icon=\"\"]<strong>hundred_percent</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets if the interior content is 100% width or contained to the site width setting. Selecting <em>yes</em> will remove left/right padding.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Full Width Section','','publish','open','closed','','full-width-section','','','2013-05-24 20:57:42','2013-05-24 20:57:42','',0,'http://avada.theme-fusion.comxml/?page_id=3733',0,'page','',0),(3735,1,'2013-05-24 20:57:55','2013-05-24 20:57:55','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Google Map Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada has integration for Google Maps. We have a dedicated contact page template with map integration that allows you to set many different map options via our theme options panel. In addition, we have a google map shortcode that can be used on any page or post, or widget section. We include intuitive options that allow you to use the default google map styles, or customize the options to fit your branding style. Avada also lets you select multiple map locations on a single map, each with its own content. Select 4 map types, display a color overlay, upload a custom map marker, customize the map popup box along with many other unique options.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][map address=\"New York City, NY | Flemington, NJ | Islip, NY\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#70b260\" infobox=\"custom\" infobox_background_color=\"rgba(89,175,12,.8)\" infobox_text_color=\"\" infobox_content=\"Jason At New York City Office Park 555 West Street, New York City 12345|Allison At The Flemington Office Park 555 East Street, New York City 12345|Johnathan At The Islips Office Park 555 South Street, New York City 12345\" icon=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_2.png|http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_1.png|http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_3.png\" width=\"100%\" height=\"400px\" zoom=\"9\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" popup=\"yes\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>4 Different Google Map Types</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Make your website interesting by choosing between 4 Google Map designs: Google Map Roadmap, Google Map Satellite, Google Map Hybrid, or Google Map Terrain.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"new york city, ny\" type=\"roadmap\" map_style=\"\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"no\" scale=\"yes\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Google Map Roadmap</h2>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"new york city, ny\" type=\"satellite\" map_style=\"default\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Google Map Satellite</h2>\n[/fusion_text][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"new york city, ny\" type=\"hybrid\" map_style=\"\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Google Map Hybrid</h2>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"new york city, ny\" type=\"terrain\" map_style=\"\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Google Map Terrain</h2>\n[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Easily customize map styles, info box colors, and content! Not only do we offer Google Map\'s default styles, but Avada has also included a Theme Map Style that\'s unique to Avada, and a totally customizable map style called Custom Map Styling!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"New York City, NY 10458\" type=\"terrain\" map_style=\"default\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" popup=\"yes\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Default Google Styling</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">The default map style gives you the exact styling that comes from Google Maps. This includes all the map coloring, the info box styles and map marker. This is the classic Google Maps styling!</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"New York City, NY 10458\" type=\"roadmap\" map_style=\"theme\" overlay_color=\"\" infobox=\"custom\" infobox_background_color=\"rgba(000,000,000,.5)\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"300px\" zoom=\"7\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Theme Map Styling</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">We have added a custom theme styling that is unique to the Avada theme. When using this styling, the map color overlay, map marker and info box will be automatically set with our unique settings!</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][map address=\"New York City, NY 10458\" type=\"roadmap\" map_style=\"custom\" overlay_color=\"#5f96c9\" infobox=\"custom\" infobox_background_color=\"rgba(16,92,162,.8)\" infobox_text_color=\"\" infobox_content=\"John Doe Is At New York City Office! Stop Bye Today For A Free Estimation! 2511 W. Street, New York, NY 10458\" icon=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_2.png\" width=\"100%\" height=\"300px\" zoom=\"8\" scrollwheel=\"no\" scale=\"no\" zoom_pancontrol=\"no\" popup=\"yes\" class=\"\" id=\"\"][/map][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Custom Map Styling</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">The custom map style allows you to use any uploaded image or icon as a custom map marker. As well as any overlay color, infobox background and text color. This is perfect for branding your site!</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Full Size Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Google Maps shortcode and theme option integration allows you to take full control over the width and height of the map. Use fixed widths or percentages. This comes in handy when placing maps on pages that need to fit perfectly in unique layouts.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][map address=\"New York City, NY 10458\" type=\"terrain\" map_style=\"theme\" overlay_color=\"\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"231px\" zoom=\"8\" scrollwheel=\"no\" scale=\"yes\" zoom_pancontrol=\"no\" popup=\"no\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Powerful Map Controls</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada allows you to control several aspects of the map. Set the zoom level on the map, show or hide the map scale, allow the mouse scroll wheel to zoom in and out or to be disabled when used, show or hide the pan control icon and choose to show or hide hte map popup when the page loads. Amazing options at your fingertips, super powerful!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][map address=\"New York City, NY 10458\" type=\"satellite\" map_style=\"custom\" overlay_color=\"\" infobox=\"custom\" infobox_background_color=\"rgba(255,255,255,.6)\" infobox_text_color=\"#242424\" infobox_content=\"Hey! I\'m all the way down here!\n12345 West Street, New York City, NY\" icon=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/map_avatar_1.png\" width=\"100%\" height=\"273px\" zoom=\"2\" scrollwheel=\"no\" scale=\"yes\" zoom_pancontrol=\"yes\" popup=\"yes\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the Google Map shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>address</strong> - Your <em>physical address.</em> To have multiple map markers, separate two addresses with a vertical line. For example, <em>579 Allen Road Basking Ridge, NJ 07920 | Mount Arlington, NJ 07856.</em>[/li_item][li_item icon=\"\"]<strong>type</strong> - Can be one of these values: <em>roadmap, terrain, hybrid, </em>or<em> satellite. </em>Sets the type of Google Map to display.[/li_item][li_item icon=\"\"]<strong>map_style</strong> - Can be one of these values: <em>default, theme, </em>or<em> custom</em>. Choose <em>custom</em> to use advanced color options.[/li_item][li_item icon=\"\"]<strong>overlay_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the overlaying color for the map. Works best with the <em>roadmap</em> type. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>infobox</strong> - <em>Custom</em> setting only. Can be one of these values: <em>default, </em>or<em> custom.</em> Choose <em>custom</em> to use advanced options.[/li_item][li_item icon=\"\"]<strong>infobox_background_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em>. Sets the infobox\'s background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>infobox_text_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 ).</em> Sets the infobox\'s text color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>infobox_content</strong> - <em>Custom</em> setting only. Type in <em>custom info box content </em>to replace address string. For multiple addresses, separate info box content with a vertical line. For example, <em>InfoBox 1|InfoBox 2|InfoBox 3.\n</em>[/li_item][li_item icon=\"\"]<strong>icon</strong> - <em>Custom</em> setting only. Type in full image URLs for <em>custom marker icons</em>, or input <em>theme</em> for our custom marker<em>.</em> For multiple addresses, separate icons with the vertical line. For example, <em>Icon 1|Icon 2|Icon 3.</em>[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>width</strong> - Accepts a pixel or a percentage value. For example <em>25px,</em> or <em>50%</em>. Sets the map\'s width.[/li_item][li_item icon=\"\"]<strong>height</strong> - Accepts a pixel or a percentage value. For example <em>25px,</em> or <em>50%</em>. Sets the map\'s height.[/li_item][li_item icon=\"\"]<strong>zoom</strong> - Accepts a numerical value that represents the map zoom level. The higher the number, the more it will zoom in.[/li_item][li_item icon=\"\"]<strong>scrollwheel</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will enable or disable the mouse scrolling.[/li_item][li_item icon=\"\"]<strong>scale</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the scale graphic.[/li_item][li_item icon=\"\"]<strong>zoom_pancontrol</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the zoom controls.[/li_item][li_item icon=\"\"]<strong>popup</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the map popup graphic. If set to <em>no</em>, then the popup will show on click.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Google Maps','','publish','open','closed','','google-maps','','','2013-05-24 20:57:55','2013-05-24 20:57:55','',0,'http://avada.theme-fusion.comxml/?page_id=3735',0,'page','',0),(3737,1,'2013-05-24 20:58:09','2013-05-24 20:58:09','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Image Frame Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes four styles of image frames to help your images stand out. Choose from border, glow, dropshhdow and bottom shadow. Choose the border size and color, and style color for glow and dropshadow styles. These subtle effects will help your images look great!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"dropshadow\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://freereincenter.com/wp-content/uploads/2013/10/elastic2.jpg\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/elastic2.jpg\" />[/imageframe][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>4 Image Frame Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">There are 4 Image Frame styles: border, glow, drop shadow or bottom shadow. Use these styles to make your images stand out.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"6px\" borderradius=\"0\" stylecolor=\"#ffffff\" align=\"\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"6px\" borderradius=\"0\" stylecolor=\"#ffffff\" align=\"\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"dropshadow\" bordercolor=\"#3e3e3e\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"#000\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"bottomshadow\" bordercolor=\"#d1d1d1\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"#ffffff\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Image Frame Shortcode includes various customization settings such as editing the border size and color, the style colors for glow and drop shadow.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"#a2cc55\" bordersize=\"5px\" borderradius=\"10px\" stylecolor=\"#000\" align=\"none\" link=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"#a2cc55\" bordersize=\"5px\" borderradius=\"10px\" stylecolor=\"#000\" align=\"none\" link=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"dropshadow\" bordercolor=\"#ffffff\" bordersize=\"2px\" borderradius=\"\" stylecolor=\"#62a7c9\" align=\"none\" link=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Display Image in Lightbox </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">You can choose to display your image inside a lightbox, or have it link to another URL.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"\" bordersize=\"\" borderradius=\"\" stylecolor=\"\" align=\"none\" link=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"\" borderradius=\"\" stylecolor=\"\" align=\"none\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Make your content more interesting by using images along side it. Avada\'s Image Frame Shortcode works beautifully aligned with content.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"bottomshadow\" bordercolor=\"\" bordersize=\"\" borderradius=\"\" stylecolor=\"\" align=\"none\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ac augue est, non porta lectus. Aenean scelerisque tellus sit amet sem fringilla sed pellentesque purus dapibus. Phasellus elementum pharetra justo, ac iaculis mauris consectetur sit amet. Proin venenatis semper nulla vitae molestie. Praesent pharetra erat lorem, dignissim auctor mi. Vivamus fringilla ultrices luctus. Donec sit amet libero sit amet arcu laoreet lacinia. Aenean vitae est neque. Morbi tempus mauris ut nibh malesuada mattis. Suspendisse a tellus eget dolor ornare blandit. Phasellus porta dictum ligula ac porttitor. Nunc ut ante sit amet dolor rutrum feugiat non vel mi. Vivamus urna velit, convallis non porta vel, feugiat in urna.\n\nPraesent rutrum felis a turpis luctus ut accumsan sem facilisis. Mauris at mi in nibh posuere molestie. Vivamus quis ante nec dolor fermentum sagittis. Ut aliquet eleifend nunc, eu pretium magna eleifend non. Nullam et orci eros. Sed tempor lectus id arcu consequat faucibus. Fusce et quam eros. Mauris non nunc at orcis.[/fusion_text][/two_third][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ac augue est, non porta lectus. Aenean scelerisque tellus sit amet sem fringilla sed pellentesque purus dapibus. Phasellus elementum pharetra justo, ac iaculis mauris consectetur sit amet. Proin venenatis semper nulla vitae molestie. Praesent pharetra erat lorem, dignissim auctor mi. Vivamus fringilla ultrices luctus. Donec sit amet libero sit amet arcu laoreet lacinia. Aenean vitae est neque. Morbi tempus mauris ut nibh malesuada mattis. Suspendisse a tellus eget dolor ornare blandit. Phasellus porta dictum ligula ac porttitor. Nunc ut ante sit amet dolor rutrum feugiat non vel mi. Vivamus urna velit, convallis non porta vel, feugiat in urna.\n\nPraesent rutrum felis a turpis luctus ut accumsan sem facilisis. Mauris at mi in nibh posuere molestie. Vivamus quis ante nec dolor fermentum sagittis. Ut aliquet eleifend nunc, eu pretium magna eleifend non. Nullam et orci eros. Sed tempor lectus id arcu consequat faucibus. Fusce et quam eros. Mauris non nunc at orcis Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos. Phasellus sodales pulvinar gravida. Aenean egestas accumsan porttitor. Sed ante odio, tincidunt ultrices congue sit amet, fringilla molestie nibh.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"bottomshadow\" bordercolor=\"\" bordersize=\"\" borderradius=\"\" stylecolor=\"\" align=\"none\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the image frame shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>lightbox</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Display the image in a lightbox or not.[/li_item][li_item icon=\"\"]<strong>style_type</strong> - Can be one of these values: <em>none, border, glow, dropshadow, </em>or<em> bottomshadow.</em> Set the frame\'s style.[/li_item][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>bordersize</strong> - Accepts a pixel value that sets the border\'s size. For example, <em>5px</em>.[/li_item][li_item icon=\"\"]<strong>borderradius</strong> - Accepts a pixel value that sets the radius of the image. For example, <em>5px</em>.[/li_item][li_item icon=\"\"]<strong>stylecolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the style color for all style types except for the <strong>border</strong> style. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>align</strong> - Can be one of these values: <em>none, left, right, </em>or<em> center</em>. Sets the image\'s alignment.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>link</strong> - The URL path where the image links to. For example, <em>http://www.example.com/.</em>[/li_item][li_item icon=\"\"]<strong>linktarget</strong> - Can be one of these values: <em>_self</em> to open in same window, or <em>_blank</em> to open in new window.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth][tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"Avada includes four styles of image frames to help your images stand out. Choose from border, glow, dropshhdow and bottom shadow. Choose the border size and color, and style color for glow and dropshadow styles. These subtle effects will help your images look great!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"35\" bottom_margin=\"35\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Image Frames Look Great Aligned With Content[/title][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"#ffffff\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img alt=\"blog_opt_3\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ac augue est, non porta lectus. Aenean scelerisque tellus sit amet sem fringilla sed pellentesque purus dapibus. Phasellus elementum pharetra justo, ac iaculis mauris consectetur sit amet. Proin venenatis semper nulla vitae molestie. Praesent pharetra erat lorem, dignissim auctor mi. Vivamus fringilla ultrices luctus. Donec sit amet libero sit amet arcu laoreet lacinia. Aenean vitae est neque. Morbi tempus mauris ut nibh malesuada mattis. Suspendisse a tellus eget dolor ornare blandit. Phasellus porta dictum ligula ac porttitor. Nunc ut ante sit amet dolor rutrum feugiat non vel mi. Vivamus urna velit, convallis non porta vel, feugiat in urna. Praesent rutrum felis a turpis luctus ut accumsan sem facilisis. Mauris at mi in nibh posuere molestie. Vivamus quis ante nec dolor fermentum sagittis. Ut aliquet eleifend nunc, eu pretium magna eleifend non. Nullam et orci eros. Sed tempor lectus id arcu consequa.\n\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Phasellus sodales pulvinar gravida. Aenean egestas accumsan porttitor. Sed ante odio, tincidunt ultrices congue sit amet.[/fusion_text][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]4 Styles of Image frames, border, glow. dropshadow, bottomshadow[/li_item][li_item icon=\"\"]Change the border size and color on all styles[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"light\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Change the style color for glow and dropshadow style[/li_item][li_item icon=\"\"]Use with column shortcodes to control the width[/li_item][/checklist][/one_half]','Image Frames','','publish','open','closed','','image-frames','','','2013-05-24 20:58:09','2013-05-24 20:58:09','',0,'http://avada.theme-fusion.comxml/?page_id=3737',0,'page','',0),(11677,1,'2016-08-29 20:20:03','2016-08-29 20:20:03','','portfolio_2.jpg','','inherit','closed','closed','','portfolio-2-jpg','','','2016-08-29 20:20:03','2016-08-29 20:20:03','',0,'http://freereincenter.com/wp-content/uploads/revslider/captions_tall/portfolio_2.jpg',0,'attachment','image/jpeg',0),(11678,1,'2016-08-29 20:20:04','2016-08-29 20:20:04','','3894','','inherit','closed','closed','','3894','','','2016-08-29 20:20:04','2016-08-29 20:20:04','',0,'http://freereincenter.com/wp-content/uploads/2016/08/3894.jpg',0,'attachment','image/jpeg',0),(3739,1,'2013-05-24 20:58:53','2013-05-24 20:58:53','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Media Shortcodes</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada has several built in short codes to manage your media. Youtube and Vimeo videos can be used all throughout the site and are all fully responsive. Images and videos can open in a lightbox, and you can use Soundcloud for all your audio files. All of this is easily accessed via built-in shortcodes.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" rel=\"prettyPhoto\"><img class=\"aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" alt=\"image 1\" width=\"470\" height=\"300\" /></a>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][vimeo id=\"32987274\" width=\"1100\" height=\"620\" autoplay=\"no\" api_params=\"\" class=\"\"][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Lightbox Shortcode</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Lightbox Shortcode lets you display high resolution images in a lightbox and a thumbnail that triggers it. You can also have an image as a thumbnail, but display a video in the lightbox. This shortcode is fully responsive, and is compatible with any size of our columns shortcode. This shortcode also has the option to add Alternative Information in case the image or video does not load properly.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_5.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2012/07/portfolio_4.jpg\" alt=\"image 1\" /></a>[/fusion_text][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Youtube Shortcode</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Youtube Shortcode allows you to display videos from Youtube by simply entering the video ID. This shortcode is fully responsive and allows you to indicate the width and height it will display in. This shortcode also gives you the option to autoplay the video, and to add additional API parameters.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][youtube id=\"dSn72h_6I9Q\" width=\"1100\" height=\"510\" autoplay=\"no\" api_params=\"\" class=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Vimeo Shortcode</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Vimeo Shortcode allows you to display videos from Vimeo by simply entering the video ID. This shortcode is fully responsive and allows you to indicate the width and height it will display in. This shortcode also gives you the option to autoplay the video, and to add additional API parameters.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][vimeo id=\"32987274\" width=\"1100\" height=\"620\" autoplay=\"no\" api_params=\"\" class=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Souncloud Shortcode</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Soundcloud Shortcode allows you to insert Soundcloud audio into your website with ease. Simply indicate the URL, and you\'re good to go. This shortcode is fully responsive, and works perfectly with our columns shortcode. It also features some meta options such as width, height, auto play, color, and comments.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][soundcloud url=\"http://soundcloud.com/futuresounds-bgr/aaliyah-enough-said-feat-drake\" comments=\"true\" auto_play=\"false\" color=\"ff7700\" width=\"100%\" height=\"150px\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the media shortcodes are listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Lightbox Shortcode[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>title</strong> - the <em>custom description text</em> that will be displayed inside the lightbox.[/li_item][li_item icon=\"\"]<strong>href</strong> - The URL path of the image, video or website you want to open in the lightbox.[/li_item][li_item icon=\"\"]<strong>data-rel</strong> - Must stay as <em>prettyPhoto</em> for the lightbox to work.[/li_item][li_item icon=\"\"]<strong>src</strong> - The URL path of the small image that will trigger the lightbox.[/li_item][li_item icon=\"\"]<strong>alt</strong> - The <em>custom alternative title text</em> that will show up in the lightbox.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Youtube Shortcode[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>id</strong> - The <em>id</em> of the video you want to insert. For example, the <em>Video ID</em> for http://www.youtube.com/LOfeCR7KqUs is <em>LOfeCR7KqUs.</em>[/li_item][li_item icon=\"\"]<strong>width</strong> -  Accepts a pixel value or a percentage to set the width. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>height</strong> -  Accepts a pixel value or a percentage to set the height. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>autoplay</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable autoplay.[/li_item][li_item icon=\"\"]<strong>api_params</strong> - An additonal vimeo video paramter option.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a<em> custom class</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Vimeo Shortcode[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>id</strong> - The <em>id</em> of the video you want to insert. For example, the <em>Video ID</em> for https://vimeo.com/75230326 is <em>75230326.</em>[/li_item][li_item icon=\"\"]<strong>width</strong> -  Accepts a pixel value or a percentage to set the width. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>height</strong> -  Accepts a pixel value or a percentage to set the height. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>autoplay</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable autoplay.[/li_item][li_item icon=\"\"]<strong>api_params</strong> - An additonal vimeo video paramter option.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a<em> custom class</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Soundcloud Shortcode[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>url</strong> - The URL path of the <em>soundcloud track</em> you want to embed. For example, <em>http://api.soundcloud.com/tracks/110813479</em>.[/li_item][li_item icon=\"\"]<strong>comments</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will show or hide comments.[/li_item][li_item icon=\"\"]<strong>auto_play</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable autoplay.[/li_item][li_item icon=\"\"]<strong>color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the color.[/li_item][li_item icon=\"\"]<strong>width</strong> - Accepts a pixel value or a percentage to set the width. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>height</strong> - Accepts a pixel value or a percentage to set the height. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Media','','publish','open','closed','','media','','','2013-05-24 20:58:53','2013-05-24 20:58:53','',0,'http://avada.theme-fusion.comxml/?page_id=3739',0,'page','',0),(3741,1,'2013-05-24 20:59:10','2013-05-24 20:59:10','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Pricing Table Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes some amazing pricing table elements that are full with customization options. Pricing tables are a critical part in showcasing your services, prices and overall offerings. With Avada’s pricing tables, two different design styles can be selected along with various column widths. Take control of the border colors, background colors and divider colors. Make a column standout for added visibility and it provides a nice drop shadow that lifts the column off the others. We give you full control over changing the type of currency and the currency position which is needed for global compatibility. Change the length of payment time, such as monthly or weekly and add buttons to the footer section. These many options allow you to create beautiful, customized pricing tables throughout your site with ease.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Standard\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"19.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]5 Projects[/pricing_row]\n[pricing_row]5 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]10 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Premium\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"29.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]10 Projects[/pricing_row]\n[pricing_row]15 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]20 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer]\n[/pricing_column]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Extreme\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"59.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]Unlimited Projects[/pricing_row]\n[pricing_row]Unlimited Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]Unlimited Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Two Beautiful Designs</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose from two of our base designs to make your pricing tables appealing to your viewers.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Pricing Design 1 With Up To 5 Columns</h2>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"year\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"year\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Pricing Design 2 With Up To 4 Columns</h2>\n[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Easily customize pricing table colors to fully suit your website.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#cde1a8\" bordercolor=\"#a2cc55\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#cde1a8\" gradient_hover_colors=\"#c4d99e\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Change Background Color</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#b9d8e7\" bordercolor=\"#78b6d4\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#b9d8e7\" gradient_hover_colors=\"#accddd\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Change Border Colors</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"#e5c594\" bordercolor=\"#c59347\" dividercolor=\"#fff\" class=\"myTable\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#e5c594\" gradient_hover_colors=\"#debe8c\" accent_color=\"#fff\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Change Divider Colors</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada pricing tables give you control over background colors, border colors and divider colors. Change the color of the pricing text and column text, as well as full control over the button styles.</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Highlight By Priority</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada\'s Pricing Table Shortcode includes an option to set a column as featured, which highlights that column for maximum visibility.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"1\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Standard\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"19.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]5 Projects[/pricing_row]\n[pricing_row]5 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]10 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Premium\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"29.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]10 Projects[/pricing_row]\n[pricing_row]15 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]20 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer]\n[/pricing_column]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]50 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[pricing_column title=\"Maximum\" standout=\"no\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"49.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]30 Projects[/pricing_row]\n[pricing_row]100 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_row]150 GB Bandwith[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Currency Type and Position Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada\'s Pricing Table Shortcode gives you absolute control over the currency you\'d like to display, as well as it\'s position on the column. It also allows you to set a \"time\" value, that is perfect for subscription lengths on various price packages.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"monthly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Currency Symbols</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada\'s pricing tables give you full control over the currency symbol. Easily make the selection per pricing column by choosing any currency symbol that is available for the font you choose to use.</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"¥\" currency_position=\"right\" price=\"39.99\" time=\"daily\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Currency Location</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada\'s pricing tables give you full control over the currency location. Some currency symbols need to be before the price, some after the price. Easily make that selection per pricing column.</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text][pricing_table type=\"2\" backgroundcolor=\"\" bordercolor=\"\" dividercolor=\"\" class=\"\" id=\"\"]\n[pricing_column title=\"Professional\" standout=\"yes\"]\n[pricing_price currency=\"$\" currency_position=\"left\" price=\"39.99\" time=\"yearly\"][/pricing_price]\n[pricing_row]15 Projects[/pricing_row]\n[pricing_row]30 GB Storage[/pricing_row]\n[pricing_row]Unlimited Users[/pricing_row]\n[pricing_footer][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent\" gradient_hover_colors=\"\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Sign Up Now![/button][/pricing_footer][/pricing_column]\n[/pricing_table][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Pricing Time / Length</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">Avada pricing tables allow you to specify a \"time\" value. This is perfect for describing different lengths of time for subscriptions or various prices. For example: yearly, monthly, daily, etc.</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the pricing table shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"80px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>type</strong> - Can be one of these values:<em> 1, </em>or<em> 2. </em>Sets the style of the pricing table.[/li_item][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the background\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the border\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>dividercolor</strong> - Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the divider\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title</strong> - The <em>custom column title text.</em> For example, <em>Standard Pricing</em>. [/li_item][li_item icon=\"\"]<strong>standout</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. Sets the specified column as featured.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>currency</strong> - Accepts symbols to represent a currency.For example, <em>$, </em>or<em> €.</em>[/li_item][li_item icon=\"\"]<strong>currency_position</strong> - Can be one of these values: <em>left, </em>or<em> right. </em>Sets the position of the currency symbol.[/li_item][li_item icon=\"\"]<strong>price</strong> - Accepts a numerical value that represents a price. For example, <em>29.99</em>.[/li_item][li_item icon=\"\"]<strong>time</strong> - The custom text to represent time or anything else. For example, <em>monthly, yearly, </em>or<em> daily.</em>[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a<em> custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"75px\" padding_left=\"40px\" padding_right=\"40px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Pricing Tables','','publish','open','closed','','pricing-tables','','','2013-05-24 20:59:10','2013-05-24 20:59:10','',0,'http://avada.theme-fusion.comxml/?page_id=3741',0,'page','',0),(3743,1,'2013-05-24 20:59:35','2013-05-24 20:59:35','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Tagline Box Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada\'s promotion box is very versatile and has numerous meta options for easy customization. Insert a title, body copy and a button link for default, or customize it by adding a shadow, changing the background color, border size, border color and highlight position. Users can set custom links and link target for the button.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#f6f6f6\" shadow=\"no\" shadowopacity=\"0.7\" border=\"0px\" bordercolor=\"#f6f6f6\" highlightposition=\"left\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"These boxes are very customizable with numerous options to choose from!\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options and so much more!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Highlight Border Position</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose to place the highlight border in 4 positions: Left, Right, Top, and Bottom. You can also choose to not have a highlight border at all.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Highlight Border on The Top\" description=\"This tagline box has the highlight border on the top.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"bottom\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Highlight Border on The Bottom\" description=\"This tagline box has the highlight border on the bottom.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"left\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Highlight Border on The Left\" description=\"This tagline box has the highlight border on the left.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"\" highlightposition=\"right\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Highlight Border on The Right\" description=\"This tagline box has the highlight border on the right.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The shortcode options allow you to set background colors, accent colors, border size and color, and display a bottom shadow and set the opacity for it.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#f6f6f6\" shadow=\"no\" shadowopacity=\"0.7\" border=\"0px\" bordercolor=\"#f6f6f6\" highlightposition=\"top\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"A subtle tagline box with a description and no title \" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"0px\" bordercolor=\"#a0ce4e\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"An Eye-Popping Tagline Box Without A Border And With A Long Title\" description=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"3px\" bordercolor=\"#a0ce4e\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"A Stylish Tagline Box With A Border\" description=\"These promo boxes are very flexible and have several options that can be set to customize it for your needs! Avada has some awesome features and so much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada\'s Tagline Box Shortcode can also be used with columns to control the width and to make them fit better on your website. They are also fully responsive and will look beautiful on any screen resolution.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"3px\" bordercolor=\"#ededed\" highlightposition=\"top\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Promo boxes also work with 1-6 columns\" description=\"These promo boxes are very flexible and have several options that can be set to customize it for your needs! Avada has some awesome features, premium sliders, unlimited colors, advanced theme options, light and dark version, multiple blog and portfolio layouts, 5 header designs, custom post options, tons of shortcodes and so much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"3px\" bordercolor=\"#ededed\" highlightposition=\"top\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Promo boxes also work with 1-6 columns\" description=\"These promo boxes are very flexible and have several options that can be set to customize it for your needs! Avada has some awesome features, premium sliders, unlimited colors, advanced theme options, light and dark version, multiple blog and portfolio layouts, 5 header designs, custom post options, tons of shortcodes and so much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"3px\" bordercolor=\"#ededed\" highlightposition=\"top\" content_alignment=\"left\" link=\"\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"Promo boxes also work with 1-6 columns\" description=\"These promo boxes are very flexible and have several options that can be set to customize it for your needs! Avada has some awesome features, premium sliders, unlimited colors, advanced theme options, light and dark version, multiple blog and portfolio layouts, 5 header designs, custom post options, tons of shortcodes and so much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Display Buttons</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Include a button on your Tagline Box Shortcode and set custom links and link targets for the button.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"3px\" bordercolor=\"#ededed\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Display A Button\" description=\"These promo boxes are very flexible and have several options that can be set to customize it for your needs!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#ededed\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Longer Buttons? No Problem!\" title=\"Display A Button\" description=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"no\" shadowopacity=\"0.7\" border=\"0px\" bordercolor=\"#ededed\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase!\" title=\"Display A Button\" description=\"And it has some awesome features, premium sliders, advanced theme options and much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#f6f6f6\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"0px\" bordercolor=\"#f6f6f6\" highlightposition=\"right\" content_alignment=\"left\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"_self\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Display A Button\" description=\"And it has some awesome features, premium sliders, unlimited colors, advanced theme options and so much more!\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent. </em>Sets the background\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>shadow</strong> - Can be one of these values:<em> yes, </em>or<em> no. </em>This will show or hide the shadow.[/li_item][li_item icon=\"\"]<strong>shadowopacity</strong> - Can be a numerical value from <em>0.1</em> to <em>1</em>. Sets the shadow\'s opacity level. <em>1</em> is equivalent to <em>100%</em>.[/li_item][li_item icon=\"\"]<strong>border</strong> - Accepts a pixel value. For example, <em>1px.</em>[/li_item][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent. </em>Sets the border\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>highlightposition</strong> - Can be one of these values: <em>none, left, right, top, </em>or<em> bottom. </em>Sets the position of the highlight.[/li_item][li_item icon=\"\"]<strong>content_alignment</strong> - Can be one of these values: <em>left, center, </em>or<em> right. </em>Sets the content\'s alignment.[/li_item][li_item icon=\"\"]<strong>link</strong> - The URL path where the button links to. For example, <em>http://www.example.com/</em>[/li_item][li_item icon=\"\"]<strong>linktarget</strong> - Can be one of these values: <em>_blank</em> for new window, <em>_self</em> for same window.[/li_item][li_item icon=\"\"]<strong>modal</strong> - The <em>unique identifier</em> of the <strong>Modal</strong> shortcode you\'ve created that allows the button to trigger the modal.[/li_item][li_item icon=\"\"]<strong>button_size</strong> - Can be one of these values: <em>default, small, medium, large, </em>or<em> xlarge.</em> Sets the button\'s size.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>button_shape</strong> - Can be one of these values: <em>default, square, pill, </em>or<em> round. </em>Sets the button\'s shape.[/li_item][li_item icon=\"\"]<strong>button_type</strong> - Can be one of these values: <em>default, flat, 3d. </em>Sets the button\'s type.[/li_item][li_item icon=\"\"]<strong>buttoncolor</strong> - Can be one of these values: <em>default, green, darkgreen, orange, blue, red, pink, darkgray, </em>or<em> lightgray</em>. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>button</strong> - The <em>custom button text</em>. For example, <em>Click Here</em>.<em>\n</em>[/li_item][li_item icon=\"\"]<strong>title</strong> - The <em>custom title text</em>. For example, <em>Title 1.</em>[/li_item][li_item icon=\"\"]<strong>description</strong> - The <em>custom description text</em>.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Tagline Boxes','','publish','open','closed','','promotion-boxes','','','2013-05-24 20:59:35','2013-05-24 20:59:35','',0,'http://avada.theme-fusion.comxml/?page_id=3743',0,'page','',0),(3745,1,'2013-05-24 20:59:46','2013-05-24 20:59:46','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Recent Works Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes 3 different styles of recent work shortcodes that allow you to display your portfolio posts on any page you wish. Use a carousel, grid, or grid with excerpts. All styles can specify a certain category and number of posts. Both the grid and grid with excerpts can also use 1-6 columns and show filters.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_works layout=\"carousel\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"8\" excerpt_length=\"35\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Recent Work Carousel</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Carousel is one of the layouts included with the Recent Works shortcode. This layout is a simple way to showcase your portfolio. Determine which categories will be included or excluded. Set various settings such as fixed or auto for the picture size, how many posts to display, and the animation type, direction and speed. You can also use this shortcode with our columns shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_works layout=\"carousel\" picture_size=\"fixed\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"6\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"50\" excerpt_length=\"35\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Recent Work Grid</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Grid is one of the layouts included with the Recent Works shortcode. This layout is an elegant and eye-catching way to showcase your portfolio. Show filters and determine which categories will be included or excluded. Set various settings such as fixed or auto for the picture size, how many posts to display, how many columns to display, and column spacing. Also set the animation type, direction and speed for the images. You can also use this shortcode with our columns shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"4\" column_spacing=\"10\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"4\" excerpt_length=\"35\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_works][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"boxed\" filters=\"yes\" columns=\"4\" column_spacing=\"10\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"4\" excerpt_length=\"35\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Recent Work Grid With Excerpts</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Grid is one of the layouts included with the Recent Works shortcode. This layout is an informative and clever way to showcase your portfolio. Show filters and determine which categories will be included or excluded. Set various settings such as fixed or auto for the picture size, excerpt length, how many posts to display, how many columns to display, and column spacing. Also set the animation type, direction and speed for the images. You can also use this shortcode with our columns shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_works layout=\"grid-with-excerpts\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"yes\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"3\" excerpt_length=\"35\" animation_type=\"slide\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_works][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid-with-excerpts\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"4\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"4\" excerpt_length=\"35\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the recent works shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>picture_size</strong> - Can be one of these values:<em> fixed, </em>or<em> auto. </em>Sets picture size to fixed or not.[/li_item][li_item icon=\"\"]<strong>layout</strong> - Can be one of these values: <em>grid, grid-with-excerpts, </em>or<em> carousel. </em>Sets the layout of the shortcode.[/li_item][li_item icon=\"\"]<strong>boxed_text</strong> - <em>Custom</em> setting for <em>grid-with-excerpts </em>layout. Can be one of these values: <em>boxed,</em> or <em>unboxed</em>. This will enable or disable a boxed layout.[/li_item][li_item icon=\"\"]<strong>filters</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the filters.[/li_item][li_item icon=\"\"]<strong>columns</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6.</em> Sets the number of columns to be displayed. Only works with <em>grid</em>, or <em>grid-with-excerpts</em> layouts.[/li_item][li_item icon=\"\"]<strong>column_spacing</strong> - Accepts a numerical value to set column spacing. For example, <em>7</em>. Only works with <em>grid</em>, or <em>grid-with-excerpts</em> layouts.[/li_item][li_item icon=\"\"]<strong>cat_slug</strong> - The <em>slug name</em> of the category from which you want the posts to be displayed. Use a <em>comma</em> for multiple categories.[/li_item][li_item icon=\"\"]<strong>exclude_cats</strong> - The <em>slug name</em> of the category you want to exclude. Use a <em>comma</em> for multiple categories.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>number_posts </strong>- Accepts a numerical value to show how many posts are displayed. For example, <em>7</em>.[/li_item][li_item icon=\"\"]<strong>excerpt_length</strong> - Accepts a numerical value to show how many characters or words your excerpt will be. For example, <em>15.</em>[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Recent Work','','publish','open','closed','','recent-work','','','2013-05-24 20:59:46','2013-05-24 20:59:46','',0,'http://avada.theme-fusion.comxml/?page_id=3745',0,'page','',0),(3747,1,'2013-05-24 21:00:04','2013-05-24 21:00:04','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Recent Posts Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada comes packaged with the Recent Posts Shortcode that has 3 different designs to display your recent blog posts. This shortcode has several meta options that allow you to customize the shortcode such as; choose the number of columns from 1-6, number of posts, include or exclude categories, show or hide thumbnails, title, meta, excerpt, excerpt length and more!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"4\" number_posts=\"4\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>3 Different Layouts</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose from Default, Thumbnail on Side, or Date on Side as your layout. You can also choose the number of columns to be displayed, the number of posts, and which categories, as well.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Recent Posts Default Style[/title][recent_posts layout=\"default\" columns=\"4\" number_posts=\"4\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" strip_html=\"true\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Recent Posts Thumbnails On Side Style[/title][recent_posts layout=\"thumbnails-on-side\" columns=\"2\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"13\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Recent Posts Date On Side Style[/title][recent_posts layout=\"date-on-side\" columns=\"2\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_posts][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use In Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Fit this shortcode perfectly into your website by using them with our columns shortcode. This shortcode is fully responsive and will look good on any screen.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"4\" number_posts=\"4\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Animation Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Recent Posts Shortcode can have CSS3 animations. This allow the thumbnail image on your post to animate when it comes into the viewport to helps catch the viewers eye.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"bounce\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"flash\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"27\" strip_html=\"yes\" animation_type=\"shake\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the recent posts shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>layout</strong> - Can be one of these values: <em>thumbnails-on-side, default, </em>or<em> date-on-side. </em>Sets the layout for shortcode.[/li_item][li_item icon=\"\"]<strong>columns</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6.</em> Sets the number of columns to be displayed.[/li_item][li_item icon=\"\"]<strong>number_posts -</strong> Accepts a numerical value to show how many posts are displayed. For example, <em>7</em>.[/li_item][li_item icon=\"\"]<strong>cat_slug</strong> - The <em>slug name</em> of the category from which you want the posts to be displayed. Use a <em>comma</em> for multiple categories.[/li_item][li_item icon=\"\"]<strong>exclude_cats</strong> - The <em>slug name</em> of the category you want to exclude. Use a <em>comma</em> for multiple categories.[/li_item][li_item icon=\"\"]<strong>thumbnail</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the image thumbnail.[/li_item][li_item icon=\"\"]<strong>title</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the title.[/li_item][li_item icon=\"\"]<strong>meta</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the meta data.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>excerpt</strong> - Can one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the excerpt.[/li_item][li_item icon=\"\"]<strong>excerpt_length - </strong>Accepts a numerical value to show how many characters or words your excerpt will be. For example, <em>15.</em>[/li_item][li_item icon=\"\"]<strong>strip_html</strong> - Can be one of these values: <em>yes, </em>or<em> no.</em> True will show or hide HTML content in the excerpt.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Recent Posts','','publish','open','closed','','recent-posts','','','2013-05-24 21:00:04','2013-05-24 21:00:04','',0,'http://avada.theme-fusion.comxml/?page_id=3747',0,'page','',0),(3749,1,'2013-05-24 21:00:17','2013-05-24 21:00:17','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Tabs Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada\'s Tab Shortcode includes 2 different styles of tabs; vertical or horizontal. Tabs are perfect for displaying a bunch of organized information in a small area. You can use any of the other shortcodes inside the tabs, insert images, icons, checklists and more, whatever you need to get your information to your viewer.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_tabs design=\"\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 4\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 5\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][/fusion_tabs][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>2 Different Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose from horizontal tabs and vertical tabs and use them to maximize a limited space and to display as much information as you like.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 4\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][fusion_tab title=\"Title 5\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud neque porro quisquam est. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats voluptas amet uns.\n[/fusion_tab][/fusion_tabs][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"classic\" layout=\"vertical\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets.[/fusion_tab][fusion_tab title=\"Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. [/fusion_tab][fusion_tab title=\"Title 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets.[/fusion_tab][fusion_tab title=\"Title 4\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets.[/fusion_tab][fusion_tab title=\"Title 5\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Asunt in anim uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla dolores ipsums fugiats. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets.[/fusion_tab][/fusion_tabs][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Fully Compatible With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Tabs Shortcode is fully responsive and can be used with the columns shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia.\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Loaded with shortcodes so you can build amazing pages for your site</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n</ul>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione.[/fusion_tab][fusion_tab title=\"Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione.[/fusion_tab][fusion_tab title=\"Title 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione.[/fusion_tab][fusion_tab title=\"Title 4\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione.[/fusion_tab][fusion_tab title=\"Title 5\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione.[/fusion_tab][/fusion_tabs][/one_half][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_tabs design=\"classic\" layout=\"vertical\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"Title 1\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/fusion_tab][fusion_tab title=\"Title 2\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/fusion_tab][fusion_tab title=\"Title 3\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/fusion_tab][fusion_tab title=\"Title 4\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/fusion_tab][fusion_tab title=\"Title 5\" icon=\"\"][fontawesome icon=\"random\" circle=\"yes\" size=\"large\"] Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci amets uns. Etharums ser quidem rerum. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/fusion_tab][/fusion_tabs][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets.\n<ul class=\"arrow\">\n	<li>Fully responsive so your content looks great</li>\n	<li>Loaded with lots of amazing shortcodes</li>\n	<li>Unlimited color options via theme options</li>\n</ul>\n[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>design</strong> - Can be one of these values: <em>classic, </em>or<em> clean</em>. Sets the design of the shortcode.<em>\n</em>[/li_item][li_item icon=\"\"]<strong>layout</strong> - Can be one of these values: <em>horizontal, </em>or<em> vertical. </em>Sets the layout for the shortcode.[/li_item][li_item icon=\"\"]<strong>justified</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets the tabs to stretch over full shortcode width or not.[/li_item][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent. </em>Sets the tab background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>inactivecolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent.</em> Sets the inactive tab color. Leave Blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent.</em> Sets the tab border color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>fusion_tab title</strong> - The <em>custom title text</em> of the tab.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Tabs','','publish','open','closed','','tabs','','','2013-05-24 21:00:17','2013-05-24 21:00:17','',0,'http://avada.theme-fusion.comxml/?page_id=3749',0,'page','',0),(3751,1,'2013-05-24 21:00:43','2013-05-24 21:00:43','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Person Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada\'s Person Shortcode is perfect for introducing your amazing team members, whether it\'s all of them or just a select few. Show hierarchy by using the Person Shortcode with our Columns Shortcode and display more prominent team members inside columns that are larger in size. This shortcode allows you to display the name, title and social icons with custom links.</p>[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua.[/person][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua.[/person][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Full Customization Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Customize the style of the image you\'d like to display, as well as it\'s border size, color and radius. Choose whether to display social icons as boxed or not, control the box radius, and even hand pick their individual colors.</p>[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"bottomshadow\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"2px\" pic_bordercolor=\"#ffffff\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"2px\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"10px\" pic_bordercolor=\"#e5e5e5\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"yes\" social_icon_boxed_radius=\"2px\" social_icon_colors=\"#ffffff\" social_icon_boxed_colors=\"#3B5998|#54abee|#e24d87|#1060a6\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"#d9d9d9\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"no\" social_icon_boxed_radius=\"2p\" social_icon_colors=\"#3B5998|#54abee|#e24d87|#1060a6\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada\'s Person Shortcode is fully responsive and compatible with our Columns Shortcode.</p>[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"President & Founder\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"CEO\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"http://linkedin.com\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_half][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Developer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Designer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][person name=\"John Doe\" title=\"Designer\" picture=\"http://freereincenter.com/wp-content/uploads/2013/10/person.jpg\" pic_link=\"\" linktarget=\"_self\" pic_style=\"none\" hover_type=\"none\" background_color=\"\" content_alignment=\"\" pic_style_color=\"\" pic_bordersize=\"\" pic_bordercolor=\"\" pic_borderradius=\"\" icon_position=\"\" social_icon_boxed=\"\" social_icon_boxed_radius=\"\" social_icon_colors=\"\" social_icon_boxed_colors=\"\" social_icon_tooltip=\"\" email=\"\" facebook=\"http://facebook.com\" twitter=\"http://twitter.com\" instagram=\"\" dribbble=\"http://dribbble.com\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" rss=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" class=\"\" id=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/person][/one_fourth][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the person shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"80px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>name</strong> - The <em>custom name</em>. For example, <em>John Doe</em>.[/li_item][li_item icon=\"\"]<strong>title</strong> - The <em>custom title</em> or <em>position</em>. For example, <em>CEO</em>.[/li_item][li_item icon=\"\"]<strong>picture</strong> - The URL path of the custom image to be displayed, starting with <em>http://</em> and usually ending on <em>.jpg, .png </em>or<em> .gif.</em>[/li_item][li_item icon=\"\"]<strong>pic_link</strong> - The URL path where the image links to. For example, <em>http://www.example.com/</em>[/li_item][li_item icon=\"\"]<strong>linktarget</strong> - Can be one of these values: <em>_self</em> to open in same window, or <em>_blank</em> to open in new window.[/li_item][li_item icon=\"\"]<strong>pic_style</strong> - Can be one of these values: <em>none, border, glow, dropshadow, </em>or<em> bottomshadow. </em>Sets the style type for the picture.[/li_item][li_item icon=\"\"]<strong>pic_style_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the style color for all style types except for the <strong>border</strong> style. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>pic_bordersize</strong> - Accepts a pixel value that sets the border size. For example, <em>1px</em>. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>pic_bordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>pic_borderradius</strong> - Accepts a pixel value that sets the border\'s radius. For example, <em>1px</em>. Leave Blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" hover_type=\"none\" link=\"\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" animation_offset=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>social_icon_boxed</strong> - Can be one of these values: <em>default, yes, </em>or<em> no. </em>This will enable or disable boxed icons.[/li_item][li_item icon=\"\"]<strong>social_icon_boxed_radius</strong> - Accepts a pixel value that sets the boxed icon\'s radius. For example, <em>1px</em>. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>social_icon_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon\'s colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>social_icon_boxed_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon\'s box colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>social_icon_tooltip</strong> - Can be one of these values: <em>default, left, right, top, </em>or<em> bottom.</em> Sets the Social Icon Tooltip position.[/li_item][li_item icon=\"\"]<strong>email</strong> - The <em>custom email address</em>. For example, <em>johndoe@example.com</em>.[/li_item][li_item icon=\"\"]<strong>various social links</strong> - The custom URL path to your various social media profiles. For example, <em>http://www.facebook.com/johndoe</em>.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"75px\" padding_left=\"40px\" padding_right=\"40px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" animation_offset=\"\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Person','','publish','open','closed','','meet-the-team-2','','','2013-05-24 21:00:43','2013-05-24 21:00:43','',0,'http://avada.theme-fusion.comxml/?page_id=3751',0,'page','',0),(3754,1,'2013-05-24 21:01:06','2013-05-24 21:01:06','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Testimonials Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Testimonials are the perfect way to show your potential clients the kind of work you can provide. Avada allows you to use testimonial sliders or individual testimonial boxes. Choose a male or female icon, and also select the speed at which the slider rotates.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Testimonial Slider</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">The Testimonial Shortcode includes a great slider that can showcase unlimited testimonials per slider, per page. Control the speed of the slides via the Theme Options.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"My Company\" link=\"#\" target=\"\"]\"Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product.\"[/testimonial][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]\"If I could give 100 stars for support and attention to detail I definitely would. I’ve purchased a good number of WordPress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. If you are considering buying this theme at all then take it from me, you will be extremely pleased.\"[/testimonial][testimonial name=\"Strata1\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]\"Hi, I just wanted to say thanks for the great theme. I’m finding new ways to improve it every day and find that it’s been the most user-friendly theme I’ve ever purchased. I am practically computer illiterate and know extremely little if anything at all about code, CSS, or any of the inner workings of a website. The Avada theme removes all the worry, hassle, frustration and angst that beginners (and novices) feel when designing websites. If you can read and follow directions, this theme is for you. I’ve tried a hundred plug-ins with other themes and the Avada theme makes almost all of them unnecessary and obsolete.\"[/testimonial][/testimonials][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Single Testimonials</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Aside from the Testimonial Slider, you can also choose to showcase testimonials individually to give them the spotlight they deserve.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Customization Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Choose between two styles: Classic, and Clean. Customize your avatar icons to be male, female, or a custom image and attach links to company names or titles. Control the background color as well as the text color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][testimonials design=\"clean\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\"]\"Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product.\"[/testimonial][/testimonials][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"classic\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Strata1\" avatar=\"female\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]\"Hi, I just wanted to say thanks for the great theme. I’m finding new ways to improve it every day and find that it’s been the most user-friendly theme I’ve ever purchased. I am practically computer illiterate and know extremely little if anything at all about code, CSS, or any of the inner workings of a website. The Avada theme removes all the worry, hassle, frustration and angst that beginners (and novices) feel when designing websites. If you can read and follow directions, this theme is for you. I’ve tried a hundred plug-ins with other themes and the Avada theme makes almost all of them unnecessary and obsolete.\"[/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"classic\" backgroundcolor=\"#a2cc55\" textcolor=\"#3a540a\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"male\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_self\"]\"If I could give 100 stars for support and attention to detail I definitely would. I’ve purchased a good number of WordPress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. If you are considering buying this theme at all then take it from me, you will be extremely pleased.\"[/testimonial][/testimonials][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use In Any Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Use the Testimonial Shortcode with any Column Shortcode to control the width and fit it to any part of your website.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Stiggandr1\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"\"]Hey Theme Fusion. Just wanted to say thanks for the great videos. I\'ve recently expanded from Joomla to Wordpress and am using your Avada theme. These videos have been a huge help in learning my way around WP as well as using the Avada theme to its full potential.[/testimonial][/testimonials][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"classic\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Breakbeat\" avatar=\"female\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"#\" target=\"_self\"]Avada is the best theme I’ve ever bought! Theme Fusion has the best support over the net! Keep it up![/testimonial][/testimonials][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the testimonials shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>design</strong> - Can be one these values: <em>classic, </em>or<em> clean</em>. Sets the design of the shortcode.[/li_item][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent.</em> Sets the background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>textcolor</strong> - Accepts a hexcode <em>( #000000 ),</em> RGBA values <em>( rgba(0,0,0,0) ) </em>or certain alphabetic values. For example, <em>#AA0000, (0.5, 0.5, 0.5, 1), black, </em>or<em> transparent.</em> Sets the text color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>name</strong> - The <em>name</em> or <em>alias</em> of the person who provided the testimonial. For example, <em>John Doe</em>.[/li_item][li_item icon=\"\"]<strong>avatar</strong> - Can be one of these values: <em>male, female, none, </em>or<em> image</em>. Sets the avatar. If <em>image</em> is used, you will also have <strong>image</strong> option.[/li_item][li_item icon=\"\"]<strong>image</strong> - The URL path of the image you want to display, starting with <em>http://</em> and usually ending on<em> .jpg, .png </em>or<em> .gif. 40px</em> max width.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>image_border_radius</strong> - Accepts a pixel value that sets the image\'s radius. For example, <em>1px</em>. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>company</strong> - The <em>company name</em> of the person who provided the testimonial. For example, <em>ThemeFusion</em>.[/li_item][li_item icon=\"\"]<strong>link</strong> - the URL path of the company. For example, <em>http://www.theme-fusion.com/.</em>[/li_item][li_item icon=\"\"]<strong>linktarget</strong> - Can be one of these values: <em>_blank</em> for new window, or <em>_self</em> for same window.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Testimonials','','publish','open','closed','','testimonials','','','2013-05-24 21:01:06','2013-05-24 21:01:06','',0,'http://avada.theme-fusion.comxml/?page_id=3754',0,'page','',0),(3756,1,'2013-05-24 21:01:19','2013-05-24 21:01:19','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Typography Shortcodes</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes several shortcodes to help you with typography on your site. To name, there are headings, highlights, HTML styles (text link, underlined, bold, and bold emphasized) dropcaps, block quotes, and lists. With these options you can ensure that the typography on your site is stylized and looks sharp.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Headings From H1 to H6[/title][fusion_text][dropcap]L[/dropcap]orem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque diam sem, hendrerit ut faucibus sit amet, bibendum vel lacus. Nunc molestie magna sed sapien ornare tempus. Curabitur venenatis ipsum nec ligula placerat sollicitudin. Curabitur sit amet magna quam. [highlight color = \"yellow\"]eye-catching highlights[/highlight] Praesent in libero vel turpis pellentesque egestas sit amet vel nunc. Nunc lobortis dui neque, quis accumsan dolor. Aenean aliquet dignissim semper. Maecenas ullamcorper est vitae sem ornare interdum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. <strong>Bold</strong> and <em>Italic</em> text Integer dolor diam, tincidunt ac euismod ac, sollicitudin varius ante.\n<blockquote>Pellentesque elementum commodo dolor sit amet semper. Nullam id massa a turpis bibendum tincidunt. Donec non augue id augue dignissim molestie elementum vitae velit. Quisque laoreet eleifend posuere.</blockquote>\nMauris congue venenatis nisl ut varius. In posuere sem lorem, eu iaculis ante. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodo vel ger dolor diam, tincidunt ac euismod ac, sollicitudin varius ante sadips ipsums dolores sits.\n<ul>\n	<li>Lorem ipsum dolor sit amet</li>\n</ul>\n<ol>\n	<li>Lorem ipsum dolor sit amet</li>\n</ol>\nMauris congue venenatis nisl ut varius. In posuere sem lorem, eu iaculis ante. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodo vel ger dolor diam, tincidunt ac euismod ac, sollicitudin varius ante sadips ipsums dolores sits. Mauris congue venenatis nisl ut varius. In posuere sem lorem, eu iaculis ante. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodo vel ger dolor diam, tincidunt ac euismod ac, sollicitudin varius ante sadips ipsums dolores sits.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Headings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Use Headings to emphasize titles and important content. Choose from H1 (largest), H2, H3, H4, H5 and H6 (smallest) to make the content on your site stand out.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][three_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]All Heading Sizes Can Be Used With Double Lines[/title][fusion_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque diam sem, hendrerit ut faucibus sit amet, bibendum vel lacus. Nunc molestie magna sed sapien ornare tempus. Curabitur venenatis ipsum nec ligula placerat sollicitudin. Curabitur sit amet magna quam. Praesent in libero vel turpis pellentesque egestas sit amet vel nunc. Nunc lobortis dui neque, quis accumsan dolor. Aenean aliquet dignissim semper. Maecenas ullamcorper est vitae sem ornare interdum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer dolor diam, tincidunt ac euismod ac, sollicitudin varius ante. Pellentesque elementum commodo dolor sit amet semper. Nullam id massa a turpis bibendum tincidunt. Donec non augue id augue dignissim molestie elementum vitae velit. Quisque laoreet eleifend posuere. Mauris congue venenatis nisl ut varius. In posuere sem lorem, eu iaculis ante. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodo vel ger dolor diam, tincidunt ac euismod ac, sollicitudin varius ante sadips ipsums dolores sits.[/fusion_text][/three_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h1>H1 Heading</h1>\n<h2>H2 Heading</h2>\n<h3>H3 Heading</h3>\n<h4>H4 Heading</h4>\n<h5>H5 Heading</h5>\n<h6>H6 Heading</h6>\n[/fusion_text][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Highlights</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Highlights allow you to draw attention to certain content inside a paragraph and make them stand out to your viewers. You can customize the text color as well as the highlight color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]Lorem ipsums sit [highlight color=\"black\"]This is text highlighted in black[/highlight] diam molestie taciti sadips ipsumes dolores. Bibendum tas sadips [highlight color=\"yellow\"]This is text highlighted in yellow[/highlight] Sollicitudin eros sapien, ultrices primis. Volutpat tempor tur duis mattis dapibus, felis amet faucibus. fames etiam sit enim fermentum etiam quam eros velit aptent netus faucibus. Duis lectus integer malesuada mattis tempus commodoiam molestie taciti eleifend donec fames platea molestie donec, bibendum vehicula nam turpis faucibus sadips ipsums dolores fugiats sits. [highlight color=\"#a0ce4e\"]<span style=\"color: #ffffff;\">You can also use any highlight color you want!</span>[/highlight] Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodo vel ger dolor diam, tincidunt ac euismod ac, sollicits. Voluptas sadips ipsums amet untras.Sollicitudin eros sapien, ultrices primis sadips ipsums dolores voluptas sits vehicula nam turpis faucibus olup.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>HTML Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">HTML Styles allow you to attach a link to text, use underline, bold, bold emphasized, and italics.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<a href=\"http://themeforest.net/user/ThemeFusion\">This is a text link</a> tincidunt quisque tristique. <span style=\"text-decoration: underline;\">This is underlined text</span>. Sollicitudin eros sapien, ultrices primis.<span style=\"color: #a0ce4e;\"><strong><em> This is Bold Emphasized text</em></strong> </span>volutpat tempor tur duis mattis dapibus, felis amet faucibus. fames etiam sit enim fermentum etiam quam eros velit aptent netus faucibus duis lectus integer malesuada, mattis tempus commodos. Bibendum vehicula nam turpis faucibus. Voluptas sadips ipsums amet untras.Sollicitudin eros sapien, ultrices primis. <strong>This is Bold text</strong> volutpat tempor tur duis mattis dapibus, felis amet faucibus. fames <em>This is Italicized text</em><strong> </strong>etiam sit enim fermentum etiam quam eros velit aptent netus faucibus.Duis lectus integer malesuada mattis tempus commodoiam molestie taciti eleifend donec fames platea molestie donec, bibendum vehicula nam turpis faucibus. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Dropcap</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Dropcaps are a perfect way to make your articles interesting.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][dropcap]D[/dropcap]Curabitur sit amet magna quam. Praesent in libero vel turpis pellentesque egestas sit amet vel nunc. Nunc lobortis dui neque, quis accumsan dolor. Aenean aliquet dignissim semper. Maecenas ullamcorper est vitae sem ornare interdum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer dolor diam, tincidunt ac euismod ac, sollicitudin varius ante. Pellentesque elementum commodo dolor sit amet semper. Nullam id massa a turpis bibendum tincidunt. Donec non augue id augue dignissim molestie elementum vitae velit. Quisque laoreet eleifend posuere. Mauris congue venenatis nisl ut varius. In posuere sem lorem, eu iaculis ante. Quisque eget turpis sem. Phasellus varius tempor tellus, imperdiet auctor urna commodotincidunt ac euismod ac, sollicits.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Blockquote</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Blockquotes allow you to display important quotes or references in an eye-catching manner.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]Curabitur sit amet magna quam. Praesent in libero vel turpis pellentesque egestas sit amet vel nunc. Nunc lobortis dui neque, quis accumsan dolor. Aenean aliquet dignissim semper. Maecenas ullamcorper est vitae sem ornare interdum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer dolor diam, tincidunt ac euismod ac, sollicitudin varius ante. Pellentesque elementum commodo dolor sit amet semper. Nullam id massa a turpis bibendum tincidunt.\n<blockquote>Sollicitudin eros sapien, ultrices primis. Volutpat tempor tur duis mattis dapibus, felis amet faucibus. fames etiam sit enim fermentum etiam quam eros velit aptent netus faucibus duis lectus integer malesuada, mattis tempus commodoiam molestie taciti eleifend donec fames platea molestie donec, bibendum vehicula nam turpis faucibus, Tncidunt quisque tristique. Sollicitudin eros sapien, ultrices primis. Folutpat tempor tur duis mattis dapibus, felis amet faucibus.</blockquote>\nCurabitur sit amet magna quam. Praesent in libero vel turpis pellentesque egestas sit amet vel nunc. Nunc lobortis dui neque, quis accumsan dolor. Aenean aliquet dignissim semper. Maecenas ullamcorper est vitae sem ornare interdum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer dolor diam, tincidunt ac euismod ac, sollicitudin varius ante. Pellentesque elementum commodo dolor sit amet semper. Nullam id massa a turpis bibendum tincidunt.[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Ordered & Unordered Lists</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Ordered Lists displays your list as numbered. Unordered Lists, on the other hand, makes use of bullets to display your list.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<ol>\n	<li>This is an item in an ordered bulleted list wrapped in a half column</li>\n	<li>This is an item in an ordered bulleted list wrapped in a half column</li>\n	<li>This is an item in an ordered bulleted list wrapped in a half column</li>\n</ol>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<ul>\n	<li>This is an item in an unordered bulleted list wrapped in a half column</li>\n	<li>This is an item in an unordered bulleted list wrapped in a half column</li>\n	<li>This is an item in an unordered bulleted list wrapped in a half column</li>\n</ul>\n[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Typography','','publish','open','closed','','typography','','','2013-05-24 21:01:19','2013-05-24 21:01:19','',0,'http://avada.theme-fusion.comxml/?page_id=3756',0,'page','',0),(3813,1,'2013-08-19 17:07:46','2013-08-19 17:07:46','[fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"10px\" paddingbottom=\"5px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][three_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"font-size: 30px;\">Themeforest\'s [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]#1[/popover] Selling Wordpress Theme of All Time</h1>\n<p style=\"margin-top: -10px; font-size: 17px;\">Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market. Join the community!</p>\n\n[/fusion_text][/three_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"32\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][content_boxes layout=\"icon-on-top\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"Beautifully Simplistic\" icon=\"fa-tablet\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]      If you\'re a code nerd or a Word Press newbie, Avada is for you. It\'s [tooltip title=\"That\'s Right, It\'s For You!\"]<strong>simply built for everyone</strong>[/tooltip], and can be as simple or complex as you want it to be. Enjoy using Avada![/content_box][content_box title=\"Free Support &amp; Updates\" icon=\"fa-magic\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]      We truly care about our users &amp; end product which is why[tooltip title=\"Over 32,000 Users!\"]<strong> our users love Avada!</strong>[/tooltip] You will too with free updates &amp; the most incredible support around.Enjoy using Avada![/content_box][content_box title=\"Blissful Layout Options \" icon=\"fa-thumbs-up\" backgroundcolor=\"\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]      Avada includes so many different options and designs. Users can make [tooltip title=\"Like This Text Tooltip!\"]<strong>cool layouts</strong>[/tooltip] with the tools we provide. It doesn\'t get any better.Enjoy using Avada![/content_box][/content_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2013/10/bkgd1.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"100px\" paddingbottom=\"100px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<img class=\"aligncenter\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/08/text.png\" alt=\"\">[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"55px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<img class=\"aligncenter\" src=\"http://freereincenter.com/wp-content/uploads/2013/02/logo2x.png\" alt=\"\">\n<h1 style=\"text-align: center; font-size: 30px;\">We Are Dedicated To Our Users &amp; Product</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">Simply put, we thrive on making Avada the [tooltip title=\"Avada Is The #1 Selling Theme\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n\n[/fusion_text][separator style_type=\"double\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][dropcap]L[/dropcap]orem ipsum dolor sit amet, consectetur adipiscing elit. Nullam et elementum erat, biluctus mi. Quisque consequat risus quis tincidunt fringilla. Ut sed rhoncus metus, in rhoncus dolor. Integer tempor ligula est, sed luctus metus tempus a. Pellentesque tempor libero et arcu bibendum mollis. Aliquam eu odio eget diam egestas euismod vel sed orc aenean placerat[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Quisque blandit dolor risus, sed dapibus dui facilisis sed. Donec eu porta elit. Aliquam porta sollicitudin ante, ac fermentum orci mattis et. Phasellus ac nibh eleifend, sagittis purus nec, elementum massa. Quisque tincidunt sapien a sem porttitor, id convallis dolor pharetra. Donec tempor cursus facilisis. Ut eu elementum arcu, vel hendrerit nisi. Cras sed euismod nibh, a adipiscing nunserts.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][toggle title=\"We Can Deliver On Projects\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia nons.[/toggle][/accordian][/one_third][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2012/11/slide_2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"35px\" paddingbottom=\"35px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; color: #fff;\">Amazing Nature Full HD 1080p | <span style=\"color: #a0ce4e;\">TheChokAAA</span></h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][youtube id=\"mcixldqDIEQ\" width=\"1100\" height=\"600\" autoplay=\"no\" api_params=\"\" class=\"\"][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Amazing Tools To Build Awesome Websites[/title][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with meta options for easy customization[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<a title=\"lightbox description\" href=\"http://freereincenter.com/wp-content/uploads/2014/06/mobile.jpg\" rel=\"prettyPhoto\"><img src=\"http://freereincenter.com/wp-content/uploads/2014/06/mobile.jpg\" alt=\"lightbox title\"></a>[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2013/10/slide_1.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"35px\" paddingbottom=\"45px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Over 70,000 Users, Let\'s See What Some Have To Say?</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">We love our users and are fully dedicated to keeping their trust by offering amazing updates and [tooltip title=\"94% of Users Recommend Avada\"]<strong>outstanding</strong>[/tooltip] after sale support!</p>[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Version 16','','publish','open','closed','','home-version-16','','','2013-08-19 17:07:46','2013-08-19 17:07:46','',0,'http://avada.theme-fusion.comxml/?page_id=3813',0,'page','',0),(3815,1,'2013-08-19 17:08:12','2013-08-19 17:08:12','[separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"-30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"10px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>[/fusion_text][/fullwidth][separator style_type=\"single\" top_margin=\"25\" bottom_margin=\"40\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"25px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][fusion_text]<a title=\"\" href=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_6.jpg\" rel=\"prettyPhoto\"><img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_6.jpg\" /></a>[/fusion_text][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>All About Avada</h2>\nIf you\'re a code nerd or a Word Press newbie, Avada is for you. It\'s simply built for everyone, and can be as simple or complex as you want it to be. We truly care about our users &amp; end product which is why[tooltip title=\"And We Love Them!\"]<strong> our users love Avada!</strong>[/tooltip] You will too with free updates &amp; the most incredible support around. Avada includes so many different options and designs. Users are able to make [tooltip title=\"Like This Text Tooltip!\"]<strong>amazingly cool layouts</strong>[/tooltip] with all the tools we provide. It doesn\'t get better than this.[/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][fusion_text]<a title=\"\" href=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_6.jpg\" rel=\"prettyPhoto\"><img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_6.jpg\" /></a>[/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#747474\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Unlimited color options with a backed color picker, including the gradients[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2013/10/bkgd1.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"20px\" paddingbottom=\"70px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Come In And [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Check Us Out[/popover], We\'d Love To Say Hello!</h1>[/fusion_text][separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"rgba(000,000,000,.15)\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][map address=\"Apple Inc.‎ 1, Infinite Loop Cupertino, CA 95014, United States | Cupertino High School 10100 Finch Ave, Cupertino, CA, United States\" type=\"terrain\" map_style=\"custom\" overlay_color=\"#70b260\" infobox=\"default\" infobox_background_color=\"\" infobox_text_color=\"\" infobox_content=\"\" icon=\"theme\" width=\"100%\" height=\"450px\" zoom=\"14\" scrollwheel=\"yes\" scale=\"yes\" zoom_pancontrol=\"yes\" popup=\"yes\" class=\"\" id=\"\"][/map][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"55px\" paddingbottom=\"25px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"95\"]HTML[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"85\"]CSS[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"90\"]WP[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"100\"][fontawesome icon=\"thumbs-up\" circle=\"no\" size=\"large\" iconcolor=\"#747474\" circlecolor=\"#333333\" circlebordercolor=\"#333333\"][/counter_circle][/counters_circle][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2013/10/slide_1.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"30px\" paddingbottom=\"35px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Over 70,000 Users, Let\'s See What Some Have To Say?</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">We love our users and are fully dedicated to keeping their trust by offering amazing updates and [tooltip title=\"94% of Users Recommend Avada\"]<strong>outstanding</strong>[/tooltip] after sale support!</p>[/fusion_text][separator style_type=\"\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][testimonials backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" class=\"\" id=\"\"][testimonials backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][testimonials backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"45px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][fusion_text]<img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/fusion_text][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Who Are We?[/title][fusion_text]Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque.[/fusion_text][separator style_type=\"single\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-plus\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so content looks great[/li_item][li_item icon=\"\"]Awesome sliders to showcase content[/li_item][li_item icon=\"\"]Advanced theme options panel[/li_item][li_item icon=\"\"]Amazing shortcodes loaded with options[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Version 17','','publish','open','closed','','home-page-17','','','2013-08-19 17:08:12','2013-08-19 17:08:12','',0,'http://avada.theme-fusion.comxml/?page_id=3815',0,'page','',0),(11675,1,'2016-08-29 20:20:03','2016-08-29 20:20:03','','slide_5.jpg','','inherit','closed','closed','','slide-5-jpg','','','2016-08-29 20:20:03','2016-08-29 20:20:03','',0,'http://freereincenter.com/wp-content/uploads/revslider/Avada_Full_Width/slide_5.jpg',0,'attachment','image/jpeg',0),(4097,1,'2013-10-16 15:12:13','2013-10-16 15:12:13','','Shop','','publish','closed','closed','','shop','','','2013-10-16 15:12:13','2013-10-16 15:12:13','',0,'http://avada.theme-fusion.comxml/shop/',0,'page','',0),(4098,1,'2013-10-16 15:12:13','2013-10-16 15:12:13','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2013-10-16 15:12:13','2013-10-16 15:12:13','',0,'http://avada.theme-fusion.comxml/cart/',0,'page','',0),(4099,1,'2013-10-16 15:12:13','2013-10-16 15:12:13','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2013-10-16 15:12:13','2013-10-16 15:12:13','',0,'http://avada.theme-fusion.comxml/checkout/',0,'page','',0),(4100,1,'2013-10-16 15:12:13','2013-10-16 15:12:13','[woocommerce_my_account]','My Account','','publish','closed','closed','','my-account','','','2013-10-16 15:12:13','2013-10-16 15:12:13','',0,'http://avada.theme-fusion.comxml/my-account/',0,'page','',0),(4120,1,'2013-10-16 15:51:29','2013-10-16 15:51:29','[featured_products_slider class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"-27\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"10px\" paddingbottom=\"20px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; color: #ffffff; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #dfefb5;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; color: #ffffff; margin-top: -10px; font-size: 17px;\">With over 70,000+ Users and counting, Avada is the most complete and trusted wordpress theme on the market.</p>\n[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"40px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][product_category category=\"category-1\" per_page=\"8\" columns=\"4\" orderby=\"date\" order=\"desc\"][/fullwidth][fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"px\" paddingright=\"px\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"rgba(255,255,255,.3)\" shadow=\"no\" shadowopacity=\"\" border=\"1px\" bordercolor=\"#e5e4e4\" highlightposition=\"left\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada is the ultimate multi-purpose wordpress theme!\" description=\"Loaded with awesome features, premium sliders, unlimited colors, advanced theme options &amp; much more!\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"][/tagline_box][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Shop Style 1','','publish','closed','closed','','home-shop-style-1','','','2013-10-16 15:51:29','2013-10-16 15:51:29','',0,'http://avada.theme-fusion.comxml/?page_id=4120',0,'page','',0),(4126,1,'2013-10-16 15:53:45','2013-10-16 15:53:45','[fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"20px\" paddingbottom=\"25px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text][featured_products per_page=\"4\" columns=\"4\" orderby=\"date\" order=\"desc\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"70px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Top Selling Products[/title][fusion_text][recent_products per_page=\"6\" columns=\"3\" orderby=\"name\" order=\"asc\"][/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Company Information[/title][fusion_text]Avada is [tooltip title=\"Everting You Need To Build A Site!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you buy Avada , rest assure you will also get [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>amazing customer support around!</strong>[/tooltip].[/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][accordian class=\"\" id=\"\"][toggle title=\"Our Company Mission\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][toggle title=\"The Avada Philosophy\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][toggle title=\"The Avada Promise\" open=\"\"]Fugiat dapibus, tellus ac cursus commodo, mauris sit condim eser ntumsi nibh, uum a justo vitaes amet risus amets un. Posi sectetut amet fermntum orem.[/toggle][/accordian][separator style_type=\"none\" top_margin=\"45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][youtube id=\"mcixldqDIEQ\" width=\"288\" height=\"169\" autoplay=\"no\" api_params=\"\" class=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" class=\"\" id=\"\"][testimonial name=\"MarketingMonsters\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Theme Fusion\" link=\"\" target=\"\"]WOW – I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. But thank you so much for this theme, Best $40 bucks I have ever spent in my entire life! WOW- AMAZING!. [/testimonial][testimonial name=\"Agustin666\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Theme Fusion\" link=\"\" target=\"\"]Great theme, I had to build a site in a hurry , and could choose no better, in 10 hours I have the site up and running, the best part is that I never had to ask for support, all parameter change was made within the theme and with a little css customization (also within the theme). Best wordpress theme I ever used![/testimonial][/testimonials][/one_third][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"50px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Screen Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks amazing no matter the screen size will be.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four easy to use premium sliders that help your content stand out to your viewers!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We include the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider.[/flip_box][flip_box title_front=\"Fusion Builder\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers an amzzing visual page builder called Fusion Builder, allowing you to create beautiful pages.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you freedom.[/flip_box][/flip_boxes][/fullwidth]','Home Shop Style 2','','publish','closed','closed','','home-shop-style-2','','','2013-10-16 15:53:45','2013-10-16 15:53:45','',0,'http://avada.theme-fusion.comxml/?page_id=4126',0,'page','',0),(4138,1,'2013-10-16 15:59:31','2013-10-16 15:59:31','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"20px\" padding_bottom=\"20px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"Avada includes an awesome Flexsldier plugin that comes bundled with shortcodes. There are 4 different post sliders that can be used on any page. Two of them work directly with your blog posts, one is for image attachments, and the last is for any image or video. They are great for displaying images & videos on your site.\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][/fullwidth][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][featured_products_slider picture_size=\"fixed\" carousel_layout=\"title_on_rollover\" autoplay=\"no\" columns=\"5\" column_spacing=\"0\" scroll_items=\"\" navigation=\"yes\" mouse_scroll=\"no\" show_cats=\"yes\" show_price=\"yes\" show_buttons=\"yes\" class=\"\" id=\"\"][/featured_products_slider][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding_top=\"40px\" padding_bottom=\"20px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][featured_products_slider picture_size=\"fixed\" carousel_layout=\"title_on_rollover\" autoplay=\"no\" columns=\"1\" column_spacing=\"0\" scroll_items=\"\" navigation=\"yes\" mouse_scroll=\"no\" show_cats=\"yes\" show_price=\"yes\" show_buttons=\"yes\" class=\"\" id=\"\"][/featured_products_slider][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Featured Product Slider[/title][fusion_text]This is the WooCommerce Featured product slide. A beautiful design with nice large product images that will surely grab the viewers attention. Fully responsive and looks fantastic in any sized column or mobile device.[/fusion_text][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Beautiful design with large product images[/li_item][li_item icon=\"\"]Automatically pulls your Featured products[/li_item][li_item icon=\"\"]Use the shortcode in any sized column[/li_item][li_item icon=\"\"]Full responsive and looks great on mobile devices[/li_item][li_item icon=\"\"]Unlimited use per page[/li_item][/checklist][/one_half][/fullwidth]','Featured Product Slider','','publish','closed','closed','','featured-product-slider','','','2013-10-16 15:59:31','2013-10-16 15:59:31','',0,'http://avada.theme-fusion.comxml/?page_id=4138',0,'page','',0),(4140,1,'2013-10-16 16:00:02','2013-10-16 16:00:02','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"Avada comes with a WooCommerce product carousel slider that can be isnerted on any page and automatically pull your product posts. Specify only one category to show, or a combination of them, or show all. Show or hide the rollover elements like categories, price and buttons. \" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Product Carousel[/title][products_slider picture_size=\"auto\" cat_slug=\"\" number_posts=\"7\" show_cats=\"no\" show_price=\"yes\" show_buttons=\"no\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" class=\"\" id=\"\"][fusion_text]<h3>Use Carousel With Columns</h3>\nThe recent work carousel can be used inside of column shortcodes to control the size. By default it will display all categories of portfolio posts. Users can specify that only a specific category is displayed instead of all categories, which gives you full control over what posts are seen by viewers.[/fusion_text][/one_third][two_third last=\"yes\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][products_slider picture_size=\"auto\" cat_slug=\"\" number_posts=\"5\" show_cats=\"no\" show_price=\"yes\" show_buttons=\"no\" class=\"\" id=\"\"][/two_third][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use and items per carousel and per page[/li_item][li_item icon=\"\"]Specify a specific category to display in recent work carousel[/li_item][li_item icon=\"\"]Specify the number of posts that will be displayed[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Show/hide categories, price and buttons on rollover[/li_item][li_item icon=\"\"]Use with column shortcodes to control the width[/li_item][li_item icon=\"\"]Set the link target attribute to control how the link opens[/li_item][/checklist][/one_half]','Product Carousel','','publish','closed','closed','','product-carousel','','','2013-10-16 16:00:02','2013-10-16 16:00:02','',0,'http://avada.theme-fusion.comxml/?page_id=4140',0,'page','',0),(4142,1,'2013-10-16 16:00:28','2013-10-16 16:00:28','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This is the Recent Products shortcode that allows you to insert your products by category on any page. Adjust column size, items per page, order by format.\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Recent Products [/title][recent_products per_page=\"4\" columns=\"4\" orderby=\"date\" order=\"desc\"][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Them In 1-4 Columns[/title][recent_products per_page=\"3\" columns=\"3\" orderby=\"date\" order=\"desc\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Display products based on category[/li_item][li_item icon=\"\"]Specify how many items will show in the short code[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Specify the column layout, accepts 1-4 column[/li_item][li_item icon=\"\"]Change the order by format and type[/li_item][/checklist][/one_half]','Recent Products','','publish','closed','closed','','recent-products','','','2013-10-16 16:00:28','2013-10-16 16:00:28','',0,'http://avada.theme-fusion.comxml/?page_id=4142',0,'page','',0),(4144,1,'2013-10-16 16:00:52','2013-10-16 16:00:52','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This is the Featured Products shortcode that allows you to insert your products by category on any page. Adjust column size, items per page, order by format.\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Recent Products [/title][featured_products per_page=\"4\" columns=\"4\" orderby=\"date\" order=\"desc\"][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Them In 1-4 Columns[/title][featured_products per_page=\"3\" columns=\"3\" orderby=\"date\" order=\"desc\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Display featured products on any page[/li_item][li_item icon=\"\"]Specify how many items will show in the short code[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Specify the column layout, accepts 1-4 column[/li_item][li_item icon=\"\"]Change the order by format and type[/li_item][/checklist][/one_half]','Featured Products','','publish','closed','closed','','featured-products','','','2013-10-16 16:00:52','2013-10-16 16:00:52','',0,'http://avada.theme-fusion.comxml/?page_id=4144',0,'page','',0),(4146,1,'2013-10-16 16:01:20','2013-10-16 16:01:20','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This is the Product Category short code that you can use to display a category box and a number that shows how many products are in that category.\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Product Categories[/title][product_categories number=\"8\"]','Product Categories','','publish','closed','closed','','product-categories','','','2013-10-16 16:01:20','2013-10-16 16:01:20','',0,'http://avada.theme-fusion.comxml/?page_id=4146',0,'page','',0),(4148,1,'2013-10-16 16:02:09','2013-10-16 16:02:09','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This shortcode allows you to display products based on SKU or ID, and it can be used in any size column and the size will adapt.\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Products By SKU/ID[/title][products skus=\"003,005,007,004\"][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Them In 1-4 Columns[/title][one_third last=\"no\" class=\"\" id=\"\"][product sku=\"001\"][/one_third][one_third last=\"no\" class=\"\" id=\"\"][product sku=\"002\"][/one_third][one_third last=\"yes\" class=\"\" id=\"\"][product sku=\"003\"][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Use with columns and unlimited use per page[/li_item][li_item icon=\"\"]Specify a product ID or SKU[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Use Product By SKU/ID for single product[/li_item][li_item icon=\"\"]Use Products By SKU/ID for multiple products[/li_item][/checklist][/one_half]','Products By SKU/ID','','publish','closed','closed','','products-by-skuid','','','2013-10-16 16:02:09','2013-10-16 16:02:09','',0,'http://avada.theme-fusion.comxml/?page_id=4148',0,'page','',0),(4150,1,'2013-10-16 16:02:59','2013-10-16 16:02:59','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This is the Products By Category shortcode that allows you to insert your products by category on any page. Adjust column size, items per page, order by format.\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Products By Category [/title][fusion_text][product_category category=\"category-1\" per_page=\"4\" columns=\"4\" orderby=\"date\" order=\"desc\"][/fusion_text][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use Them In 1-4 Columns[/title][fusion_text][product_category category=\"category-1\" per_page=\"3\" columns=\"3\" orderby=\"date\" order=\"desc\"][/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Display products based on category[/li_item][li_item icon=\"\"]Specify how many items will show in the short code[/li_item][/checklist][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Specify the column layout, accepts 1-4 column[/li_item][li_item icon=\"\"]Change the order by format and type[/li_item][/checklist][/one_half]','Product By Category','','publish','closed','closed','','product-by-category','','','2013-10-16 16:02:59','2013-10-16 16:02:59','',0,'http://avada.theme-fusion.comxml/?page_id=4150',0,'page','',0),(4169,1,'2013-10-16 17:59:24','2013-10-16 17:59:24','[fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"http://avada.theme-fusion.com/wp-content/uploads/2013/05/page_bkgd3.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#c8c8c8\" borderstyle=\"\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 40px !important;\">Maintenance Mode</h1>\n<p style=\"text-align: center; margin-top: -20px;\">Avada includes <span style=\"color: #333333;\"><strong>blank pages</strong></span> so you can build all kinds of awesome stuff, like a <span style=\"color: #333333;\"><strong>maintenance mode</strong></span> page!</p>[/fusion_text][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][content_boxes layout=\"icon-boxed\" icon_circle_size=\"large\" icon_align=\"left\" columns=\"3\" class=\"\" id=\"\"][content_box title=\"Beautifully Simplistic\" icon=\"fa-tablet\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]  If you\'re a code nerd or a Word Press newbie, Avada is for you. It\'s [tooltip title=\"That\'s Right, It\'s For You!\"]<strong>built for everyone</strong>[/tooltip], and can be as simple or complex as you want.[/content_box][content_box title=\"Free Support &amp; Updates\" icon=\"fa-magic\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]  We truly care about our users &amp; end product which is why[tooltip title=\"Over 32,000 Users!\"]<strong> our users love Avada!</strong>[/tooltip] You will too with free updates &amp; amazing support.[/content_box][content_box title=\"Blissful Layout Options \" icon=\"fa-thumbs-up\" backgroundcolor=\"#f6f6f6\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" iconflip=\"\" iconrotate=\"\" iconspin=\"no\" image=\"\" image_width=\"\" image_height=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktext=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]  Avada includes so many different options and designs. Create [tooltip title=\"Like This Text Tooltip!\"]<strong>amazingly cool layouts</strong>[/tooltip] with all the different tools we provide.[/content_box][/content_boxes][/fullwidth]','Maintenance Mode','','publish','closed','closed','','maintenance-mode','','','2013-10-16 17:59:24','2013-10-16 17:59:24','',0,'http://avada.theme-fusion.comxml/?page_id=4169',0,'page','',0),(4172,1,'2013-10-16 19:41:10','2013-10-16 19:41:10','[fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"15px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 40px !important;\">Coming Soon</h1>\n<p style=\"text-align: center; margin-top: -20px;\">Avada includes [tooltip title=\"Versatile!\"]<strong>blank pages</strong>[/tooltip] so you can build all kinds of awesome stuff, like a [tooltip title=\"Woo Hoo!\"]<strong>coming soon</strong>[/tooltip] page!</p>[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"90\"]DESIGN[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"85\"]CODE[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"90\"]HTML[/counter_circle][counter_circle filledcolor=\"#a0ce4e\" unfilledcolor=\"#e3edd1\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"\" value=\"100\"]WP[/counter_circle][/counters_circle][one_half last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Email Me When It\'s Done[/title][fusion_text]This is where a contact form can go. This can eb done with the free Contact Form 7 plugin.  Install the plugin, then create a form and insert the shortcode for the form here. Like you see below:\n\n[contact-form-7 id=\"4180\" title=\"Contact form 1\"][/fusion_text][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Our Top Priorities[/title][checklist icon=\"fa-check\" iconcolor=\"#ffffff\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][li_item icon=\"\"]Unlimited color options with a backed color picker, including the gradients[/li_item][li_item icon=\"\"]Multiple layout options for home pages, portfolio and blog section[/li_item][li_item icon=\"\"]We offer free support because we care about your site as much as you.[/li_item][/checklist][/one_half][/fullwidth]','Coming Soon','','publish','closed','closed','','coming-soon','','','2013-10-16 19:41:10','2013-10-16 19:41:10','',0,'http://avada.theme-fusion.comxml/?page_id=4172',0,'page','',0),(4356,1,'2013-10-25 20:12:54','2013-10-25 20:12:54','','Portfolio Sidebar Page','','publish','closed','closed','','portfolio-sidebar-page','','','2013-10-25 20:12:54','2013-10-25 20:12:54','',0,'http://avada.theme-fusion.comxml/?page_id=4356',0,'page','',0),(4427,1,'2013-12-16 16:05:11','2013-12-16 16:05:11','[fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"45px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"design\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"15\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg\"><img class=\"alignnone size-full wp-image-4395\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg\" alt=\"portfolio_5\" width=\"940\" height=\"475\" /></a>[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"#6a6970\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" stylecolor=\"\" align=\"left\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/12/col_image_2.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Featured Posts of The Month[/title][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"default\" columns=\"3\" number_posts=\"3\" cat_slug=\"wordpress\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"\" class=\"\" id=\"\"][/recent_posts][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Creative News[/title][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"3\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"26\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/two_third][one_third last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Photography News[/title][postslider layout=\"posts\" excerpt=\"15\" category=\"creative\" limit=\"1\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][/one_third][/fullwidth][fullwidth backgroundcolor=\"#6a6970\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" stylecolor=\"\" align=\"left\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/12/col_image_3.jpg\" alt=\"\" />[/imageframe][/fullwidth][fullwidth backgroundcolor=\"#f6f6f6\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"65px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Video News[/title][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"videos\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]World News[/title][recent_posts layout=\"date-on-side\" columns=\"1\" number_posts=\"3\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"30\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"\" paddingtop=\"55px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Most Shared Posts[/title][recent_posts layout=\"default\" columns=\"4\" number_posts=\"4\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"30\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/fullwidth]','Home Magazine Style 1','','publish','closed','closed','','home-magazine-style-1','','','2013-12-16 16:05:11','2013-12-16 16:05:11','',0,'http://avada.theme-fusion.comxml/?page_id=4427',0,'page','',0),(4442,1,'2013-12-16 16:14:47','2013-12-16 16:14:47','[two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"-40\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"15\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"21\" bottom_margin=\"21\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<a href=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg\"><img class=\"alignnone size-full wp-image-4395\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg\" alt=\"portfolio_5\" width=\"940\" height=\"475\"></a>[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/12/col_image_3.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][blog number_posts=\"3\" cat_slug=\"wordpress\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"\" id=\"\"][/blog][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Creative News[/title][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"15\" category=\"creative\" limit=\"1\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/portfolio_6.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][postslider layout=\"posts\" excerpt=\"\" category=\"design\" limit=\"3\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"35\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"4\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"18\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_half][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Wordpress News[/title][blog number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"60\" meta_all=\"no\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][separator style_type=\"none\" top_margin=\"-30\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"date-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"32\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][recent_posts layout=\"date-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"design\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"32\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Photography News[/title][recent_posts layout=\"default\" columns=\"4\" number_posts=\"4\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"35\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"\" class=\"\" id=\"\"][/recent_posts][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/12/col_image_3.jpg\" />[/imageframe]','Home Magazine Style 2','','publish','closed','closed','','home-magazine-style-2','','','2013-12-16 16:14:47','2013-12-16 16:14:47','',0,'http://avada.theme-fusion.comxml/?page_id=4442',0,'page','',0),(4461,1,'2013-12-16 16:38:06','2013-12-16 16:38:06','[postslider layout=\"posts-with-excerpt\" excerpt=\"45\" category=\"design\" limit=\"2\" lightbox=\"yes\" class=\"\" id=\"\"][/postslider][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2013/12/col_image_2.jpg\" />[/imageframe][separator style_type=\"double\" top_margin=\"40\" bottom_margin=\"40\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][blog number_posts=\"1\" cat_slug=\"\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"60\" meta_all=\"no\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"medium\" class=\"\" id=\"\"][/blog][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Wordpress News[/title][recent_posts layout=\"default\" columns=\"3\" number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"9\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Photography News[/title][recent_posts layout=\"date-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"no\" excerpt=\"yes\" excerpt_length=\"26\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Creative News[/title][recent_posts layout=\"date-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"no\" excerpt=\"yes\" excerpt_length=\"26\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_half][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2013/12/col_image_3.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"48\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Video News[/title][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"videos\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"26\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-35\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"no\" excerpt=\"yes\" excerpt_length=\"17\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Off Beat News[/title][recent_posts layout=\"default\" columns=\"1\" number_posts=\"1\" cat_slug=\"creative\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"26\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][separator style_type=\"none\" top_margin=\"-35\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"2\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"no\" excerpt=\"yes\" excerpt_length=\"17\" strip_html=\"yes\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"][/recent_posts][/one_half]','Home Magazine Style 3','','publish','closed','closed','','home-magazine-style-3','','','2013-12-16 16:38:06','2013-12-16 16:38:06','',0,'http://avada.theme-fusion.comxml/?page_id=4461',0,'page','',0),(4546,1,'2014-03-10 17:20:03','2014-03-10 17:20:03','[fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"17px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][layerslider id=\"1\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][rev_slider captions_tall][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"65px\" paddingbottom=\"5px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<h2>What Else? We Have The Best Support Around</h2>[/fusion_text][separator style_type=\"single\" top_margin=\"5\" bottom_margin=\"25\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Avada is [tooltip title=\"Everting You Need To Create!\"]<strong>loaded with useful, functional options</strong>[/tooltip] that allow users to quickly and easily create stunning websites. But that\'s not all, when you purchase a copy of&nbsp;Avada you will also get the [tooltip title=\"Support Forum, Docs &amp; Videos!\"]<strong>most amazing customer support around!</strong>[/tooltip][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"dark\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully responsive so your content will always look good on any screen size[/li_item][li_item icon=\"\"]Easy to use Fusion Builder allows you to quickly create unique pages.[/li_item][li_item icon=\"\"]Advanced theme options panel to easily customize your website[/li_item][li_item icon=\"\"]Awesome sliders give you the opportunity to showcase your content[/li_item][/checklist][separator style_type=\"single\" top_margin=\"10\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_posts layout=\"thumbnails-on-side\" columns=\"1\" number_posts=\"3\" cat_slug=\"\" exclude_cats=\"\" thumbnail=\"yes\" title=\"yes\" meta=\"yes\" excerpt=\"yes\" excerpt_length=\"12\" strip_html=\"true\" animation_type=\"fade\" animation_direction=\"left\" animation_speed=\"\" class=\"\" id=\"\"][/recent_posts][/one_half][/fullwidth][separator style_type=\"none\" top_margin=\"-25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"http://avadatest.theme-fusion.com/wp-content/uploads/2013/05/page_bkgd1.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"center center\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#f6f6f6\" borderstyle=\"\" paddingtop=\"40px\" paddingbottom=\"8px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; color: #fff;\">Full Width Sections Are Very Cool, Add Background Image With Fixed Scrolling, or Add Background Color With A Border</h1>[/fusion_text][separator style_type=\"double\" top_margin=\"0\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][recent_works layout=\"grid\" picture_size=\"auto\" boxed_text=\"unboxed\" filters=\"no\" columns=\"3\" column_spacing=\"12\" cat_slug=\"\" exclude_cats=\"\" number_posts=\"9\" excerpt_length=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/recent_works][/fullwidth][fullwidth backgroundcolor=\"#fff\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 18px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>95,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>[/fusion_text][separator style_type=\"double\" top_margin=\"5\" bottom_margin=\"22\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth]','Home Version 18','','publish','closed','closed','','home-version-18','','','2014-03-10 17:20:03','2014-03-10 17:20:03','',0,'http://avada.theme-fusion.comxml/?page_id=4546',0,'page','',0),(4548,1,'2014-03-10 17:23:40','2014-03-10 17:23:40','[fullwidth background_color=\"#f8f8f8\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"intro\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px;\">Avada: Themeforest\'s <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><span style=\"color: #a0ce4e;\">#1</span></a> Selling Wordpress Theme of All Time</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px;\">With over [tooltip title=\"Join The Avada Community!\"]<strong>70,000+ Users and counting</strong>[/tooltip], Avada is the [tooltip title=\"We Love Our Users!\"]<strong>most complete and trusted</strong>[/tooltip] wordpress theme on the market.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Theme Image\" src=\"http://freereincenter.com/wp-content/uploads/2013/10/browsers.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Free Updates &amp; Support: You Need It, We Gladly Provide It.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Our #1 priority is you, the user. We believe in our product and hold ourselves to the highest standards. We truly care about your site as much as you do, which is why we offer the best support around at our dedicated support center. In addition, Avada constantly offers free updates with new features requested by our users. You can count on us.</p>[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Macbook Image\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][counters_box  columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" icon_top=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"70000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users &amp; Counting[/counter_box][counter_box value=\"25000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"features\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Endless Possibilities: The Only Theme You Need</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada\'s powerful theme and meta options along with its unique structure lets you create any design style with just one theme. These simple yet powerful options allow you to create any type of website. No two versions of Avada will ever look the same.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/combo_text.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Incredible Features: The Proof Is In The Pudding</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada is loaded with useful features, each one with its own meaningful purpose. We listen to our users and integrate their feature requests on a regular basis. Avada is not only built by us, but also by our users.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Ultra-Responsive Design</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is 100% responsive, each and every element including the awesome premium sliders are fully responsive. And the responsive mode can easily be turned on or off in the theme options panel![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Theme Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]We include an extremely advanced admin panel allowing users to quickly and easily customize the theme. These options are intuitive and very powerful and best of all are fun to use![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Powerful Page Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada’s meta options make it easy to customize your content for each page, blog, portfolio or FAQ post. Apply sliders, backgrounds, colors, icons, sidebars to name a few.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Headers &amp; Megamenu</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada includes 5 different header designs to choose from, a sticky header option and an amazing widgetized megamenu! Unlike other themes, we give you control over the header elements.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Fusion-Core Shortcodes</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Our Shortcode Generator is a pleasure to use and has an amazingly beautiful user interface! Quickly and easily build your own custom pages using all the various shortcodes that Avada includes.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Premium Sliders</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada has you covered and includes sliders for regular images and videos, or beautifully animated slides, or post sliders. Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider![/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Translation &amp; RTL</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Not only is Avada translation ready, we also Include several languages already translated! Need RTL? No problem! And Avada is 100% WPML &amp; qTranslate compatible for multi-lingual site![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Blog Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]6 Layouts to choose from; unlimited blog pages, custom categories per page, premium sliders, reorder posts, awesome rollover effects, custom featured image size per post to name a few![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Portfolio Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Multiple layout styles, unlimited portfolio pages, custom categories per page, awesome rollover effects, full or half-width detail page, custom featured image size, filters to name a few![/fusion_text][/one_third][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Those Are Just A Few Main Features, There Are Plenty More</h1>\n[/fusion_text][separator style_type=\"double\" top_margin=\"5\" bottom_margin=\"35\" sep_color=\"#555555\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Easy Installation &amp; Setup</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Customizable Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Click Demo Content Importer</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Auto Theme Updater</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Retina Ready For Enabled Devices</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Backgrounds Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Awesome Widgetized MegaMenu</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Colors / Skins</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Powerful Customization Options</p>\n[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Page Parallax For Any Page</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">WooCommerce Design Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">bbPress Forum Design Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Icons Instead of Images</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Eye-Catching CSS3 Animations</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Boxed or Wide Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Extensive Doc &amp; HD Videos</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Top Notch Support Service</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Constant Updates &amp; New Features</p>\n[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-star\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Incredible Shortcode Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Menu Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Awesome Icon Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Advanced Typography Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Strong SEO Base Built In</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Sidebar Creation</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Multiple Custom Widgets</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Four Premium Sliders</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Optimized For Speed</p>\n[/li_item][/checklist][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"10px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"#fff\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"pages\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Custom Pages: Have No Limits.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada gives you limitless potential to build amazing pages. Easily create unique page layouts using the tools we provide. In addition, we have you covered with dozens of beautiful pre-designed pages you can quickly choose from.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Layout Options: Decision, Decisions, Decisions</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That\'s right, you can have your cake and eat some too.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"85px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Left Sidebar / Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Content / Right Sidebar</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">No Sidebar Full Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Boxed Layout</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Full Width Layout</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">100% Width For Page Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Logo / Menu</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Menu / Logo &amp; Menu</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Menu / Logo / Menu</h2>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"woocommerce\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">What Else? Full Design Integration For WooCommerce</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Need an online shop? No problem, Avada includes integration for the most popular shop plugin, WooCommerce. Our custom design and unique shop shortcodes will allow your products to shine.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/woo_feature2.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"demo\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Ridiculously Easy Setup: True One Click Demo Import</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Many themes claim to have a quick setup, but leave you dealing with several XML files to manually import. Who wants to do that? We sure don\'t. Avada truly offers a quick, easy setup. Install the theme, click the demo content button and you receive a demo setup of pages, post, sliders, sidebars, widgets, theme options and more. It doesn\'t get any easier, our demo content importer is a beautiful thing.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]WHAT ELSE YOU GOT?[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"27\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"demo_content\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_half][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\"></a>[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"shortcodes\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Shortcodes: We Make Them, You Use Them.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Shortcodes are the backbone of page design for any theme, and Avada offers a huge set. We include all the standard shortcodes and also a wide variety of unique shortcodes, each with their own amazing options to customize to your heart\'s content. Avada shortcodes allow you to build a variety of pages, and with our shortcode generator it\'s not only useful, it\'s fun.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"shortcodes\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/shortcodes2.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"reviews\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">User Reviews: We Love our Users, And They Love Us.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">We are fully dedicated to user base. When you buy Avada, there is no need to worry about customer support. With over 50,000 users and counting, you cannot go wrong with Avada. Check out what our users are saying about Avada!</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 31px !important; font-style: italic !important;\">“WOW – This is the Best Theme I have ever seen.”</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 26px !important; color: #747474 !important; font-style: italic !important;\">WOW – I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. Thank you so much for this theme, WOW- AMAZING!” <strong>- MarketingMonsters</strong></p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"45\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French “Bravo” for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as I’m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an “extra mile” in customer relationship. So I gave 5 stars for the theme and if I could, I’d give 10 stars for support.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]If I could give 100 stars for support and attention to detail I definitely would. I’ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable – I really mean this. The speed of support and attention to detail is quite phenomenal. You will be extremely pleased.[/testimonial][/testimonials][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][/fullwidth]','One Page Parallax','','publish','closed','closed','','one-page','','','2014-03-10 17:23:40','2014-03-10 17:23:40','',0,'http://avada.theme-fusion.comxml/?page_id=4548',0,'page','',0),(9829,1,'2014-06-16 19:39:03','2014-06-16 19:39:03','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"This fully responsive slider ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter what the screen or device size, this slider will look fantastic.[/flip_box][flip_box title_front=\"Parallax Scrolling Effect\" title_back=\"Little Bit of Eye Candy\" text_front=\"Need some extra oomph? No problem, choose parallax scrolling effect per slider.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Parallax scrolling effect gives your slider the POP it needs to stand out.[/flip_box][flip_box title_front=\"Full Size Control\" title_back=\"Your Content Goes Here\" text_front=\"Fusion Slider gives you full reign over the size of your slider, take control.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From fixed width and height, to full width or full screen, Fusion Slider has it all.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]What Else You Got?[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][modal name=\"fusion\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"45px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"\" class=\"\" id=\"\"]Fusion Shortcode Should Be Here[/title][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusionslider name=\"avada_small\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets sadips ips. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum. Quia dolor sit amet, consectetur, adipisci amets uns. Rumes fugats untras. Etha rums ser quidem nemo minima rerums unsers sadips rerums. [popover title=\"Popover Heading\" title_bg_color=\"\" content=\"Nice little popover shortcode for added content, triggered by click or hover. And you can control the popover position.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<strong>Hey, What\'s This Cool Text Right Here Do?</strong>[/popover][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team[/li_item][li_item icon=\"\"]Constant Updates Added With New Features[/li_item][li_item icon=\"\"]Power Elite Author Gives You Peace of Mind[/li_item][li_item icon=\"\"]Join The Growing Community of Avada Users[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#c6c6c6\" borderstyle=\"\" paddingtop=\"25px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_third][/fullwidth]','Fusion Slider Full Width','','publish','closed','closed','','fusion-slider-full-width','','','2014-06-16 19:39:03','2014-06-16 19:39:03','',0,'http://avada.theme-fusion.comxml/?page_id=9829',0,'page','',0),(9831,1,'2014-06-16 19:40:32','2014-06-16 19:40:32','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"This fully responsive slider ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter what the screen or device size, this slider will look fantastic.[/flip_box][flip_box title_front=\"Parallax Scrolling Effect\" title_back=\"Little Bit of Eye Candy\" text_front=\"Need some extra oomph? No problem, choose parallax scrolling effect per slider.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Parallax scrolling effect gives your slider the POP it needs to stand out.[/flip_box][flip_box title_front=\"Full Size Control\" title_back=\"Your Content Goes Here\" text_front=\"Fusion Slider gives you full reign over the size of your slider, take control.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From fixed width and height, to full width or full screen, Fusion Slider has it all.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]What Else You Got?[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][modal name=\"fusion\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"60px\" paddingbottom=\"50px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"\" class=\"\" id=\"\"]Fusion Shortcode Should Be Here[/title][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusionslider name=\"avada_small\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets sadips ips. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum. Quia dolor sit amet, consectetur, adipisci amets uns. Rumes fugats untras. Etha rums ser quidem nemo minima rerums unsers sadips rerums. [popover title=\"Popover Heading\" title_bg_color=\"\" content=\"Nice little popover shortcode for added content, triggered by click or hover. And you can control the popover position.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<strong>Hey, What\'s This Cool Text Right Here Do?</strong>[/popover][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team[/li_item][li_item icon=\"\"]Constant Updates Added With New Features[/li_item][li_item icon=\"\"]Power Elite Author Gives You Peace of Mind[/li_item][li_item icon=\"\"]Join The Growing Community of Avada Users[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#c6c6c6\" borderstyle=\"\" paddingtop=\"25px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_third][/fullwidth]','Fusion Slider Full Screen','','publish','closed','closed','','fusion-slider-full-screen','','','2014-06-16 19:40:32','2014-06-16 19:40:32','',0,'http://avada.theme-fusion.comxml/?page_id=9831',0,'page','',0),(9833,1,'2014-06-16 19:40:57','2014-06-16 19:40:57','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"20px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"This fully responsive slider ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-compress\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter what the screen or device size, this slider will look fantastic.[/flip_box][flip_box title_front=\"Parallax Scrolling Effect\" title_back=\"Little Bit of Eye Candy\" text_front=\"Need some extra oomph? No problem, choose parallax scrolling effect per slider.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Parallax scrolling effect gives your slider the POP it needs to stand out.[/flip_box][flip_box title_front=\"Full Size Control\" title_back=\"Your Content Goes Here\" text_front=\"Fusion Slider gives you full reign over the size of your slider, take control.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From fixed width and height, to full width or full screen, Fusion Slider has it all.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"#a0ce4e\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"10px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]What Else You Got?[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" icon=\"\" width=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][modal name=\"fusion\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"\" paddingtop=\"60px\" paddingbottom=\"35px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"\" class=\"\" id=\"\"]Fusion Shortcode Should Be Here[/title][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusionslider name=\"avada_small\" class=\"\" id=\"\"][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]Lid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rerums unsers sadips amets sadips ips. Ut enim ad minim veniam, quis nostrud Neque porro quisquam est, qui dolorem ipsum. Quia dolor sit amet, consectetur, adipisci amets uns. Rumes fugats untras. Etha rums ser quidem nemo minima rerums unsers sadips rerums. [popover title=\"Popover Heading\" title_bg_color=\"\" content=\"Nice little popover shortcode for added content, triggered by click or hover. And you can control the popover position.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<strong>Hey, What\'s This Cool Text Right Here Do?</strong>[/popover][/fusion_text][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]The #1 Selling Theme On Themeforest[/li_item][li_item icon=\"\"]We Have The Most Dedicated Support Team[/li_item][li_item icon=\"\"]Constant Updates Added With New Features[/li_item][li_item icon=\"\"]Power Elite Author Gives You Peace of Mind[/li_item][li_item icon=\"\"]Join The Growing Community of Avada Users[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"top left\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#c6c6c6\" borderstyle=\"\" paddingtop=\"25px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 70,000+ Satisfied Avada Users!</h1>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_third][/fullwidth]','Fusion Slider Fixed Width','','publish','closed','closed','','fusion-slider-fixed-width','','','2014-06-16 19:40:57','2014-06-16 19:40:57','',0,'http://avada.theme-fusion.comxml/?page_id=9833',0,'page','',0),(9883,1,'2014-06-17 01:08:20','2014-06-17 01:08:20','[fullwidth backgroundcolor=\"#f8f8f8\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"#e5e4e4\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 40px !important;\">What Is A Blank Page?</h1>\n<p style=\"text-align: center; margin-top: -20px;\">Avada includes [tooltip title=\"Versatile!\"]<strong>blank pages</strong>[/tooltip] that allow you to build pages without showing the header or footer. You can still use all the same page options and shortcodes for content.\nThey are perfect for interesting pages like \"Coming Soon\" or \"Maintenance Mode\" or to create a beautiful landing page design.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Dont\' Wait, Buy Avada Now![/button][/fullwidth]','Blank Page','','publish','closed','closed','','blank-page','','','2014-06-17 01:08:20','2014-06-17 01:08:20','',0,'http://avada.theme-fusion.comxml/?page_id=9883',0,'page','',0),(10013,1,'2014-06-18 16:37:45','2014-06-18 16:37:45','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Button Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes some pretty amazing button options. Buttons are an integral part of your site, and we\'ve made sure you have the options you need to add beautiful buttons to any page. Choose from 4 sizes, 3 shapes, flat or 3D style, unlimited colors, border widths, icons, dividers and animations as well as buttons that open modal popups.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_blank\" title=\"\" gradient_colors=\"#74b8dc|\" gradient_hover_colors=\"#69aed2|\" accent_color=\"rgba(000,000,000,.35)\" accent_hover_color=\"rgba(000,000,000,.45)\" bevel_color=\"\" border_width=\"3px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Combine Anything[/button][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"3d\" shape=\"pill\" target=\"_blank\" title=\"\" gradient_colors=\"#a0ce4e|\" gradient_hover_colors=\"#96c346|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"fa-trophy\" icon_position=\"left\" icon_divider=\"no\" modal=\"fusion2\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Modal Click Here[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_blank\" title=\"\" gradient_colors=\"#d8a43c|#bc8f34\" gradient_hover_colors=\"#bc8f34|#d8a43c\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Combine Anything[/button][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Unlimited Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Control all colors such as backgrounds, hover backgrounds, accents (border, text, icon, divider), hover accents & 3D bevel.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#9db668|\" gradient_hover_colors=\"#8ca558|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#f8f8f8|\" accent_color=\"#868686\" accent_hover_color=\"#747474\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#f8f8f8|\" accent_color=\"#868686\" accent_hover_color=\"#747474\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#6eb9b4|\" gradient_hover_colors=\"#64aea9|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#d8a43c|\" gradient_hover_colors=\"#cd9a32|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#67b7e1|\" gradient_hover_colors=\"#5da7ce|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#6b898b|\" gradient_hover_colors=\"#607f81|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#c34e30|\" gradient_hover_colors=\"#bc4526|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#1a80b6|\" gradient_hover_colors=\"#1576a9|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#735d7f|\" gradient_hover_colors=\"#665072|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#666262|\" gradient_hover_colors=\"#5d5757|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#b8d37f|#9db668\" gradient_hover_colors=\"#9db668|#b8d37f\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#cac7c7|\" gradient_hover_colors=\"#c0bdbd|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"#f8f8f8|\" accent_color=\"#9db668\" accent_hover_color=\"#8ca558\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#aa3c3f|\" gradient_hover_colors=\"#a73437|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#cb689b|\" gradient_hover_colors=\"#c06091|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#7b5b9a|\" gradient_hover_colors=\"#735391|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#a3d151|#87b13b\" gradient_hover_colors=\"#87b13b|#a3d151\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.8)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"transparent|\" accent_color=\"#6293c0\" accent_hover_color=\"#588bbb\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#ececec|#dadada\" gradient_hover_colors=\"#dadada|#ececec\" accent_color=\"rgba(000,000,000,.4)\" accent_hover_color=\"rgba(000,000,000,.5)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"left\" class=\"\" id=\"\"]Color[/button][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>4 Button Sizes</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada buttons come in 4 different sizes so you always have the perfect size button for each situation. Choose small, medium, large or xlarge.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"small\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Small Button[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"medium\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Medium Button[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]Large Button[/button][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"]XLarge Button[/button][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>2 Button Types</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Choose a super sleek Flat style button, or an eye popping 3D button.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Super Sleek Flat Button[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"3d\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Eye-Popping 3D Button[/button][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>3 Button Shapes</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada buttons come in 3 different shapes; square, round and pill.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Square Shape[/button][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"pill\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Pill Shape[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"round\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Round Shape[/button][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Full Border Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada allows you to control the border width and border color easily.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"0px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]0PX Border[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]1PX Border[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"2px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]2px Border[/button][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"3px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]3px Border[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"4px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]4px Border[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"5px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]5px Border[/button][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"6px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]6px Border[/button][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"square\" target=\"_self\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#efefef|#efefef\" accent_color=\"#8fc935\" accent_hover_color=\"#8fc935\" bevel_color=\"\" border_width=\"7px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]7px Border[/button][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Button Icons</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada integrates the full font awesome icon with buttons. Choose icon location, color and use with or without a divider.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"fa-star\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Icon Position Left[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"fa-star\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Icon With Divider[/button][/one_half][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"fa-star\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Icon Without Divider[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"flat\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"\" icon=\"fa-star\" icon_position=\"right\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Icon Position Right[/button][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Button Animations</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Animate the buttons with smotth CSS3 animations. 5 animations types, 4 directions, speed control</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"bounce\" animation_direction=\"down\" animation_speed=\"0.5\" alignment=\"center\" class=\"\" id=\"\"]Bounce[/button][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"shake\" animation_direction=\"left\" animation_speed=\"0.5\" alignment=\"center\" class=\"\" id=\"\"]Shake[/button][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"fade\" animation_direction=\"right\" animation_speed=\"0.5\" alignment=\"center\" class=\"\" id=\"\"]Fade[/button][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"slide\" animation_direction=\"right\" animation_speed=\"0.5\" alignment=\"center\" class=\"\" id=\"\"]Slide[/button][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"flash\" animation_direction=\"up\" animation_speed=\"0.5\" alignment=\"center\" class=\"\" id=\"\"]Flash[/button][/one_fifth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the button shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>link</strong> - The link you want the button to direct to, including <em>http://</em>. For example, <em>http://www.example.com/.</em>[/li_item][li_item icon=\"\"]<strong>color</strong> - Can be one of these values: <em>default, custom, green, darkgreen, orange, blue, red, pink, darkgray, </em>or<em> lightgray</em>. Choose <em>custom</em> for advanced options. Select <em>default</em> for Theme Option values. Sets the button\'s color.[/li_item][li_item icon=\"\"]<strong>size</strong> - Can be one of these values: <em>default,</em> <em>small, medium, large, </em>or<em> xlarge.</em> This sets the button\'s size. Choose <em>Default</em> for Theme Option selection. Sets the button\'s size.[/li_item][li_item icon=\"\"]<strong>type</strong> - Can be one of these values: <em>default, </em><em>flat, </em>or<em> 3d. </em>Sets the button\'s type. Choose <em>default</em> for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>shape</strong> - Can be one of these values: <em>default, </em><em>square, pill, </em>or<em> round. </em>Sets the button\'s shape. Choose <em>default</em> for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>target</strong> - Can be one of these values: <em>_blank</em> for new window, or <em>_self</em> for same window.[/li_item][li_item icon=\"\"]<strong>title</strong> - Set a <em>title</em> attribute for the link the button directs to. For example, <em>Home.</em>[/li_item][li_item icon=\"\"]<strong>gradient_colors</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the top and bottom colors of the background gradient.[/li_item][li_item icon=\"\"]<strong>gradient_hover_colors</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the top and bottom hover colors of the background gradient.[/li_item][li_item icon=\"\"]<strong>accent_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the color of the <em>button border, divider, text </em>and<em> icon</em>.[/li_item][li_item icon=\"\"]<strong>acccent_hover_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the hover color of the <em>button border, divider, text </em>and<em> icon</em>.[/li_item][li_item icon=\"\"]<strong>bevel_color</strong> - <em>Custom</em> setting only. Accepts a hexcode <em>( #000000 ).</em> Sets the bevel color of 3D buttons.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>border_width</strong> - <em>Custom</em> setting only. Accepts pixel values, for example, <em>1px</em>.[/li_item][li_item icon=\"\"]<strong>shadow</strong> - Can be one of these values: <em>default, </em><em>yes, </em>or<em> no.</em> This will enable or disable shadows. Choose <em>default</em> for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\">font awesome</a> icon value. For example, <em>fa-glass.</em>[/li_item][li_item icon=\"\"]<strong>icon_divider</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will show or hide a divider between icon and text.[/li_item][li_item icon=\"\"]<strong>icon_position</strong> - Can be one of these values: <em>left, </em>or <em>right</em>. Sets the position of the icon on the button.[/li_item][li_item icon=\"\"]<strong>modal</strong> - The <em>unique name</em> of the <strong>Modal Shortcode</strong> you already created that allows the button to trigger the modal.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, </em><em>bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>alignment</strong> - Can be one of these values: <em>left, center, </em>or<em> right</em>. Sets the button\'s alignment.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth][modal name=\"fusion2\" title=\"Buttons Can Even Open This Awesome Modal Element\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"]\n<a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal]','Buttons','','publish','closed','closed','','buttons','','','2014-06-18 16:37:45','2014-06-18 16:37:45','',0,'http://avada.theme-fusion.comxml/?page_id=10013',0,'page','',0),(10015,1,'2014-06-18 16:38:14','2014-06-18 16:38:14','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Social Links Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes a large set of social icons to use throughout the theme and you can also upload a custom icon These icons are a vector font icon instead of an image, which produces much faster load times and will always ensure perfect sharpness. Social icons are loaded with options that allow you to easily cusotmize them. Choose boxed or unboxed, border radius, icon color globally or individually, box color globally or individually, hover tooltip position and more.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Social Icon Set</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Avada includes a total of 25 social icons with more added frequently and ability to upload a custom icon.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"#\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"#\" yahoo=\"#\" deviantart=\"#\" vimeo=\"#\" youtube=\"#\" pinterest=\"#\" digg=\"#\" flickr=\"#\" forrst=\"#\" myspace=\"#\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"#\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Boxed or UnBoxed Icons</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Choose to have the icons be boxed or unboxed, and you can make this choice in several areas of the theme.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"#\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"#\" yahoo=\"#\" deviantart=\"#\" vimeo=\"#\" youtube=\"#\" pinterest=\"#\" digg=\"#\" flickr=\"#\" forrst=\"#\" myspace=\"#\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"#\" dribbble=\"#\" google=\"#\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"#\" yahoo=\"#\" deviantart=\"#\" vimeo=\"#\" youtube=\"#\" pinterest=\"#\" digg=\"#\" flickr=\"#\" forrst=\"#\" myspace=\"#\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Full Color Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Set one global color for icons and box, or individual per icon.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"4px\" icon_colors=\"#fff\" box_colors=\"#4c71bc|#d3711a|#30b6dd|#242424|#c8232f|#d851a1|#5b6397|#df8a1c|#0fa4d5|#355ea2|#28bdcf|#e8a411|#6983b3\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"#4c71bc|#d3711a|#30b6dd|#242424|#c8232f|#d851a1|#5b6397|#df8a1c|#0fa4d5|#355ea2|#28bdcf|#e8a411|#6983b3\" box_colors=\"\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"#\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"#\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"#\" myspace=\"\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Border Radius Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Set the border radius for boxed mode. Full control in pixel value for square, rounded or circular.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"0px\" icon_colors=\"#fff\" box_colors=\"#4c71bc|#d3711a|#30b6dd|#242424|#c8232f|#d851a1|#5b6397|#df8a1c|#0fa4d5|#355ea2|#28bdcf|#e8a411|#6983b3\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"10px\" icon_colors=\"#fff\" box_colors=\"#4c71bc|#d3711a|#30b6dd|#242424|#c8232f|#d851a1|#5b6397|#df8a1c|#0fa4d5|#355ea2|#28bdcf|#e8a411|#6983b3\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"25px\" icon_colors=\"#fff\" box_colors=\"#4c71bc|#d3711a|#30b6dd|#242424|#c8232f|#d851a1|#5b6397|#df8a1c|#0fa4d5|#355ea2|#28bdcf|#e8a411|#6983b3\" tooltip_placement=\"\" rss=\"#\" facebook=\"#\" twitter=\"#\" instagram=\"\" dribbble=\"#\" google=\"\" linkedin=\"#\" blogger=\"#\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"#\" youtube=\"\" pinterest=\"#\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"#\" paypal=\"#\" dropbox=\"#\" soundcloud=\"#\" vk=\"#\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Tooltip Hover Position</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Set the position of the tooltip hover to up, down, left or right.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"0px\" icon_colors=\"#fff\" box_colors=\"#30b6dd\" tooltip_placement=\"top\" rss=\"\" facebook=\"\" twitter=\"#\" instagram=\"\" dribbble=\"\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"0px\" icon_colors=\"#fff\" box_colors=\"#30b6dd\" tooltip_placement=\"Right\" rss=\"\" facebook=\"\" twitter=\"#\" instagram=\"\" dribbble=\"\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"0px\" icon_colors=\"#fff\" box_colors=\"#30b6dd\" tooltip_placement=\"bottom\" rss=\"\" facebook=\"\" twitter=\"#\" instagram=\"\" dribbble=\"\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][social_links icons_boxed=\"yes\" icons_boxed_radius=\"0px\" icon_colors=\"#fff\" box_colors=\"#30b6dd\" tooltip_placement=\"left\" rss=\"\" facebook=\"\" twitter=\"#\" instagram=\"\" dribbble=\"\" google=\"\" linkedin=\"\" blogger=\"\" tumblr=\"\" reddit=\"\" yahoo=\"\" deviantart=\"\" vimeo=\"\" youtube=\"\" pinterest=\"\" digg=\"\" flickr=\"\" forrst=\"\" myspace=\"\" skype=\"\" paypal=\"\" dropbox=\"\" soundcloud=\"\" vk=\"\" email=\"\" show_custom=\"no\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the social link shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>icons_boxed</strong> - Can be one of these values: <em>default, yes, </em>or<em> no. </em>This will enable or disable boxed icons.[/li_item][li_item icon=\"\"]<strong>icons_boxed_radius</strong> - Accepts a pixel value that sets the border\'s radius. For example, <em>1px</em>. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>icon_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon\'s colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>box_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon\'s box colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>tooltip_placement</strong> - Can be one of these values: <em>default, left, right, top, </em>or<em> bottom.</em> Sets the Social Icon Tooltip position.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>various social links</strong> - The custom URL path to your various social media profiles. For example, <em>http://www.facebook.com/johndoe</em>.[/li_item][li_item icon=\"\"]<strong>email</strong> - The <em>custom email address</em>. For example, <em>johndoe@example.com</em>.[/li_item][li_item icon=\"\"]<strong>show_custom</strong> - Can be one of these values:<em> yes, </em>or<em> no</em>. Will display your custom social icon from theme options.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Social Icons','','publish','closed','closed','','social-icons','','','2014-06-18 16:38:14','2014-06-18 16:38:14','',0,'http://avada.theme-fusion.comxml/?page_id=10015',0,'page','',0),(10038,1,'2014-08-14 18:05:00','2014-08-14 18:05:00','','5 Column Text','','publish','closed','closed','','5-column-text','','','2014-08-14 18:05:00','2014-08-14 18:05:00','',0,'http://avada.theme-fusion.comxml/?page_id=10038',0,'page','',0),(10040,1,'2014-08-14 18:02:44','2014-08-14 18:02:44','','5 Column Classic','','publish','closed','closed','','5-column-classic','','','2014-08-14 18:02:44','2014-08-14 18:02:44','',0,'http://avada.theme-fusion.comxml/?page_id=10040',0,'page','',0),(10042,1,'2014-08-14 18:03:00','2014-08-14 18:03:00','','6 Column Classic','','publish','closed','closed','','6-column-classic','','','2014-08-14 18:03:00','2014-08-14 18:03:00','',0,'http://avada.theme-fusion.comxml/?page_id=10042',0,'page','',0),(10045,1,'2014-08-14 18:05:25','2014-08-14 18:05:25','','6 Column Text','','publish','closed','closed','','6-column-text','','','2014-08-14 18:05:25','2014-08-14 18:05:25','',0,'http://avada.theme-fusion.comxml/?page_id=10045',0,'page','',0),(10047,1,'2014-08-14 18:06:48','2014-08-14 18:06:48','','Grid 2 Column','','publish','closed','closed','','grid-2-column','','','2014-08-14 18:06:48','2014-08-14 18:06:48','',0,'http://avada.theme-fusion.comxml/?page_id=10047',0,'page','',0),(10049,1,'2014-08-14 18:07:14','2014-08-14 18:07:14','','Grid 3 Column','','publish','closed','closed','','grid-3-column','','','2014-08-14 18:07:14','2014-08-14 18:07:14','',0,'http://avada.theme-fusion.comxml/?page_id=10049',0,'page','',0),(10050,1,'2014-08-14 18:07:28','2014-08-14 18:07:28','','Grid 4 Column','','publish','closed','closed','','grid-4-column','','','2014-08-14 18:07:28','2014-08-14 18:07:28','',0,'http://avada.theme-fusion.comxml/?page_id=10050',0,'page','',0),(10051,1,'2014-08-14 18:07:45','2014-08-14 18:07:45','','Grid 5 Column','','publish','closed','closed','','grid-5-column','','','2014-08-14 18:07:45','2014-08-14 18:07:45','',0,'http://avada.theme-fusion.comxml/?page_id=10051',0,'page','',0),(10052,1,'2014-08-14 18:07:55','2014-08-14 18:07:55','','Grid 6 Column','','publish','closed','closed','','grid-6-column','','','2014-08-14 18:07:55','2014-08-14 18:07:55','',0,'http://avada.theme-fusion.comxml/?page_id=10052',0,'page','',0),(10075,1,'2014-08-14 18:24:17','2014-08-14 18:24:17','[separator style_type=\"single\" top_margin=\"1\" bottom_margin=\"1\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\">Where Are The Rest of The <span style=\"color: #a0ce4e;\">Live Demo</span> Portfolio Pages?</h1>\n<p style=\"text-align: center; font-size: 17px; line-height: 25px;\">Our demo shows every possible portfolio combination so users can see what is possible with the theme. However, including all those pages and menu items can crash the common server during import.  Many users complained about the extra layouts because they only need one or two of them, not a dozen or more.  Never fear! It only takes a few clicks of the mouse to change the portfolio template to a different column size!</p>[/fusion_text][/fullwidth][separator style_type=\"single\" top_margin=\"1\" bottom_margin=\"1\" sep_color=\"#cccccc\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single solid\" sep_color=\"#c9c9c9\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]How To Change The Portfolio Page Template or Add A Sidebar?[/title][fusion_text]You can change the portfolio template very easily!  Any of our portfolio layouts can utilize any of the 1-6 column layouts.  Follow the steps below to change out the template.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-chevron-right\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Navigate to a portfolio pages then click <strong>Edit Page</strong> in the top WordPress admin bar.[/li_item][li_item icon=\"\"]On the right hand side is a <strong>Page Attributes box</strong> that has a <strong>Page Template</strong> dropdown field.[/li_item][li_item icon=\"\"]Click the dropdown and select a portfolio page template.[/li_item][li_item icon=\"\"]To add a sidebar, click on the <strong>Sidebar</strong> tab in the Fusion Options box and select a Sidebar 1 and/or Sidebar 2. Click <strong>Update</strong> button to save.[/li_item][/checklist][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"https://theme-fusion.com/support/documentation/avada-documentation/#page-item-151088\" color=\"default\" size=\"\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"\" class=\"\" id=\"\"]View More Information In Our Documentation[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"#636363\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.5\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/08/port_infos.jpg\" />[/imageframe][/one_half][/fullwidth][separator style_type=\"single\" top_margin=\"1\" bottom_margin=\"1\" sep_color=\"\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"20px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Need Theme Support?\" title_back=\"Create Your Account Today\" text_front=\"To get hands on support, create a new account at our support center with your Themeforest purchase code.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-life-ring\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Our support forum allows you to interact with our developers and ask the important questions that you need answers too. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-80311\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Sign Up Today![/button][/flip_box][flip_box title_front=\"Documentation & Knowledgebase\" title_back=\"All The Information You Need\" text_front=\"Our documentation is online and contains valuable information for you to quickly find what you need.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-file-text-o\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Search for keywords in our documentation and knowledgebase to quickly find answers to your questions. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]View our Documentation[/button][/flip_box][flip_box title_front=\"View our Video Tutorials\" title_back=\"Video Tutorials In HD With Narration\" text_front=\"Video tutorials make it easy and many can learn much faster by watching them, check them out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-film\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Each video tutorial is in high definition with video narration to help you understand what is being viewed. Watch and learn! [button link=\"http://avada.theme-fusion.com/support/video-tutorials/avada-videos/\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Watch Video Tutorials[/button][/flip_box][/flip_boxes][/fullwidth]','Portfolio Information Page','','publish','closed','closed','','portfolio-info-page','','','2014-08-14 18:24:17','2014-08-14 18:24:17','',0,'http://avada.theme-fusion.comxml/?page_id=10075',0,'page','',0),(10489,1,'2014-09-04 15:13:41','2014-09-04 15:13:41','[fusion_text]<img class=\"alignnone  wp-image-180\" title=\"full_width\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" alt=\"\">[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]This Is An Example Of Our Sidebar Page[/title][fusion_text]Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exercitation.Sed tincidunt semper lorem. Etiam in libero felis, at blandit felis. Integer in est ultrices sapien ultrices condimentum at porttitor arcu. Nam congue nunc ac leo pretium sit amet fermentum leo feugiat. Donec erat magna, lobortis in pretium vitae, sollicitudin ac ante. Maecenas ullamcorper augue pretium lacus lacinia in accumsan lorem auctor. Quisque massa sem, faucibus sit amet porttitor ac, feugiat id tortor. Integer mattis elit sit amet enim eleifend mattis sagittis ante dapibus. Nunc erat dui, tincidunt vel pharetra.</blockquote>\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.\n\nSed tincidunt semper lorem. Etiam in libero felis, at blandit felis. Integer in est ultrices sapien ultrices condimentum at porttitor arcu. Nam congue nunc ac leo pretium sit amet fermentum leo feugiat. Donec erat magna, lobortis in pretium vitae, sollicitudin ac ante. Maecenas ullamcorper augue pretium lacus lacinia in accumsan lorem auctor. Quisque massa sem, faucibus sit amet porttitor ac, feugiat id tortor. Integer mattis elit sit amet enim eleifend mattis sagittis ante dapibus. Nunc erat dui, tincidunt vel pharetra ac, egestas ut mi. Mauris ut nunc vel nunc malesuada facilisis ac quis augue.\n[/fusion_text]','Dual Sidebar Page','','publish','closed','closed','','dual-sidebar-page','','','2014-09-04 15:13:41','2014-09-04 15:13:41','',0,'http://avada.theme-fusion.comxml/?page_id=10489',0,'page','',0),(10519,1,'2014-09-04 17:36:07','2014-09-04 17:36:07','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Counter Box Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes multiple animated counter shortcodes, including the counter box shortcode. These are great for displaying varying types of data and content to your viewers. The counter boxes include several options for easy customization and is a great way to visually attract the viewer and display content.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_box columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"100000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users &amp; Counting[/counter_box][counter_box value=\"25000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Contol Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Each counter box can have a different color for the text and icon.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"90\" unit=\"%\" unit_pos=\"suffix\" icon=\"fa-laptop\" direction=\"up\"]90% of Designers Use Macintosh[/counter_box][/counters_box][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"75\" unit=\"%\" unit_pos=\"suffix\" icon=\"fa-mobile\" direction=\"up\"]75% of People Love iPhones[/counter_box][/counters_box][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Column Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter box instance has an option for selecting column width.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"100000\" unit=\"+ Users\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Choose From 1-6 Columns For The Counter Boxes[/counter_box][/counters_box][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Unit Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter box instance can have a different unit and unit position</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"50\" unit=\"$\" unit_pos=\"prefix\" icon=\"\" direction=\"up\"]Use Any Symbol Or Custom Text For The Unit[/counter_box][/counters_box][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"75\" unit=\"%\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Use Any Symbol Or Custom Text For The Unit[/counter_box][/counters_box][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"15\" unit=\" lbs\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Use Any Symbol Or Custom Text For The Unit[/counter_box][/counters_box][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Count Up or Down</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter box can have the animation number start up or down</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"1000\" unit=\"$\" unit_pos=\"prefix\" icon=\"\" direction=\"up\"]Set The Counter To Count Up[/counter_box][/counters_box][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"1000\" unit=\"$\" unit_pos=\"prefix\" icon=\"\" direction=\"down\"]Set The Counter To Count Down[/counter_box][/counters_box][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Font Awesome Icons</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter box instance can display a font awesome icon with the content.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"400\" unit=\"+ Vector Icons\" unit_pos=\"suffix\" icon=\"fa-flag\" direction=\"up\"]Use Any of The Font Awesome Icons[/counter_box][/counters_box][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Border Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter box instance can display a border around the box.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"100\" unit=\"$\" unit_pos=\"prefix\" icon=\"\" direction=\"up\"]This Counter Box Displays A Border[/counter_box][/counters_box][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"#ffffff\" class=\"\" id=\"\"][counter_box value=\"100\" unit=\"$\" unit_pos=\"prefix\" icon=\"\" direction=\"up\"]This Counter Box Displays No Border[/counter_box][/counters_box][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Size Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Easily control the size of the icon, counter value and body text.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"#74badb\" title_size=\"60\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"#ffffff\" class=\"\" id=\"\"][counter_box value=\"100\" unit=\"px\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Adjust The Title Font\'s Size And Color[/counter_box][/counters_box][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"\" title_size=\"\" icon_size=\"65\" body_color=\"#a2cc55\" body_size=\"15\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"10\" unit=\"%\" unit_pos=\"suffix\" icon=\"fa-expand\" direction=\"up\"]Customize The Icon\'s Size And Body Text[/counter_box][/counters_box][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_box columns=\"1\" color=\"#d5962c\" title_size=\"\" icon_size=\"\" body_color=\"\" body_size=\"\" border_color=\"#d5962c\" class=\"\" id=\"\"][counter_box value=\"25\" unit=\"$\" unit_pos=\"prefix\" icon=\"fa-star\" direction=\"up\"]Control The Border Color[/counter_box][/counters_box][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the counter box shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>columns</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6. </em>Sets the number of columns per row.[/li_item][li_item icon=\"\"]<strong>color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the counter\'s value and icon color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title_size</strong> - Accepts a numerical value that sets the font size of the title text in pixels. For example, <em>50</em>.[/li_item][li_item icon=\"\"]<strong>icon_size</strong> - Accepts a numerical value that sets the font size of the icon in pixels. For example <em>50</em>.[/li_item][li_item icon=\"\"]<strong>body_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the body font\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>body_size</strong> - Accepts a numerical value that sets the font size of the body text in pixels. For example, <em>20</em>.[/li_item][li_item icon=\"\"]<strong>border_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>value</strong> - The <em>Counter Value. </em>Accepts a numerical value to set the value to which the counter will animate. For example, <em>95</em>.[/li_item][li_item icon=\"\"]<strong>unit</strong> - Accepts an alphanumeric value or symbols to represent a unit of measurement. For example, <em>%</em> or <em>cm</em>.[/li_item][li_item icon=\"\"]<strong>unit_pos</strong> - Can be one of these values: <em>prefix</em> to place before the counter, or<em> suffix </em>to place after the counter.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\">font awesome</a> icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>direction</strong> - Can be one of these values: <em>up, </em>or<em> down. </em>Sets the counter to count up or to count down.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Counter Box','','publish','closed','closed','','counter-box','','','2014-09-04 17:36:07','2014-09-04 17:36:07','',0,'http://avada.theme-fusion.comxml/?page_id=10519',0,'page','',0),(10522,1,'2014-09-04 17:37:01','2014-09-04 17:37:01','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Counter Circle Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes multiple animated counter shortcodes, including the counter circle shortcode. These are great for displaying varying types of data to your viewers. The counter circles have several options that allow you to easily customize them to your needs. Wether its sales percentages, skill levels, promotional levels or other data sets, the counter circle shortcode is a great way to visually attract the viewer and display content.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.4)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"94\"]94%[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.4)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"]Users[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.4)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"][fontawesome icon=\"fa-heart\" circle=\"no\" size=\"medium\" iconcolor=\"#dd3333\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"rgba(255,255,255,.4)\" size=\"255\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"100\"]Avada[/counter_circle][/counters_circle][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Control Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Each counter circle in the shortcode can have a different filled and unfilled color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#92be43\" unfilledcolor=\"#d7e8b7\" size=\"200\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"65\"]Full[/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#cb9536\" unfilledcolor=\"#eedbb9\" size=\"200\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"75\"]Control[/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#62a7c9\" unfilledcolor=\"#cbe1ec\" size=\"200\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"85\"]of[/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"200\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]Colors[/counter_circle][/counters_circle][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Control Size</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter circle in the shortcode can have a different circle diameter.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"60\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]You[/counter_circle][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"80\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]Can[/counter_circle][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"100\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]Control[/counter_circle][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"120\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]The[/counter_circle][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"140\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]Circle[/counter_circle][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"160\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]Size[/counter_circle][/counters_circle][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Show Scales</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter circle can display a set of scales which visually mark the values around the circle. Larger scales mark it the quarter values around the circle.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"230\" scales=\"yes\" countdown=\"no\" speed=\"1500\" value=\"25\"]Show[/counter_circle][/counters_circle][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"230\" scales=\"yes\" countdown=\"no\" speed=\"1500\" value=\"50\"]Some[/counter_circle][/counters_circle][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"230\" scales=\"yes\" countdown=\"no\" speed=\"1500\" value=\"75\"]Scales[/counter_circle][/counters_circle][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Count Up or Down</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter circle in the shortcode can have the filled animation start full (up) or empty (down).</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#cb9536\" unfilledcolor=\"#eedbb9\" size=\"130\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"50\"]Up[/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#cb9536\" unfilledcolor=\"#eedbb9\" size=\"130\" scales=\"no\" countdown=\"yes\" speed=\"1500\" value=\"75\"][fontawesome icon=\"fa-chevron-up\" circle=\"no\" size=\"small\" iconcolor=\"#cb9536\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#62a7c9\" unfilledcolor=\"#cbe1ec\" size=\"130\" scales=\"no\" countdown=\"yes\" speed=\"1500\" value=\"50\"]Down[/counter_circle][/counters_circle][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#62a7c9\" unfilledcolor=\"#cbe1ec\" size=\"130\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"][fontawesome icon=\"fa-chevron-down\" circle=\"no\" size=\"small\" iconcolor=\"#62a7c9\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][/counters_circle][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Animation Speed</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter circle in the shortcode can have a different animation speed, which provides a visual variation.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"60\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"90\"]You[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"80\" scales=\"no\" countdown=\"no\" speed=\"3500\" value=\"90\"]Can[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"100\" scales=\"no\" countdown=\"no\" speed=\"5500\" value=\"90\"]Control[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"120\" scales=\"no\" countdown=\"no\" speed=\"7500\" value=\"90\"]The[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"140\" scales=\"no\" countdown=\"no\" speed=\"9500\" value=\"90\"]Circle[/counter_circle][counter_circle filledcolor=\"\" unfilledcolor=\"\" size=\"160\" scales=\"no\" countdown=\"no\" speed=\"11500\" value=\"90\"]Speed[/counter_circle][/counters_circle][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Font Awesome Icons</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each counter circle can have text information or a font awesome icon inside the circle. The full font awesome shortcode can be used along with all of the icon options.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"185\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"50\"][fontawesome icon=\"fa-paper-plane-o\" circle=\"no\" size=\"\" iconcolor=\"#a7a9ac\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][/counters_circle][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"185\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"75\"][fontawesome icon=\"fa-thumbs-o-up\" circle=\"no\" size=\"\" iconcolor=\"#a7a9ac\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][/counters_circle][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][counters_circle class=\"\" id=\"\"][counter_circle filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" size=\"185\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"50\"][fontawesome icon=\"fa-laptop\" circle=\"no\" size=\"\" iconcolor=\"#a7a9ac\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"no\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/counter_circle][/counters_circle][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the counter circle shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>filledcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the filled area\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>unfilledcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the unfilled area\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>size</strong> - Accepts a numerical value to set the overall diameter of the circle in pixels. For example, <em>220</em>.[/li_item][li_item icon=\"\"]<strong>scales</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will show or hide a scale around the circle.[/li_item][li_item icon=\"\"]<strong>countdown</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets the filling animation to move counter clockwise.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>speed</strong> - Accepts a numerical value to set the time it takes for the animation to complete. For example, <em>1500</em>.[/li_item][li_item icon=\"\"]<strong>value</strong> - The <em>Filled Area Percentage. </em>Accepts a numerical value to set the percentage of filled area. For example, <em>95</em>.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a<em> custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Counter Circle','','publish','closed','closed','','counter-circle','','','2014-09-04 17:37:01','2014-09-04 17:37:01','',0,'http://avada.theme-fusion.comxml/?page_id=10522',0,'page','',0),(10526,1,'2014-09-04 17:39:10','2014-09-04 17:39:10','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Progress Bar Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes multiple animated counter shortcodes, including the progress bar shortcode. These are great for displaying varying types of data and content to your viewers. The progress bar include several options for easy customization and is a great way to visually attract the viewer and display content.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"15px\" borderradius=\"0\" stylecolor=\"\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"man drawing\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_4.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada Progress Bar Shortcode[/title][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud consequat.[/fusion_text][separator style_type=\"none\" top_margin=\"22\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#edecec\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]HTML Skills[/progress][progress percentage=\"90\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#edecec\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Wordpress Development[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#edecec\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]User Interface Design[/progress][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Control Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Each progress bar can have a different filled or unfilled color and text color.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][progress percentage=\"95\" unit=\"%\" filledcolor=\"#cb9536\" unfilledcolor=\"#eedbb9\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Marketing Strategy[/progress][progress percentage=\"80\" unit=\"%\" filledcolor=\"#62a7c9\" unfilledcolor=\"#cbe1ec\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"#1d4d65\" class=\"\" id=\"\"]Customers Referred Daily[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"#92be43\" unfilledcolor=\"#d7e8b7\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"#415b11\" class=\"\" id=\"\"]Repeat Business From Clients[/progress][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Animated Striped Bars</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each progress bar can have a striped or solid fill, and the stripes can animate.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][progress percentage=\"80\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Solid Progress Bar[/progress][progress percentage=\"85\" unit=\"%\" filledcolor=\"#92be43\" unfilledcolor=\"\" striped=\"yes\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Striped Progress Bar[/progress][progress percentage=\"95\" unit=\"%\" filledcolor=\"#76a227\" unfilledcolor=\"\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Animated Striped Progress Bar[/progress][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Unit Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each progress bar can have a different unit symobl, or left empty for no unit.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][progress percentage=\"80\" unit=\"Â£\" filledcolor=\"#a7a9ac\" unfilledcolor=\"#d7d7d7\" striped=\"no\" animated_stripes=\"no\" textcolor=\"\" class=\"\" id=\"\"]Progress Bar With Different Unit[/progress][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][progress percentage=\"80\" unit=\"\" filledcolor=\"#8b8e91\" unfilledcolor=\"#c2c1c1\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Progress Bar With No Unit[/progress][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>percentage</strong> - The <em>Filled Area Percentage. </em>Accepts a numerical value to set the percentage of filled area. For example, <em>95</em>.[/li_item][li_item icon=\"\"]<strong>unit</strong> - Accepts an alphanumeric value or symbols to represent a unit of measurement. For example, <em>%</em> or <em>cm</em>.[/li_item][li_item icon=\"\"]<strong>filledcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the filled area\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>unfilledcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the unfilled area\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>striped</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This will enable or disable striped fill.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>animated_stripes</strong> - Can be one of these values: <em>yes, </em>or<em> no.</em> This will enable or disable the animation of the striped fill.[/li_item][li_item icon=\"\"]<strong>textcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the text\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a<em> custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Progress Bars','','publish','closed','closed','','progress-bars','','','2014-09-04 17:39:10','2014-09-04 17:39:10','',0,'http://avada.theme-fusion.comxml/?page_id=10526',0,'page','',0),(10585,1,'2014-09-04 18:47:26','2014-09-04 18:47:26','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Popover Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes a popover shortcode that is perfect for adding additional content for your viewers. The content is housed as secondary information that the viewer can trigger by a mouse hover, or a mouse click. Our expanded options allow you customize several aspects of the popover like background colors, border colors, text colors, trigger value, popup placement and more.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"border\" bordercolor=\"rgba(255,255,255,.2)\" bordersize=\"15px\" stylecolor=\"\" align=\"left\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]<img src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/boys_reading.jpg\" alt=\"boys_reading\" />[/imageframe][/popover][/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada Popover Shortcode[/title][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing [popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"click\" placement=\"top\" class=\"\" id=\"\"]<span style=\"font-size: 15px;\">mouse click here</span>[/popover] elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims.[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(000,000,000,.03)|\" accent_color=\"rgba(000,000,000,.2)\" accent_hover_color=\"rgba(000,000,000,.3)\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"\" class=\"\" id=\"\"][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Hover Here For More Info[/popover][/button][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Background Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Control the background color behind the popover title and the content itself.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser.[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(000,000,000,.03)|\" accent_color=\"rgba(000,000,000,.2)\" accent_hover_color=\"rgba(000,000,000,.3)\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"][popover title=\"Unleash The Power of Avada\" title_bg_color=\"#add16c\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"#ede9e2\" bordercolor=\"#c1bfbf\" textcolor=\"#333333\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Background Colors[/popover][/button][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Border / Text Colors</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Control the border color and text color of the popover shortcode.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser.[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(000,000,000,.03)|\" accent_color=\"rgba(000,000,000,.2)\" accent_hover_color=\"rgba(000,000,000,.3)\" bevel_color=\"\" border_width=\"1px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"][popover title=\"Unleash The Power of Avada\" title_bg_color=\"#fff\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"#ff\" bordercolor=\"#8b7e63\" textcolor=\"#8b7e63\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]Border/Text Colors[/popover][/button][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Trigger Value</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Set the popover to trigger on mouse hover or mouse click.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [popover title=\"Unleash The Power of Avada\" title_bg_color=\"#fff\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<span style=\"font-size: 15px;\">mouse hover trigger</span>[/popover] ut enim ad minim veniam, quis nostrud exercitation ullamco. Excepteur sint occaecat cupidatats.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [popover title=\"Unleash The Power of Avada\" title_bg_color=\"#fff\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"click\" placement=\"top\" class=\"\" id=\"\"]<span style=\"font-size: 15px;\">mouse click trigger</span>[/popover] ut enim ad minim veniam, quis nostrud exercitation ullamco. Excepteur sint occaecat cupidatats.[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Popover Placement</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Control the direction of the popover popup box, left, right, top, bottom.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<img class=\"alignnone size-full wp-image-10471\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/pop_top.jpg\" alt=\"popover top\" width=\"141\" height=\"107\" />[/popover][/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"right\" class=\"\" id=\"\"]<img class=\"alignnone size-full wp-image-10471\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/pop_right.jpg\" alt=\"popover right\" width=\"141\" height=\"107\" />[/popover][/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"bottom\" class=\"\" id=\"\"]<img class=\"alignnone size-full wp-image-10471\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/pop_bottom.jpg\" alt=\"popover bottom\" width=\"141\" height=\"107\" />[/popover][/fusion_text][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text][popover title=\"Unleash The Power of Avada\" title_bg_color=\"\" content=\"Create beautiful, eye catching layouts with all the various elements Avada provides, like this nice little popover.\" content_bg_color=\"\" bordercolor=\"\" textcolor=\"\" trigger=\"hover\" placement=\"top\" class=\"\" id=\"\"]<img class=\"alignnone size-full wp-image-10471\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/pop_left.jpg\" alt=\"popover left\" width=\"141\" height=\"107\" />[/popover][/fusion_text][/one_fourth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the popover shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>title</strong> - The <em>custom title text</em> that is displayed in the popup box.[/li_item][li_item icon=\"\"]<strong>title_bg_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the heading\'s background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>content</strong> - The <em>custom text</em> that is displayed in the popup box.[/li_item][li_item icon=\"\"]<strong>content_bg_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave Blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>textcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the text\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>trigger</strong> - Can be one of these values: <em>click, </em>or<em> hover. </em>Sets the mouse action to trigger popover.[/li_item][li_item icon=\"\"]<strong>placement</strong> - Can be one of these values: <em>default, top, left, right, </em>or<em> bottom. </em>Sets the popover\'s position.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Popovers','','publish','closed','closed','','popovers','','','2014-09-04 18:47:26','2014-09-04 18:47:26','',0,'http://avada.theme-fusion.comxml/?page_id=10585',0,'page','',0),(10589,1,'2014-09-04 18:53:14','2014-09-04 18:53:14','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Modal Popup Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes an incredible modal popup that can be used to show additional content on a page. It can be triggered by a button, text link or an image. Use any of our other shortcodes inside of it as well. These are perfect for catching your viewers eye and displaying extra content on your site.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"shortcodes\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Large Modal Sample 1</h2>\nLid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rems uns sadips.[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"modal1\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Large Modal Sample 1[/button][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"shortcodes\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Large Modal Sample 2</h2>\nLid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rems uns sadips.[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"modal2\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Large Modal Sample 2[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"none\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"shortcodes\" src=\"http://freereincenter.com/wp-content/uploads/2012/07/blog_5.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"18\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]<h2>Small Modal Sample</h2>\nLid est laborum dolo rumes fugats untras. Etha rums ser quidem rerum facilis dolores nemis onis fugats vitaes nemo minima rems uns sadips.[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"large\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"modal3\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Small Modal Sample[/button][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Custom Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Select large or small popup, control background color, border color and show or hide the footer with button</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"modal4\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Change Popup Colors[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"default\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"|\" accent_color=\"rgba(000,000,000,.7)\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"modal5\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Show or Hide Footer[/button][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>name</strong> - The <em>unique identifier</em> you give the modal to trigger it via button, text link or image.[/li_item][li_item icon=\"\"]<strong>title</strong> - The <em>heading title text</em> you want to display.[/li_item][li_item icon=\"\"]<strong>size</strong> - Can be one of these values: <em>large, </em>or<em> small</em>. Sets the size of the modal.[/li_item][li_item icon=\"\"]<strong>background</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the modal\'s background color. Leave Blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>border_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the modal\'s border color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>show_footer</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>This is to show or hide the footer.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth][modal name=\"modal1\" title=\"Insert Anything You Want In These Modals\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n[counters_circle class=\"\" id=\"\"]\n[counter_circle filledcolor=\"\" unfilledcolor=\"#eaeaea\" size=\"190\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"95\"]Text[/counter_circle]\n[counter_circle filledcolor=\"\" unfilledcolor=\"#eaeaea\" size=\"190\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"88\"]Text[/counter_circle]\n[counter_circle filledcolor=\"\" unfilledcolor=\"#eaeaea\" size=\"190\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"80\"]Text[/counter_circle]\n[counter_circle filledcolor=\"\" unfilledcolor=\"#eaeaea\" size=\"190\" scales=\"no\" countdown=\"no\" speed=\"1500\" value=\"78\"]Text[/counter_circle]\n[/counters_circle]\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"50\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"820px\" class=\"\" id=\"\"]\n[progress percentage=\"95\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#eaeaea\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Text here[/progress]\n[progress percentage=\"80\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#eaeaea\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Text here[/progress]\n[progress percentage=\"85\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#eaeaea\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Text here[/progress]\n[progress percentage=\"90\" unit=\"%\" filledcolor=\"\" unfilledcolor=\"#eaeaea\" striped=\"yes\" animated_stripes=\"yes\" textcolor=\"\" class=\"\" id=\"\"]Text here[/progress]\n[/modal][modal name=\"modal2\" title=\"Modal Heading Text Goes Here\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][youtube id=\"hsEUBLIJvmE\" width=\"880\" height=\"504\" autoplay=\"no\" api_params=\"\" class=\"\"]\nSed convallis varius lectus at volutpat. Mauris fringilla dictum risus. Pellentesque neque tortor, malesuada in posuere ac, commodo et nisl. Vivamus massa turpis, porttitor scelerisque bibendum vel, eleifend sed neque. In elementum, magna et porta viverra, metus nunc lacinia diam, eget vehicula risus augue in odio. Nullam sed neque erat. Integer eget tincidunt dolor, et fringilla justo. Sed eget nisi accumsan urna pulvinar fermentum a quis nunc. Fusce ornare urna quis purus dapibus bibendum. Integer lacus elit, malesuada quis dui vel, vulputate tempor est. Pellentesque a quam elementum, blandit leo varius, laoreet mi. Aliquam vestibulum nisl eu tortor malesuada auctor. Duis in enim ornare, convallis metus in, posuere justo. Sed ac odio egestas, ultricies dui non, malesuada nibh. Donec vel massa et purus rutrum luctus. Quisque fermentum ornare fermentum. Morbi sit amet dui volutpat, vehicula metus ut, volutpat enim. Cras a mauris posuere, sagittis justo nec, aliquam leo.[/modal][modal name=\"modal3\" title=\"Modal Heading Goes Here\" size=\"small\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]Sed convallis varius lectus at volutpat. Mauris fringilla dictum risus. Pellentesque neque tortor, malesuada in posuere ac, commodo et nisl. Vivamus massa turpis, porttitor scelerisque bibendum vel, eleifend sed neque. In elementum, magna et porta viverra, metus nunc lacinia diam, eget vehicula risus augue in odio. Nullam sed neque erat. Integer eget tincidunt dolor, et fringilla justo.[/modal][modal name=\"modal4\" title=\"Custom Color For This Modal Popup\" size=\"small\" background=\"#333333\" border_color=\"#3e3e3e\" show_footer=\"yes\" class=\"\" id=\"\"]Sed convallis varius lectus at volutpat. Mauris fringilla dictum risus. Pellentesque neque tortor, malesuada in posuere ac, commodo et nisl. Vivamus massa turpis, porttitor scelerisque bibendum vel, eleifend sed neque. In elementum, magna et porta viverra, metus nunc lacinia diam, eget vehicula risus augue in odio. Nullam sed neque erat. Integer eget tincidunt dolor, et fringilla justo.[/modal][modal name=\"modal5\" title=\"Show or hide The Footer In The Popup\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"no\" class=\"\" id=\"\"]<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"]\n<a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal]','Modal Popup','','publish','closed','closed','','modals','','','2014-09-04 18:53:14','2014-09-04 18:53:14','',0,'http://avada.theme-fusion.comxml/?page_id=10589',0,'page','',0),(10595,1,'2014-09-04 18:58:37','2014-09-04 18:58:37','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Flip Box Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Animated flip boxes are simply awesome. We’ve never met anyone who doesn’t love these bad boys. They are great for grabbing the users attention and adding some interaction with your content. Avada’s flip boxes have fully customizable content on the front and back side. They are fully integrated with the Font Awesome icon set and icon options like spin, rotate, flip. You can put a title on the front and backside, add buttons to your content and the box height will extend based on the amount of content you use. Customize the border size, border radius and have full control over the front and backside colors. Oh yeah, and you can animate them with CSS3 goodness. These are an Avada favorite, and for good reason.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Fully Responsive\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s responsive framework ensures your content looks great on all screen sizes.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic. [button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]BUY AVADA NOW![/button][/flip_box][flip_box title_front=\"Premium Sliders\" title_back=\"Make Your Content Stand Out\" text_front=\"Avada includes four premium sliders that make your content stand out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Avada includes the Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider. [button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]BUY AVADA NOW![/button][/flip_box][flip_box title_front=\"Amazing Elements\" title_back=\"Build Something Beautiful\" text_front=\"Avada offers incredible elements that allow you to create a beautiful site.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Dozens of well designed shortcodes loaded with options gives you perfect freedom.[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]BUY AVADA NOW![/button][/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Column Sizes</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Flip boxes have their own column option to set which allows the content box to fill the column width from 1-6 columns. They can also be used inside of our regular column shortcode to control their placement on the page.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"1\" class=\"\" id=\"\"][flip_box title_front=\"Column Sizes\" title_back=\"Perfect For All Sizes\" text_front=\"Avada\'s column options are integrated into the flip boxes, making it easy to set 1-6 columns. Content boxes will always resize accordingly. It\'s a beautiful thing.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-columns\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]No matter the size of your screen or device, your site will look fantastic.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Color Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Flip boxes allow you to control the color of the backgrounds, title text, body text, icons, icon circles and borders. Set colors individually in the shortcode, or globally in our theme options panel. Take control of your colors with ease.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Control\" title_back=\"Control Your Colors\" text_front=\"Control all the colors of each element you see.\" background_color_front=\"#a2cc55\" title_front_color=\"#fff\" text_front_color=\"#fff\" background_color_back=\"#92be43\" title_back_color=\"\" text_back_color=\"\" border_size=\"0px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-car\" icon_color=\"\" circle=\"yes\" circle_color=\"#92be43\" circle_border_color=\"#a2cc55\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][flip_box title_front=\"Your\" title_back=\"Control Your Colors\" text_front=\"Control all the colors of each element you see.\" background_color_front=\"#74badb\" title_front_color=\"#fff\" text_front_color=\"#fff\" background_color_back=\"#62a7c9\" title_back_color=\"#fff\" text_back_color=\"#fff\" border_size=\"1px\" border_color=\"#eaeaea\" border_radius=\"4px\" icon=\"fa-camera-retro\" icon_color=\"\" circle=\"yes\" circle_color=\"#62a7c9\" circle_border_color=\"#74badb\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][flip_box title_front=\"Colors\" title_back=\"Control Your Colors\" text_front=\"Control all the colors of each element you see.\" background_color_front=\"#d5962c\" title_front_color=\"#fff\" text_front_color=\"#fff\" background_color_back=\"#ca7b25\" title_back_color=\"#fff\" text_back_color=\"#fff\" border_size=\"1px\" border_color=\"#eaeaea\" border_radius=\"4px\" icon=\"fa-paper-plane-o\" icon_color=\"\" circle=\"yes\" circle_color=\"#ca7b25\" circle_border_color=\"#d5962c\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Icon Haven</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Font Awesome Icons are tightly integrate into the flip boxes along with multiple options; icon color, circle color and border, circle show or hide, icon flip, rotate, spin and animate.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"2\" class=\"\" id=\"\"][flip_box title_front=\"Awesome\" title_back=\"Control Your Icons\" text_front=\"Font Awesome Icon integration is perfect.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-leaf\" icon_color=\"#92be43\" circle=\"yes\" circle_color=\"#f6f6f6\" circle_border_color=\"#92be43\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\"]Change just about every aspect of the icon and circle that contains it. Take Control.[/flip_box][flip_box title_front=\"Icons\" title_back=\"Control Your Colors\" text_front=\"Font Awesome Icon integration is perfect.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"#73b9dc\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-rocket\" icon_color=\"#73b9dc\" circle=\"no\" circle_color=\"\" circle_border_color=\"\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"yes\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Change just about every aspect of the icon and circle that contains it. Take Control.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Need Images? Check!</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Instead of using an icon, you can choose to use an image that will show up in the same area as the icon. The settings allow you to specify the exact image size so it displays perfectly in the box. Using an image instead of an icon opens up a whole new look for the flip boxes and gives additional creative uses.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"2\" class=\"\" id=\"\"][flip_box title_front=\"Images Love Flip Boxes\" title_back=\"A Whole New Look\" text_front=\"Images can be used in place of icons.\" background_color_front=\"#fff\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"#e0e0e0\" border_radius=\"0px\" icon=\"\" icon_color=\"#92be43\" circle=\"yes\" circle_color=\"#f6f6f6\" circle_border_color=\"#92be43\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/flip_box2.jpg\" image_width=\"250\" image_height=\"145\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\"]Instead of using icons, you can choose to use images. This opens up a whole new look for the flip boxes and gives you more creative freedom in creating layouts.[/flip_box][flip_box title_front=\"Images Love Flip Boxes\" title_back=\"A Whole New Look\" text_front=\"Images can be used in place of icons.\" background_color_front=\"#fff\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"#e0e0e0\" border_radius=\"0px\" icon=\"\" icon_color=\"#92be43\" circle=\"yes\" circle_color=\"#f6f6f6\" circle_border_color=\"#92be43\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/flip_box1.jpg\" image_width=\"250\" image_height=\"145\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\"]Instead of using icons, you can choose to use images. This opens up a whole new look for the flip boxes and gives you more creative freedom in creating layouts.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Border Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Flip boxes allow you to use borders and set the border width, color and radius. You can even set the border properties individually per box to make one box stand out from the others with featured content. Take control of your borders.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Control\" title_back=\"Control Your Borders\" text_front=\"Control the border size, color and radius.\" background_color_front=\"#fff\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"#a2cc55\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"#e0e0e0\" border_radius=\"4px\" icon=\"fa-expand\" icon_color=\"\" circle=\"yes\" circle_color=\"#92be43\" circle_border_color=\"#92be43\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][flip_box title_front=\"Your\" title_back=\"Control Your Borders\" text_front=\"Control the border size, color and radius.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"#62a7c9\" title_back_color=\"\" text_back_color=\"#fff\" border_size=\"1px\" border_color=\"#e0e0e0\" border_radius=\"30px\" icon=\"fa-trophy\" icon_color=\"\" circle=\"yes\" circle_color=\"#74badb\" circle_border_color=\"#74badb\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][flip_box title_front=\"Borders\" title_back=\"Control Your Borders\" text_front=\"Control the border size, color and radius.\" background_color_front=\"#fff\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"#ca7b25\" title_back_color=\"\" text_back_color=\"\" border_size=\"3px\" border_color=\"#ca7b25\" border_radius=\"0px\" icon=\"fa-laptop\" icon_color=\"\" circle=\"yes\" circle_color=\"#ca7b25\" circle_border_color=\"#ca7b25\" icon_flip=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]From backgrounds to text colors to borders. Take control.[/flip_box][/flip_boxes][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>columns</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6. </em>Sets the number of columns per row.[/li_item][li_item icon=\"\"]<strong>title_front</strong> -The <em>custom title</em> text for the front side of the flip box.[/li_item][li_item icon=\"\"]<strong>title_back</strong> - The <em>custom title</em> text for the back side of the flip box.[/li_item][li_item icon=\"\"]<strong>text_front</strong> - The <em>custom body</em> text for the front side of the flip box.[/li_item][li_item icon=\"\"]<strong>border_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>border_radius</strong> - Accepts a pixel value that sets the border\'s radius. For example, <em>4px</em>. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>border_size</strong> - Accepts a pixel value that sets the border\'s size. For example, <em>4px</em>. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>background_color_front</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the front side\'s background color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title_front_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the front side\'s title color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>text_front_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the front side\'s body text color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>background_color_back</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the back side\'s background color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title_back_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the back side\'s title color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>text_back_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the back side\'s body text color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\">font awesome</a> icon value. For example, <em>fa-glass.</em>[/li_item][li_item icon=\"\"]<strong>icon_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s color. Leave blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>circle</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets if the icon is circular or not.[/li_item][li_item icon=\"\"]<strong>circle_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s background color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>circle_border_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s border color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>icon_flip</strong> - Can be one of these values: <em>none, horizontal, </em>or<em> vertical.</em> Sets the direction where the icon will flip.[/li_item][li_item icon=\"\"]<strong>icon_rotate</strong> - Can be one of these values: <em>none, 90, 180, </em>or<em> 270.</em> Sets the angle of the icon\'s rotation.[/li_item][li_item icon=\"\"]<strong>icon_spin</strong> - Can be one of these values: <em>yes, </em>or<em> no.</em> This will enable or disable the icon\'s spinning feature.[/li_item][li_item icon=\"\"]<strong>image</strong> - The URL path of your custom icon image, starting with <em>http://</em> and usually ending on <em>.jpg, .png </em>or<em> .gif.</em> Make sure there is no <em>\"icon=\"</em> value.[/li_item][li_item icon=\"\"]<strong>image_width</strong> - This parameter is for <em>custom icon images. </em>Accepts a numerical value to set a custom width in pixels. For example, <em>35</em>.[/li_item][li_item icon=\"\"]<strong>image_height</strong> - This parameter is for <em>custom icon images. </em>Accepts a numerical value to set a custom height in pixels. For example, <em>35</em>.[/li_item][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, bounce, fade, flash, shake, </em>or<em> slide. </em>Sets the animation to use on the icon inside the box only.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or<em> up. </em>Sets the incoming direction for the animation of the icon inside the box only.[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest. This is only for the icon inside the box.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Flip Boxes','','publish','closed','closed','','flip-boxes','','','2014-09-04 18:58:37','2014-09-04 18:58:37','',0,'http://avada.theme-fusion.comxml/?page_id=10595',0,'page','',0),(10598,1,'2014-09-04 18:59:48','2014-09-04 18:59:48','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Column Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada’s column shortcodes allow you to manage the content on your pages into different column widths. This allows for greater control over your layouts, and provides creative opportunities. Columns serve as a container to place other content inside of them. Use any of our other shortcodes inside of a column shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"15px\" borderradius=\"0\" stylecolor=\"\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"] <img src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/07/boys_reading.jpg\" alt=\"boys_reading\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0px\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.[/fusion_text][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Manage your content easily.[/li_item][li_item icon=\"\"]Have greater control over your layouts.[/li_item][li_item icon=\"\"]Divide the page up to 6 sections.[/li_item][li_item icon=\"\"]Fully customize the look of your column to match your site![/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Background Image &amp; Color</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Each column can have a custom background image or color set. When using an image you can also set position and repeat values.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"http://avada.theme-fusion.com/agency/wp-content/uploads/sites/12/layerslider/Transparent-Header-Slider/ls_bkgd_dark.jpg\" background_repeat=\"repeat-x\" background_position=\"center center\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#cdcdcd\" icon=\"fa-chevron-down\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Image Background</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Set positions and repeat values effortlessly.</span></h2>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"#f4f4f4\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"20px\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: left;\">Choose Solid Colors</h2>\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Border Control &amp; Padding</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each column can have a custom border and control the border size, border color and border style.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"#8fc935\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"4px\" border_color=\"#80b62b\" border_style=\"solid\" padding=\"10px\" class=\"\" id=\"\"][fusion_text]\n<h4><span style=\"color: #ffffff;\">Solid Border</span></h4>\n<span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</span>[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"4px\" border_color=\"#5faad6\" border_style=\"dashed\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4><span style=\"color: #4f95bf;\">Dashed Border</span></h4>\n<span style=\"color: #4f95bf;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</span>[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#d6d6d6\" border_style=\"dotted\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>Dotted Border</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Equal Column Height</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">When used in our full width container, we provide an option to make all columns in a set equal height. This produces a much cleaner, even look for your content.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][fusion_text]\n<h4 style=\"text-align: left;\">Equal Column Height</h4>\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>\n[/fusion_text][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"bottomshadow\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.1\" class=\"\" id=\"\"] <img src=\"http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg\" alt=\"\" />[/imageframe][/two_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Column Sizes</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">We offer a complete set of columns from 1-6. See below for every column combination.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Half</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Half</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/fusion_text][/one_half][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Third</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Third</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Third</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Third</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui.[/fusion_text][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>Two Third</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui. Ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nis.[/fusion_text][/two_third][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#d9d9d9\" border_style=\"solid\" padding=\"15px\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/one_fourth][three_fourth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>Three Fourth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliqu enim ad minim veniam, quis nostrud exercitation ulis.[/fusion_text][/three_fourth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][four_fifth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>Four Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliqu enim ad minim veniam, quis nostrud exercitation ulis.[/fusion_text][/four_fifth][two_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>Two Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.[/fusion_text][/two_fifth][three_fifth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>Three Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.[/fusion_text][/three_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][one_fifth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][one_fifth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Fifth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud sitsers exercitation.[/fusion_text][/one_fifth][five_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>Five Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliqu enim ad minim veniam, quis nostrud exercitation ulis.[/fusion_text][/five_sixth][one_sixth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][one_sixth last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<h4>One Sixth</h4>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/fusion_text][/one_sixth][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the column shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>last</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em> Set if the column is last in a set.[/li_item][li_item icon=\"\"]<strong>spacing</strong> - Can be one of these values: <em>yes, </em>or<em> no.</em> This will enable or disable the margin between columns.[/li_item][li_item icon=\"\"]<strong>background_color</strong> - Accepts a hexcode <em>( #000000 )</em>. Sets the infobox\'s background color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>background_image</strong> - The URL path of your background image, starting with <em>http://</em> and usually ending on <em>.jpg, .png </em>or<em> .gif.</em>[/li_item][li_item icon=\"\"]<strong>background_repeat</strong> - Can be one of these values: <em>no-repeat, repeat, repeat-y, </em>or<em> repeat-x. </em>Sets how the background repeats.[/li_item][li_item icon=\"\"]<strong>background_position</strong> - Accept a pixel value, percentage or certain alphabetic values. For example,<em> 50px, 100%, left top, left center, left bottom, right top, right center, right bottom, center top, center center, </em>or<em> center bottom. </em>Sets the background\'s position.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>border_size</strong> - Accepts a pixel value that sets the border\'s size. For example, <em>5px</em>.[/li_item][li_item icon=\"\"]<strong>border_color</strong> - Accepts a hexcode <em>( #000000 )</em>. Sets the border\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>border_style</strong> - Can be one of these values: <em>solid, dashed, </em>or<em> dotted. </em>Sets the border\'s style.[/li_item][li_item icon=\"\"]<strong>padding</strong> - Accepts a pixel value that sets the padding. For example, <em>5px</em>.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Columns','','publish','closed','closed','','columns','','','2014-09-04 18:59:48','2014-09-04 18:59:48','',0,'http://avada.theme-fusion.comxml/?page_id=10598',0,'page','',0),(10602,1,'2014-09-04 19:01:32','2014-09-04 19:01:32','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Blog Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">This is a very versatile shortcode, allowing you to display posts on any page.  Choose from 6 blog designs along with a plethora of customization options. Create unlimited blog pages each with a unique look and category of posts. Compatible with both single and dual sidebars, the blog shortcode also allows you to build magazine style layouts, the possibilities are amazing!</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"15px\" paddingbottom=\"70px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][blog number_posts=\"3\" cat_slug=\"wordpress\" exclude_cats=\"\" title=\"yes\" title_link=\"yes\" thumbnail=\"yes\" excerpt=\"yes\" excerpt_length=\"15\" meta_all=\"yes\" meta_author=\"yes\" meta_categories=\"yes\" meta_comments=\"yes\" meta_date=\"yes\" meta_link=\"yes\" meta_tags=\"yes\" paging=\"no\" scrolling=\"pagination\" strip_html=\"yes\" blog_grid_columns=\"3\" blog_grid_column_spacing=\"40\" layout=\"grid\" class=\"myGrid\" id=\"\"][/blog][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>6 Design Layouts To Select</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each blog shortcode can use any of our 6 designs and can be used with a single or dual sidebar. Each instance has its own set of options for customization providing ultimate flexibility per use.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"70px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/blog-grid-full-width/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Grid\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/grid.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/timeline-full-width/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Timeline\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/timeline.jpg\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/large-image-right-sidebar/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Large\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/large.jpg\" />[/imageframe][/one_third][separator style_type=\"none\" top_margin=\"17\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/large-alternate-right-sidebar/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Large Alternate\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/large_alt.jpg\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/medium-image-right-sidebar/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Medium\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/medium.jpg\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/medium-alternate-right-sidebar/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Medium Alternate\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/medium_alt.jpg\" />[/imageframe][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Create Unlimited Blog Pages</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">The Blog shortcode allows you to use it on as many pages as you wish. Each instance can have a unique set of categories that display giving you superior flexibility for various types of layout, even magazine style.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"25px\" paddingbottom=\"85px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/home-magazine-style-1/\" linktarget=\"_blank\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Medium\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/unlimited.jpg\" />[/imageframe][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"0\" sep_color=\"#f2f2f2\" icon=\"\" width=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Loaded With Customization Options</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Each blog instance you use has a massive set of options for customization. These options allow you to choose how each set of posts display, making it unique to your site.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"70px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"#f6f6f6\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/post.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Number Of Posts</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to control the number of posts that will display with the blog shortcode.</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/catagories.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Categories</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to choose which category or categroies will display with the blog shortcode.</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/catx.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Exclude Categories</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to easily exclude one or more categories. Perfect for those who have many.</p>\n[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"20\" sep_color=\"#cdcdcd\" icon=\"\" width=\"400px\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/excerpt.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Post Excerpt</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to show a post excerpt or the full content of each blog post.</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/thumbnails.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Post Thumbnail</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to show or hide the blog post image that dispalys on each of your posts.</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/scroll.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Type of Scroll</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to choose infinite scroll, or classic numerical pagination for your posts.</p>\n[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"0\" bottom_margin=\"20\" sep_color=\"#cdcdcd\" icon=\"\" width=\"400px\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/page.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Pagination Type</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to choose if pagination will display for navigating through posts.</p>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/title.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Post Title</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to show or hide the blog post title that dispalys on each of your posts.</p>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/stripHTML.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"0\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<h3 style=\"text-align: center;\">Strip HTML</h3>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center;\">This option allows you to strip HTML from the post, which is perfect for when using excerpts.</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Total Control Over Meta Deta Display</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">With each blog shortcode comes a full set of options for meta data. These options allow you to enable or disable each different section of meta data, or the entire set together.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"70px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" style_type=\"none\" bordercolor=\"rgba(000,000,000,.05)\" bordersize=\"7px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/12/meta.jpg\" />[/imageframe][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Show or hide all meta info with one easyoption.[/li_item][li_item icon=\"\"]Show or hide the author of the post.[/li_item][li_item icon=\"\"]Show or hide the individual post categories.[/li_item][li_item icon=\"\"]Show or hide the comment icon and number.[/li_item][li_item icon=\"\"]Show or hide the date of the post.[/li_item][li_item icon=\"\"]Show or hide the Read More link with icon arrow.[/li_item][li_item icon=\"\"]Show or hide the tags of the post.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"scroll\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"20px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">That\'s not all, see below for the every option included with the blog shortcode.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"25px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]number_posts = numerical value to show how many posts you want per page, example 5. Can be -1 which means all posts will be displayed on one page[/li_item][li_item icon=\"\"]cat_slug = slug name of the category from which you want the posts to be displayed. Use a , for multiple categories[/li_item][li_item icon=\"\"]exclude_cats = slug name of the category you want to exclude. Use a , for multiple categories[/li_item][li_item icon=\"\"]title = one of these values: yes, no. This will show or hide the title[/li_item][li_item icon=\"\"]thumbnail = one of these values: yes, no. This will show or hide the image thumbnail[/li_item][li_item icon=\"\"]excerpt = one of these values: yes, no. This will show or hide the excerpt[/li_item][li_item icon=\"\"]excerpt_words = numerical value that controls length of excerpt[/li_item][li_item icon=\"\"]meta_all = one of these values: yes, no. This will show or hide all meta info[/li_item][li_item icon=\"\"]meta_author = one of these values: yes, no. This will show or hide the author[/li_item][li_item icon=\"\"]meta_categories = one of these values: yes, no. This will show or hide the categories[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]meta_comments = one of these values: yes, no. This will show or hide the comments[/li_item][li_item icon=\"\"]meta_date = one of these values: yes, no. This will show or hide the date[/li_item][li_item icon=\"\"]meta_link = one of these values: yes, no. This will show or hide the link[/li_item][li_item icon=\"\"]paging = one of these values: yes, no. This will show or hide pagination[/li_item][li_item icon=\"\"]scrolling = one of these values: pagination or infinite[/li_item][li_item icon=\"\"]strip_HTML = one of these values: yes, no. This will show or hide HTML in the excertps[/li_item][li_item icon=\"\"]blog_grid_columns = one of these values: 2, 3, 4, 5, 6. Controls the column width of blog grid layout[/li_item][li_item icon=\"\"]layout = one of these values: large, medium, large alternate, medium alternate, grid, timeline[/li_item][li_item icon=\"\"]class = add a custom class to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]id = add a custom id to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Blog','','publish','closed','closed','','blog-3','','','2014-09-04 19:01:32','2014-09-04 19:01:32','',0,'http://avada.theme-fusion.comxml/?page_id=10602',0,'page','',0),(10643,1,'2014-09-04 19:48:04','2014-09-04 19:48:04','[separator style_type=\"single\" top_margin=\"1\" bottom_margin=\"1\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">Where Are The Rest of The <span style=\"color: #a0ce4e;\">Live Demo</span> Sliders?</h1>\n<p style=\"text-align: center; font-size: 17px; line-height: 25px;\">Our live demo contains dozens of sliders. The importer only imports a few samples of each slider due to overall file size, most servers would not be able to import more which would cause the import to fail. We provide a few samples of each type to get you started, and you can download the rest from our documentaiton to import individually.</p>\n[/fusion_text][/fullwidth][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"0\" sep_color=\"#cccccc\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single solid\" sep_color=\"#c9c9c9\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]How Do I Receive The Rest of The Demo Sliders?[/title][fusion_text]We can only include a few samples of ech slider type in the import, if we included them all the vast majority of servers would crash due to the overall file size. Follow the steps below to obtain the rest of the demo sliders for each slider type we offer.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-chevron-right\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Create an account at our support center by following <a href=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-80311\" target=\"_blank\">these steps</a>[/li_item][li_item icon=\"\"]Access the demo slider files from <a href=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-151432\" target=\"_blank\">this post</a> in our online documentation.[/li_item][li_item icon=\"\"]Be sure to follow the directions for the type of slider you will be importing[/li_item][/checklist][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-151432\" color=\"default\" size=\"\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"\" class=\"\" id=\"\"]View More Information In Our Documentation[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"#636363\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.5\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/09/slider_infos.jpg\" />[/imageframe][/one_half][/fullwidth][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"20px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Need Theme Support?\" title_back=\"Create Your Account Today\" text_front=\"To get hands on support, create a new account at our support center with your Themeforest purchase code.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-life-ring\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Our support forum allows you to interact with our developers and ask the important questions that you need answers too. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-80311\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Sign Up Today![/button][/flip_box][flip_box title_front=\"Documentation &amp; Knowledgebase\" title_back=\"All The Information You Need\" text_front=\"Our documentation is online and contains valuable information for you to quickly find what you need.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-file-text-o\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Search for keywords in our documentation and knowledgebase to quickly find answers to your questions. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]View our Documentation[/button][/flip_box][flip_box title_front=\"View our Video Tutorials\" title_back=\"Video Tutorials In HD With Narration\" text_front=\"Video tutorials make it easy and many can learn much faster by watching them, check them out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-film\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Each video tutorial is in high definition with video narration to help you understand what is being viewed. Watch and learn! [button link=\"http://avada.theme-fusion.com/support/video-tutorials/avada-videos/\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Watch Video Tutorials[/button][/flip_box][/flip_boxes][/fullwidth]','Slider Info Page','','publish','closed','closed','','slider-info-page','','','2014-09-04 19:48:04','2014-09-04 19:48:04','',0,'http://avada.theme-fusion.comxml/?page_id=10643',0,'page','',0),(10646,1,'2014-09-04 19:48:54','2014-09-04 19:48:54','[separator style_type=\"single\" top_margin=\"1\" bottom_margin=\"1\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">Where Are The <span style=\"color: #a0ce4e;\">Live Demo</span> Header Pages?</h1>\n<p style=\"text-align: center; font-size: 17px; line-height: 25px;\">Avada allows you to choose between 5 different header styles, each can be customized to your liking. However, currently you can only choose one per site in theme options. Our demo has to show each of the 5 samples to viewers, so we had to setup static pages for that purpose.</p>\n[/fusion_text][/fullwidth][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"0\" sep_color=\"#cccccc\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"50px\" padding_bottom=\"30px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single solid\" sep_color=\"#c9c9c9\" margin_top=\"\" margin_bottom=\"\" class=\"\" id=\"\"]How Do I Change To The Different headers?[/title][fusion_text]You can change the header selection very easily!  Each header has various options as well. Follow the steps below to change out the template.[/fusion_text][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][checklist icon=\"fa-chevron-right\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Navigate to the <strong>Theme Options Panel</strong> in your WordPress admin.[/li_item][li_item icon=\"\"]Click the <strong>Header</strong> tab on the right hand side to view the various options.[/li_item][li_item icon=\"\"]Select the header design of your choice and any of the other optins you wish to use. Click <strong>Save Changes</strong> when complete.[/li_item][/checklist][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-80344\" color=\"default\" size=\"\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"0px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" alignment=\"\" class=\"\" id=\"\"]View More Information In Our Documentation[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"#636363\" align=\"left\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.5\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/09/header_infos.jpg\" />[/imageframe][/one_half][/fullwidth][separator style_type=\"single\" top_margin=\"0\" bottom_margin=\"0\" sep_color=\"\" border_size=\"\" icon=\"fa-chevron-down\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"20px\" padding_left=\"20px\" padding_right=\"20px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Need Theme Support?\" title_back=\"Create Your Account Today\" text_front=\"To get hands on support, create a new account at our support center with your Themeforest purchase code.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-life-ring\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Our support forum allows you to interact with our developers and ask the important questions that you need answers too. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation/#page-item-80311\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Sign Up Today![/button][/flip_box][flip_box title_front=\"Documentation &amp; Knowledgebase\" title_back=\"All The Information You Need\" text_front=\"Our documentation is online and contains valuable information for you to quickly find what you need.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-file-text-o\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Search for keywords in our documentation and knowledgebase to quickly find answers to your questions. [button link=\"http://avada.theme-fusion.com/support/documentation/avada-documentation\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]View our Documentation[/button][/flip_box][flip_box title_front=\"View our Video Tutorials\" title_back=\"Video Tutorials In HD With Narration\" text_front=\"Video tutorials make it easy and many can learn much faster by watching them, check them out!\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"0\" border_color=\"0\" border_radius=\"0\" icon=\"fa-film\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\"]Each video tutorial is in high definition with video narration to help you understand what is being viewed. Watch and learn! [button link=\"http://avada.theme-fusion.com/support/video-tutorials/avada-videos/\" color=\"custom\" size=\"\" type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#96c346|#96c346\" gradient_hover_colors=\"#85c11d|#85c11d\" accent_color=\"#ffffff\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Watch Video Tutorials[/button][/flip_box][/flip_boxes][/fullwidth]','Headers','','publish','closed','closed','','headers','','','2014-09-04 19:48:54','2014-09-04 19:48:54','',0,'http://avada.theme-fusion.comxml/?page_id=10646',0,'page','',0);
INSERT INTO `wp_posts` VALUES (10709,1,'2014-11-19 15:14:03','2014-11-19 15:14:03','[fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"up\" enable_mobile=\"no\" parallax_speed=\"0.4\" background_repeat=\"repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 60px; line-height: 70px;\"><span style=\"color: #ffffff;\">#1 Selling Theme of All Time</span></h1>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Coding Not Required\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/not_required1-compressor.png\" />[/imageframe][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_build_unique-compressor.png\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"60px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Join The [tooltip title=\"Join The Avada Community!\"]<strong>145,000+</strong>[/tooltip] Satisfied Customers Today</h2>[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\">Avada has been the #1 selling theme for more than 2 years, making it the most trusted and complete WordPress theme on the market.  Powerful options &amp; tools, unlimited designs, responsive framework and amazing support are the reasons our customers have fallen in love.  We are dedicated to providing you with the best experience possible. Read below to find out why the sky’s the limit when using Avada.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_intro_img2-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Avada Is More Than A Theme, It’s A Powerful Design Tool.</span></h2>\n[/fusion_text][fusion_text]<p style=\"text-align: center; font-size: 18px; line-height: 29px;\"><span style=\"color: #e4efd1;\">Avada gives you the ability to build virtually any design style. These professionally designed demos were built entirely with our options and require no custom coding. <strong>Every demo is included for free</strong> and can be easily <strong>imported with one click</strong> through the admin.</span></p>[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"155px\" padding_bottom=\"120px\" padding_left=\"11.25%\" padding_right=\"11.25%\" hundred_percent=\"yes\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"1px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Classic Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/classic-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Classic</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/agency\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Agency\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/agency22-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Agency</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/cafe/\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Cafe Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/cafe2-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Cafe</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/travel\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Travel Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/travel-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Travel</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/fashion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Fashion Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fashion1-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Fashion</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/app\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Mobile App Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/app1-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada App</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/law\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Law Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/law-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Law</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/hosting\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Hosting Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/hosting-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Hosting</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/architecture\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Architecture Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/architecture1-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Architecture</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/hotel\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Hotel Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/hotel-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Hotel</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/lifestyle\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Lifestyle Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/lifestyle-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Avada Lifestyle</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][one_fourth last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"zoomin\" bordercolor=\"\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/church\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Church\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/church-compressor.jpg\" />[/imageframe][fusion_text]<h2 style=\"text-align: center; margin: 5% 0% 2.75% 0%;\">Coming Soon!</h2>[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][/one_fourth][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"20px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Customize Your Entire Site With Ease, No Coding Experience Required!</span></h2>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"#f6f6f6\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"85px\" padding_bottom=\"90px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Design Description\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/design_desc-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]BUY AVADA NOW![/button][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Take Control of Your Website. Yeah, There\'s An Option For That.</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\">Avada\'s set of features, options and tools make it the most versatile theme on the market by allowing you to take control of virtually every aspect and section of the site.  The powerful customization options &amp; features give you flexibility to create the site you want.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#ffffff\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"95px\" padding_bottom=\"100px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"fwcHome\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Fusion Core</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Fusion Core is our companion plugin that holds a tremendous amount of powerful tools and options. <strong>$75 value FREE!</strong></p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Theme Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Plethora of options neatly organized into sections that allow you to build websites without any coding knowledge.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Page Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Powerful page options offer greater control over each page/post, allowing each one to have their own custom settings.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/custom-post-types/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Fusion Builder</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Fusion Builder is an intuitive page builder that provides \"what you see is what you get\" drag and drop page building.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/fusion-builder-2/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Shortcodes</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Over 40 shortcodes along with hundreds of options give you complete control over your content and styling.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/shortcode-central/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">One Click Demo Importer</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Easily import any of our professionally designed demos with a click of a button. No xml files, it\'s a beautiful thing.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/loaded-demo-content/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Responsive Framework</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada is fully responsive and adapts to every screen size. We obsessively test it all so your content looks beautiful.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/lots-of-shortcodes/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Translation &amp; RTL</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Translate Avada into any language, or use one of our dozen included language files.  Avada is also fully RTL compatible.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/translation-ready/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Site Width</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Control the overall site width, main content area, single and dual sidebar widths with ease, using pixels or percentage.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Headers</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada provides advanced header options like no other theme can.  Quickly create the header of your dreams.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/5-header-options/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Menus</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Multiple menu locations, Fusion Mega Menu with widgets, menu positions, customization options and more.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Sliders</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada includes Fusion Slider, Revolution Slider, Layer Slider &amp; Elastic slider for easy slide building. <strong>$40 value FREE</strong>!</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/4-premium-sliders/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Page Layouts</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada offers numerous page layouts and options to fit every situation, making it easy to complete your design vision.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Blog\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Blog</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Choose from 6 different blog layouts and have unlimited blog pages. Oh, and we also include a plethora of blog options.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/blog-options/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Portfolio\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Portfolio</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Choose from 12 different portfolio page templates, dozens of options, unlimited portfolio pages and much more.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/portfolio-options/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada WooCommerce\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">WooCommerce</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada is WooCommerce compatible and offers a unique design. Create &amp; maintain an online shop with ease.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/shop/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"bbPress & Avada\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">bbPress</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Need a forum? No problem, Avada is bbPress compatible and offers a unique design so you can setup a forum with ease.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/forums/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Page Title Bar\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Page Title Bar</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Advanced page title bar allows you unique styles, images, and content globally or per page or post basis.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Footer\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Footer</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Advanced footer options allow for 1-6 column layouts, and a plethora of various customization options.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Sidebars\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Sidebars</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Use single, dual or no sidebars on any page or post you desire. Easily control the sidebar widths and positions.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/unlimited-sidebars/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Widgets\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Widgets</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada offers over 10 built-in custom widgets that can be used in sidebars, footer, sliding bar and mega menu.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/custom-widgets/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Boxed / Wide Layout</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Choose between boxed or wide layout. This can be a global selection for all pages,  or single selection per page or post.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/boxed-wide-versions/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Unlimited Colors\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Unlimited Colors</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Unlimited color choices! Color options are provided for each element using an advanced color selection tool.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/superb-customer-support/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Typography\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Advanced Typography</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada offers advanced typography options that give you full control over the type that displays on your website.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/google-fonts/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Columns 1-6\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">1-6 Column Support</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Utilize columns all the way from 1 to 6 all throughout the site. And use any combination of those sizes.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada iLightbox\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">iLightbox Included</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">The beautiful iLightbox is included with your purchase, making your images look stunning. <strong>$20 value FREE!</strong></p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Backgrounds\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Custom Backgrounds</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Custom image backgrounds can be uploaded to just about any area of the site, and are unlimited.</p>\n[/fusion_text][button link=\"http://avada.theme-fusion.com/advanced-admin-panel/custom-backgrounds/\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada One Page Parallax\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">One Page Parallax</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada allows you to create one page parallax sites and multi-page sites with ease. Choose one or both!</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Parallax Effects\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Parallax Effects</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Everyone loves parallax scrolling effects, they are simply beautiful. Avada has advanced parallax options &amp; controls.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Social Sharing\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Social Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada has a full set of social icons and styling options that allow you to always share your precious content.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada SEO Optimized\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">SEO Optimized</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada is built with care allowing search engines to index the content of your site to achieve higher rankings.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Optimized For Speed\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Made For Speed</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada is optimized for speed. Careful attention to detail and well structured code ensures a smooth experience.</p>\n[/fusion_text][button link=\"http://gtmetrix.com/reports/theme-fusion.com/WvOcQhIF\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.9)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"rgba(000,000,000,.04)\" bordersize=\"10px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Amazing Customer Support\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_core_sm1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"12\" bottom_margin=\"12\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">5 Star Support</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-5\" bottom_margin=\"-5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">We know what it\'s like to need support. Our philosophy is to treat you as we would like to be treated.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"small\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Learn More[/button][/one_third][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"#fff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"features\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]View Additional Features![/button][/fullwidth][modal name=\"features\" title=\"More Avada Features To Love!\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=“0px\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"#a0ce4e\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Modern Sticky Headers[/li_item]\n[li_item icon=\"\"]Custom Logo &amp; Favicon Support[/li_item]\n[li_item icon=\"\"]Video Integration &amp; Backgrounds[/li_item]\n[li_item icon=\"\"]Self Hosted, YouTube &amp; Vimeo[/li_item]\n[li_item icon=\"\"]SoundCloud Audio Support[/li_item]\n[li_item icon=\"\"]Sleek Fading Scrolling Effect[/li_item]\n[li_item icon=\"\"]Smooth Scroll Implemented[/li_item]\n[li_item icon=\"\"]Intuitive Short Code Generator[/li_item]\n[li_item icon=\"\"]Automatic Theme Updates[/li_item]\n[li_item icon=\"\"]Easy Installation &amp; Setup[/li_item]\n[li_item icon=\"\"]Pre-defined Color Skins[/li_item]\n[li_item icon=\"\"]Child Theme Included[/li_item]\n[li_item icon=\"\"]Built with HTML5 and CSS3[/li_item]\n[/checklist][/one_third]\n\n[one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=“0px\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"#a0ce4e\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Light And Dark Color Schemes[/li_item]\n[li_item icon=\"\"]Custom Google Map Styling[/li_item]\n[li_item icon=\"\"]Retina Ready For HD Screens[/li_item]\n[li_item icon=\"\"]Widgetized Sliding Bar[/li_item]\n[li_item icon=\"\"]Unlimited Custom Menus[/li_item]\n[li_item icon=\"\"]Beautiful CSS3 Animations[/li_item]\n[li_item icon=\"\"]Font Awesome Icon Set[/li_item]\n[li_item icon=\"\"]Gravity Forms Style Support[/li_item]\n[li_item icon=\"\"]Contact Form 7 Style Support[/li_item]\n[li_item icon=\"\"]Avada PSD Included <a href=\"http://themeforest.net/item/avada-psd/2665775?ref=ThemeFusion\" target=\"_blank\">$10 FREE</a>[/li_item]\n[li_item icon=\"\"]WordPress Multi-Site (WPMU)[/li_item]\n[li_item icon=\"\"]Action Hooks For Development[/li_item]\n[/checklist][/one_third]\n\n[one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=“0px\" class=\"\" id=\"\"][checklist icon=\"fa-star-o\" iconcolor=\"#a0ce4e\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"]\n[li_item icon=\"\"]Blank Page Templates[/li_item]\n[li_item icon=\"\"]FAQ Custom Post Type[/li_item]\n[li_item icon=\"\"]Contact Page Template[/li_item]\n[li_item icon=\"\"]Side Navigation Page Template[/li_item]\n[li_item icon=\"\"]Updates With New Features[/li_item]\n[li_item icon=\"\"]Docs &amp; Video Tutorials[/li_item]\n[li_item icon=\"\"]Pre-Built Layouts &amp; Demos[/li_item]\n[li_item icon=\"\"]Incredible User Reviews[/li_item]\n[li_item icon=\"\"]Fully Optimized For Speed[/li_item]\n[li_item icon=\"\"]Cross-Browser Compatibility[/li_item]\n[li_item icon=\"\"]Compatible With Popular Plugins[/li_item]\n[li_item icon=\"\"]Compatible with WP 4.1+[/li_item]\n[/checklist][/one_third][/modal][fullwidth background_color=\"#f2f2f2\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Real Support. Real People.</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\">We know what it’s like to need support. Our philosophy is to treat you as we would like to be treated. With a hands on support center, online documentaiton and HD video tutorials, it\'s no wonder that some of our best reviews are about our amazing support.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#f2f2f2\" backgroundcolor=\"#f2f2f2\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"90px\" padding_bottom=\"55px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/support_review-compressor.png\" alt=\"support_review-compressor\" width=\"528\" height=\"664\" class=\"aligncenter size-full wp-image-11452\" />[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"0px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<img class=\"aligncenter size-full wp-image-11447\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/ipads-compressor.jpg\" alt=\"ipads-compressor\" width=\"528\" height=\"343\" />[/fusion_text][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; margin-bottom: 0px;\">We Are Proudly Serving Over</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][counters_box  columns=\"1\" color=\"\" title_size=\"56\" icon_size=\"49\" icon_top=\"\" body_color=\"#d3d3d3\" body_size=\"25\" border_color=\"transparent\" class=\"\" id=\"\"][counter_box value=\"165000\" delimiter=\",\" unit=\"\" unit_pos=\"suffix\" icon=\"fa-heart-o\" direction=\"up\"][/counter_box][/counters_box][separator style_type=\"none\" top_margin=\"-20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Satisfied Customers</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/themeforest-reviews/\" color=\"default\" size=\"xlarge\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"#ffffff|#ffffff\" gradient_hover_colors=\"#f9f9f9|#f9f9f9\" accent_color=\"#bababa\" accent_hover_color=\"#9b9b9b\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Read More Reviews![/button][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/wood_dark_bkgd_bw1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"65px\" padding_bottom=\"30px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][flip_boxes columns=\"3\" class=\"\" id=\"\"][flip_box title_front=\"Support System\" title_back=\"The Golden Rule\" text_front=\"Our support system is the perfect place to receive more detailed instructions on using your theme.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-thumbs-o-up\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]We know everyone needs support. Our philosophy is to treat you as we would like to be treated.\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Learn More[/button][/flip_box][flip_box title_front=\"Extensive Documentation\" title_back=\"Find The Answers\" text_front=\"Online and easily accessible, these are detailed instructions on how to use Avada.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-book\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]This is the place to find just about anything you need to know about using your theme.\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Learn More[/button][/flip_box][flip_box title_front=\"HD Video Tutorials\" title_back=\"Learn By Watching\" text_front=\"Nothing is easier then learning first hand by watching a nicely composed high-definition video.\" background_color_front=\"\" title_front_color=\"\" text_front_color=\"\" background_color_back=\"\" title_back_color=\"\" text_back_color=\"\" border_size=\"1px\" border_color=\"\" border_radius=\"4px\" icon=\"fa-film\" icon_color=\"\" circle=\"yes\" circle_color=\"\" circle_border_color=\"\" icon_rotate=\"\" icon_spin=\"no\" image=\"\" image_width=\"35\" image_height=\"35\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\"]Watch our HD narrated video tutorials to quickly learn how to use various parts of your theme.\n[button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"#97c04c\" gradient_hover_colors=\"#8eb645\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"rgba(255,255,255,.7)\" bevel_color=\"\" border_width=\"0px\" shadow=\"no\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" class=\"\" id=\"\"]Learn More[/button][/flip_box][/flip_boxes][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Reviews From Around The Globe</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\">People everywhere are loving Avada and we thrive off their feedback. With almost 10,000 ratings, Avada maintains an overall 5-Star rating.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#fff\" backgroundcolor=\"#fff\" class=\"\" id=\"\"][fullwidth background_color=\"#444444\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/review_bkgd321-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"105px\" padding_bottom=\"90px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,1)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“The ThemeFusion team provides excellent support, listens to their users &amp; continually works to improve their product.”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Stephen Cronin</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">Envato Quality Team Leader</p>\n[/fusion_text][/one_half][one_fourth last=\"no\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.95)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“The theme you\'ve been waiting for. The theme to end all themes.”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Pigsandbees</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">ThemeForest Customer</p>\n[/fusion_text][/one_fourth][one_fourth last=\"yes\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,1)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“Just bought my 5th and 6th copies of Avada this weekend!!!”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><b>Julie Larson</b></p>\n<p style=\"text-align: center; font-size: 14px;\">ThemeForest Customer</p>\n[/fusion_text][/one_fourth][one_fourth last=\"no\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.95)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“Avada is the Swiss Army Knife of WP Themes. It does Everything!”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Collis Ta’eed, CEO Envato</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">Business Insider Australia 2013</p>\n[/fusion_text][/one_fourth][one_half last=\"no\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,1)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">\"WOW – I dont know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, this theme blows me away.\"</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Marketing Monsters</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">ThemeForest Customer</p>\n[/fusion_text][/one_half][one_fourth last=\"yes\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.95)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“Avada is ThemeForest\'s smash-hit WordPress theme.”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Envato Marketplaces</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">Envato in 2014 Report</p>\n[/fusion_text][/one_fourth][two_third last=\"no\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.95)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“It’s been purchased over 100,000 times and it’s undoubtedly the most popular WordPress theme on the planet.”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>Craig Marolf, VIBE Digital Media</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">Envato Market Blog 2015</p>\n[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"no\" center_content=\"yes\" hide_on_mobile=\"no\" background_color=\"rgba(255,255,255,.95)\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-style: italic; font-size: 21px; line-height: 31px;\">“It’s the best selling WordPress theme of all time for a reason ...”</h2>\n[/fusion_text][fusion_text]<img src=\"http://freereincenter.com/wp-content/uploads/2014/11/review_tf1-compressor.png\" alt=\"review_tf1-compressor\" width=\"88\" height=\"87\" class=\"aligncenter size-full wp-image-11450\" />[/fusion_text][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"150px\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<p style=\"text-align: center; font-size: 18px; margin-bottom: 0px;\"><strong>InstaDesign</strong></p>\n<p style=\"text-align: center; font-size: 14px;\">ThemeForest Customer</p>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Current Trending Features In Avada!</span></h2>\n[/fusion_text][fusion_text]<p style=\"text-align: center; font-size: 18px; line-height: 29px;\"><span style=\"color: #ffffff;\">As you\'ve read above, Avada is packed with useful features. These features make it ridiculously easy for anyone to create stunning web sites. Check out below to find out what features are currently trending in our 145,000+ customer base!</span></p>[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"80px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Trending Features\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_graphic_24.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a46498\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Full Design Integration &amp; Support For WooCommerce.</span></h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\"><span style=\"color: #e2d8e0;\">Avada includes integration for the most popular shop plugin, WooCommerce. Our custom design and unique shop shortcodes will allow your products to shine.  Avada + WooCommerce makes it easy to have an online shop.</span></p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a46498\" backgroundcolor=\"#a46498\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"85px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/woo_commerce_feature-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Fusion Builder Provides Drag &amp; Drop Creativity.</span></h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\"><span style=\"color: #e4efd1;\">Visually drag and drop elements to create unique pages using our intuitive Fusion Builder. We include dozens of builder elements called shortcodes, each with their own amazing customization options. Fusion Builder is not only useful, it’s fun.</span></p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/wood_dark_bkgd_bw1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fusion_builder2-compressor.png\" />[/imageframe][/fullwidth][fullwidth background_color=\"#f2f2f2\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"55px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Flexible Layout Options To Fit Each Situation.</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 18px; line-height: 29px;\">Avada includes multiple layout options for header, pages, blog and portfolio giving you maximum flexibility for design and setup.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#f2f2f2\" backgroundcolor=\"#f2f2f2\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"75px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Large Alternate\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/layouts_white-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"40px\" padding_bottom=\"80px\" padding_left=\"3px\" padding_right=\"3px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 145,000+ Satisfied Avada Users!</span></h1>[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Home','','publish','closed','closed','','home-3','','','2014-11-19 15:14:03','2014-11-19 15:14:03','',0,'http://avada.theme-fusion.comxml/?page_id=10709',0,'page','',0),(10813,1,'2014-11-20 13:40:37','2014-11-20 13:40:37','[tagline_box backgroundcolor=\"#fff\" shadow=\"yes\" shadowopacity=\"0.7\" border=\"1px\" bordercolor=\"#e8e6e6\" highlightposition=\"top\" content_alignment=\"\" link=\"http://themeforest.net/user/ThemeFusion\" linktarget=\"\" modal=\"\" button_size=\"\" button_shape=\"\" button_type=\"\" buttoncolor=\"\" button=\"\" title=\"\" description=\"Font Awesome Icons are incredibly awesome. Avada has them built right into the theme so you can use any of the 300+ icons. Each one comes in 3 sizes and can be used with or without a circle and every one is 100% full vector so they look incredibly sharp and are retina-ready!\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Avada Includes Font Awesome, 300+ Icon Set![/title][fusion_text]<div class=\"clearfix\">[/fusion_text][fontawesome icon=\"fa-tablet\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flask\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-magic\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-book\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-comments-o\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-random\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-umbrella\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-laptop\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-key\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]</div>[/fusion_text][separator style_type=\"none\" top_margin=\"75\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Large Icons[/title][fontawesome icon=\"fa-stethoscope\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-picture-o\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-sitemap\" circle=\"yes\" size=\"large\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Medium Icons[/title][fontawesome icon=\"fa-magnet\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-asterisk\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bar-chart-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-beer\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bell-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bookmark\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-fighter-jet\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud-upload\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-credit-card\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-mobile\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-pencil-square-o\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gavel\" circle=\"yes\" size=\"medium\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Small Icons[/title][fontawesome icon=\"fa-wrench\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-floppy-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-user\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-columns\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-arrow-circle-o-up\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-file\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tint\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-envelope\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-link\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-eye\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-coffee\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tasks\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-square-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tag\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gift\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-spinner\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumb-tack\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-arrows\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-headphones\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-music\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-heart-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-check\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-times\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-pencil\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-minus\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-phone\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-refresh\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-plus\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-font\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-star-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-rocket\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bullseye\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-smile-o\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-code\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-shield\" circle=\"yes\" size=\"small\" iconcolor=\"\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][separator style_type=\"none\" top_margin=\"45\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Use them With or Without Circles[/title][fusion_text]<div class=\"clearfix\">[/fusion_text][fontawesome icon=\"fa-desktop\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-fire\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-film\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-gift\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-check-square-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cog\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-leaf\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-tachometer\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-lock\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-user\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flag\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-bolt\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-smile-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-lightbulb-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-signal\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-truck\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-crosshairs\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-clock-o\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-camera-retro\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-print\" circle=\"no\" size=\"large\" iconcolor=\"#9a9a9a\" circlecolor=\"\" circlebordercolor=\"\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]</div>[/fusion_text][separator style_type=\"none\" top_margin=\"80\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Easily Control The Circle Color, Icon Color &amp; Border Color[/title][fusion_text]<div class=\"clearfix\">[/fusion_text][fontawesome icon=\"fa-tablet\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#a0ce4e\" circlebordercolor=\"#54770f\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-flask\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#398cd2\" circlebordercolor=\"#398cd2\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-magic\" circle=\"yes\" size=\"large\" iconcolor=\"#e27d3a\" circlecolor=\"#ffffff\" circlebordercolor=\"#e27d3a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-cloud\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#b83e2a\" circlebordercolor=\"#b83e2a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-book\" circle=\"yes\" size=\"large\" iconcolor=\"#5c5d5c\" circlecolor=\"#b1b1b1\" circlebordercolor=\"#5c5d5c\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-comments-o\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#96947a\" circlebordercolor=\"#96947a\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-random\" circle=\"yes\" size=\"large\" iconcolor=\"#24469b\" circlecolor=\"#ffffff\" circlebordercolor=\"#24469b\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-thumbs-up\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#6b5694\" circlebordercolor=\"#6b5694\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-umbrella\" circle=\"yes\" size=\"large\" iconcolor=\"#74a37b\" circlecolor=\"#4f7a55\" circlebordercolor=\"#4f7a55\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-laptop\" circle=\"yes\" size=\"large\" iconcolor=\"#ffffff\" circlecolor=\"#98a7c5\" circlebordercolor=\"#98a7c5\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][fontawesome icon=\"fa-key\" circle=\"yes\" size=\"large\" iconcolor=\"#333333\" circlecolor=\"#ffffff\" circlebordercolor=\"#333333\" flip=\"\" rotate=\"\" spin=\"\" animation_type=\"0\" animation_direction=\"\" animation_speed=\"\" alignment=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]You can have unlimited accordions on one page[/li_item][li_item icon=\"\"]Insert images, graphics, or other shortcodes in the text description area[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]You can have unlimited accordion-items within each set[/li_item][li_item icon=\"\"]You can set a specific toggle to be open by default when the page loads[/li_item][/checklist][/one_half]','Font Awesome Icons','','publish','closed','closed','','font-awesome-icons','','','2014-11-20 13:40:37','2014-11-20 13:40:37','',0,'http://avada.theme-fusion.comxml/?page_id=10813',0,'page','',0),(11034,1,'2015-01-19 14:25:57','2015-01-19 14:25:57','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Checklist Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes a useful Checklist Shortcode that will make displaying bullet points attractive and eye-catching. These checklists are stylized checklist with font awesome integration to efficiently display important bullet points to your viewers.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Simple yet Eye-catching Design[/li_item][li_item icon=\"\"]Complete Font Awesome Integration[/li_item][li_item icon=\"\"]Select Individual Icons For Each Item[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Fully Customizable Appearance[/li_item][li_item icon=\"\"]Complete Icon and Background Color Control[/li_item][li_item icon=\"\"]Display Icons in A Circle or Without[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Choose from 3 Different Sizes[/li_item][li_item icon=\"\"]Complete Emphasis on Important Points[/li_item][li_item icon=\"\"]Quick, Simple, and Easy To Use[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Icon And Style Control</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Select any of the font awesome icons and control the icon color and circle color.  One global icon can be used in each list or choose a unique icon per line item. In addition you can choose to show no circle.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"medium\" class=\"\" id=\"\"][li_item icon=\"\"]Global Icon List Item 1[/li_item][li_item icon=\"\"]Global Icon List Item 2[/li_item][li_item icon=\"\"]Global Icon List Item 3[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"medium\" class=\"\" id=\"\"][li_item icon=\"fa-heart\"]Unique Icon List Item 1[/li_item][li_item icon=\"fa-star\"]Unique Icon List Item 2[/li_item][li_item icon=\"fa-music\"]Unique Icon List Item 3[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#a2cc55\" circle=\"no\" circlecolor=\"\" size=\"medium\" class=\"\" id=\"\"][li_item icon=\"\"]No Circle List Item 1[/li_item][li_item icon=\"\"]No Circle List Item 2[/li_item][li_item icon=\"\"]No Circle List Item 3[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Checklist Size</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Choose your checklist icons and content to be small, medium or large.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Small List Item 1[/li_item][li_item icon=\"\"]Small List Item 2[/li_item][li_item icon=\"\"]Small List Item 3[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"medium\" class=\"\" id=\"\"][li_item icon=\"\"]Medium List Item 1[/li_item][li_item icon=\"\"]Medium List Item 2[/li_item][li_item icon=\"\"]Medium List Item 3[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"\" circle=\"\" circlecolor=\"\" size=\"large\" class=\"\" id=\"\"][li_item icon=\"\"]Large Item 1[/li_item][li_item icon=\"\"]Large Item 2[/li_item][li_item icon=\"\"]Large Item 3[/li_item][/checklist][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the checklist shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>icon</strong> - A font awesome icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>iconcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s color for all list items. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>circle</strong> - Can be one of these values: <em>default,</em> <em>yes, </em>or<em> no.</em> Sets if the icon is circular or not. Choose <em>default</em> for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>circlecolor</strong> - Accepts a hexcode <em>( #000000 )</em>. Sets the icon\'s background color for all list items. Leave blank for Theme Option selection.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>size</strong> - Can be one of these values: <em>small, medium, </em>or<em> large. </em>Sets the list item\'s size. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Checklist','','publish','closed','closed','','checklist','','','2015-01-19 14:25:57','2015-01-19 14:25:57','',0,'http://avada.theme-fusion.comxml/?page_id=11034',0,'page','',0),(11177,1,'2015-01-22 14:26:36','2015-01-22 14:26:36','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Section Separator Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada includes an elegant Section Separator shortcode that neatly divides your page into sections. Set the position of the Divider Candy, customize the background color and select a Font Awesome icon to go with it. Further personalize your divider by choosing a color for the icon, as well as it\'s border width and color. This shortcode is a great way to organize your site!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg\" />[/imageframe][/one_third][two_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, conzsectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident.[/fusion_text][/two_third][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"bottom\" icon=\"fa-chevron-down\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#d7d7d7\" backgroundcolor=\"#d7d7d7\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident, sunt in commodo consequat orem ipsum dolor sit amet culpa qui officia deserunt mollit anims sadips ipsums dolores sits unser. Lorem ipsum dolor sit amet, conzsectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. Incididunt ut labore et dolore magna aliqua. Ut enim ad et dolore magna exercitation ullamco lesse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non sadips ipsums proident.[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" border_size=\"0px\" border_color=\"#eaeaea\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Divider Candy</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose between 3 positions for your Divider Candy: Top, Bottom, or Top & Bottom. Choose to customize the background color, border width, and border color, as well.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"50\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"2px\" bordercolor=\"\" backgroundcolor=\"#a2cc55\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"50\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#74badb\" backgroundcolor=\"#74badb\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"50\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"bottom,top\" icon=\"\" icon_color=\"\" bordersize=\"3px\" bordercolor=\"#ca7b25\" backgroundcolor=\"#d5962c\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Icon Customization</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Make your divider even more interesting with an icon. Choose from the abundant supply of icons from Font Awesome, and choose their color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"60px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"50\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"bottom\" icon=\"fa-sort-desc\" icon_color=\"#ffffff\" bordersize=\"1px\" bordercolor=\"#74badb\" backgroundcolor=\"#74badb\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][separator style_type=\"none\" top_margin=\"\" bottom_margin=\"50\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][section_separator divider_candy=\"bottom,top\" icon=\"fa-leaf\" icon_color=\"#a2cc55\" bordersize=\"2px\" bordercolor=\"#92be43\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"50\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit.[/fusion_text][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"30px\" padding_bottom=\"80px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>divider_candy</strong> - Can be one of these values: <em>top and bottom, top, </em>or<em> bottom</em>. Sets the position of the triangle candy.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A font awesome icon value. For example, <em>fa-glass</em>.[/li_item][li_item icon=\"\"]<strong>icon_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the icon\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>bordersize</strong> - Accepts a pixel value that controls the border size. For example, <em>1px</em>.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>bordercolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the border\'s color. Leave blank for Theme Option selection. Consider matching the color value of the fullwidth section you are using it with.[/li_item][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the background\'s color. Leave blank for Theme Option selection. Consider matching the color value of the fullwidth section you are using it with.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"75px\" padding_left=\"40px\" padding_right=\"40px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Section Separator','','publish','closed','closed','','section-separator','','','2015-01-22 14:26:36','2015-01-22 14:26:36','',0,'http://avada.theme-fusion.comxml/?page_id=11177',0,'page','',0),(11188,1,'2015-01-23 01:57:36','2015-01-23 01:57:36','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Table Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Make organizing and presenting important data easy by making use of Avada\'s Table Shortcode. Our Table Shortcode has two styles that you can choose from. Set how many columns and rows you\'d like to display. Make it as small or as large as you\'d like!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<div class=\"table-1\">\n<table width=\"100%\">\n<thead>\n<tr>\n<th align=\"left\">Column 1</th>\n<th align=\"left\">Column 2</th>\n<th align=\"left\">Column 3</th>\n<th align=\"left\">Column 4</th>\n<th align=\"left\">Column 5</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item #1</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td>Item #2</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$2.00</td>\n<td>$ 0.20</td>\n</tr>\n<tr>\n<td>Item #3</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$3.00</td>\n<td>$ 0.30</td>\n</tr>\n<tr>\n<td>Item #4</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$4.00</td>\n<td>$ 0.40</td>\n</tr>\n<tr>\n<td>Item #5</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$5.00</td>\n<td>$ 0.50</td>\n</tr>\n<tr>\n<td><strong>All Items</strong></td>\n<td><strong>Description</strong></td>\n<td><strong>Your Total:</strong></td>\n<td><strong>$10.00</strong></td>\n<td><strong>Tax</strong></td>\n</tr>\n</tbody>\n</table>\n</div>\n[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>2 Table Styles</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose between our two styles for the Table Shortcode. The first style is a simple, and elegant design. The second style, on the other hand, is more modern and would go wonderfully with vibrant sites.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<div class=\"table-1\">\n<table width=\"100%\">\n<thead>\n<tr>\n<th align=\"left\">Column 1</th>\n<th align=\"left\">Column 2</th>\n<th align=\"left\">Column 3</th>\n<th align=\"left\">Column 4</th>\n<th align=\"left\">Column 5</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item #1</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td>Item #2</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$2.00</td>\n<td>$ 0.20</td>\n</tr>\n<tr>\n<td>Item #3</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$3.00</td>\n<td>$ 0.30</td>\n</tr>\n<tr>\n<td>Item #4</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$4.00</td>\n<td>$ 0.40</td>\n</tr>\n<tr>\n<td>Item #5</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$5.00</td>\n<td>$ 0.50</td>\n</tr>\n<tr>\n<td><strong>All Items</strong></td>\n<td><strong>Description</strong></td>\n<td><strong>Your Total:</strong></td>\n<td><strong>$10.00</strong></td>\n<td><strong>Tax</strong></td>\n</tr>\n</tbody>\n</table>\n</div>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]\n<div class=\"table-2\">\n<table width=\"100%\">\n<thead>\n<tr>\n<th align=\"left\">Column 1</th>\n<th align=\"left\">Column 2</th>\n<th align=\"left\">Column 3</th>\n<th align=\"left\">Column 4</th>\n<th align=\"left\">Column 5</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item #1</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td>Item #2</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$2.00</td>\n<td>$ 0.20</td>\n</tr>\n<tr>\n<td>Item #3</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$3.00</td>\n<td>$ 0.30</td>\n</tr>\n<tr>\n<td>Item #4</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$4.00</td>\n<td>$ 0.40</td>\n</tr>\n<tr>\n<td>Item #5</td>\n<td>Description</td>\n<td>Discount:</td>\n<td>$5.00</td>\n<td>$ 0.50</td>\n</tr>\n<tr>\n<td><strong>All Items</strong></td>\n<td><strong>Description</strong></td>\n<td><strong>Your Total:</strong></td>\n<td><strong>$10.00</strong></td>\n<td><strong>Tax</strong></td>\n</tr>\n</tbody>\n</table>\n</div>\n[/fusion_text][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Rows & Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Have as many or as little columns and rows as you\'d like!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<div class=\"table-2\">\n<table width=\"100%\">\n<thead>\n<tr>\n<th align=\"left\">Column 1</th>\n<th align=\"left\">Column 2</th>\n<th align=\"left\">Column 3</th>\n<th align=\"left\">Column 4</th>\n<th align=\"left\">Column 5</th>\n<th align=\"left\">Column 6</th>\n<th align=\"left\">Column 7</th>\n<th align=\"left\">Column 8</th>\n<th align=\"left\">Column 9</th>\n<th align=\"left\">Column 10</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item #1</td>\n<td>Description</td>\n<td>Type</td>\n<td>Color</td>\n<td>Dimensions</td>\n<td>Weight</td>\n<td>Location</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td>Item #2</td>\n<td>Description</td>\n<td>Type</td>\n<td>Color</td>\n<td>Dimensions</td>\n<td>Weight</td>\n<td>Location</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td>Item #3</td>\n<td>Description</td>\n<td>Type</td>\n<td>Color</td>\n<td>Dimensions</td>\n<td>Weight</td>\n<td>Location</td>\n<td>Discount:</td>\n<td>$1.00</td>\n<td>$ 0.10</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td><strong>Your Total:</strong></td>\n<td><strong>$10.00</strong></td>\n<td><strong>Tax</strong></td>\n</tr>\n</tbody>\n</table>\n</div>\n[/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the table shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>class</strong> - Can be one of these values: <em>table-1,</em> or <em>table-2</em>. Sets the table\'s design.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Tables','','publish','closed','closed','','tables','','','2015-01-23 01:57:36','2015-01-23 01:57:36','',0,'http://avada.theme-fusion.comxml/?page_id=11188',0,'page','',0),(11195,1,'2015-01-23 02:34:19','2015-01-23 02:34:19','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Title Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Emphasize your titles and headers efficiently with Avada\'s Title Shortcode. Choose how big you\'d like to display your title, the text color, and it\'s alignment. Choose from several separators and set it\'s color, as well. Avada\'s Title Shortcode is fully compatible with our columns shortcode.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]This Is A Great Title![/title][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Title Customization</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Choose from H1 (biggest) to H6 (smallest) to set your title\'s size. Set your title color however you prefer, as well. Select Left, or Right to align the title to your liking.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][title size=\"1\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #a2cc55;\">This Is A H1 Heading</span>[/title][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #92be43;\">This Is A H2 Heading</span>[/title][title size=\"3\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #74badb;\">This Is A H3 Heading</span>[/title][title size=\"4\" content_align=\"right\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #62a7c9;\">This Is A H4 Heading</span>[/title][title size=\"5\" content_align=\"right\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #d5962c;\">This Is A H5 Heading</span>[/title][title size=\"6\" content_align=\"right\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]<span style=\"color: #ca7b25;\">This Is A H6 Heading</span>[/title][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Separator</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Make your content sections more interesting by adding separators to your titles. Choose from several designs and customize it\'s color to suit your tastes.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single solid\" sep_color=\"#92be43\" class=\"\" id=\"\"]Single Solid[/title][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single dashed\" sep_color=\"#92be43\" class=\"\" id=\"\"]Single Dashed[/title][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single dotted\" sep_color=\"#92be43\" class=\"\" id=\"\"]Single Dotted[/title][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"double solid\" sep_color=\"#62a7c9\" class=\"\" id=\"\"]Double Solid[/title][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"double dashed\" sep_color=\"#62a7c9\" class=\"\" id=\"\"]Double Dashed[/title][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"double dotted\" sep_color=\"#62a7c9\" class=\"\" id=\"\"]Double Dotted[/title][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline solid\" sep_color=\"#ca7b25\" class=\"\" id=\"\"]Underline Solid[/title][/one_third][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline dashed\" sep_color=\"#ca7b25\" class=\"\" id=\"\"]Underline Dashed[/title][/one_third][one_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"underline dotted\" sep_color=\"#ca7b25\" class=\"\" id=\"\"]Underline Dotted[/title][/one_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the title shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>size</strong> - Can be one of these values: <em>1, 2, 3, 4, 5, </em>or<em> 6.</em> These numbers correspond with H1-H6 heading sizes.[/li_item][li_item icon=\"\"]<strong>content_align</strong> - Can be one of these values:<em> left, </em>or<em> right. </em>Sets the heading\'s alignment.[/li_item][li_item icon=\"\"]<strong>style_type</strong> - Can be one of these values: <em>single solid, double solid, underline solid, single dashed, double dashed, underline dashed, single dotted, double dotted, </em>or<em> underline dotted.</em> Sets the Separator style.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>sep_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the separator\'s color. Leave Blank for Thee Option selection.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Titles','','publish','closed','closed','','titles','','','2015-01-23 02:34:19','2015-01-23 02:34:19','',0,'http://avada.theme-fusion.comxml/?page_id=11195',0,'page','',0),(11526,1,'2012-07-31 17:24:55','2012-07-31 17:24:55','Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exercitation.</blockquote>\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.\n','Class Aptent Taciti Soci Ad Litora','','publish','open','open','','class-aptent-taciti-sociosqu-ad-litora','','','2012-07-31 17:24:55','2012-07-31 17:24:55','',0,'http://avada.theme-fusion.com/?p=202',5,'post','',0),(11527,1,'2012-07-31 17:22:22','2012-07-31 17:22:22','Quisque ligula ipsum, euismod a vulputate a, ultricies et elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.','Nunc Tincidunt Elit Cursus','','publish','open','open','','nunc-tincidunt-elit-non-cursus','','','2012-07-31 17:22:22','2012-07-31 17:22:22','',0,'http://avada.theme-fusion.com/?p=207',4,'post','',0),(11528,1,'2012-07-31 17:23:05','2012-07-31 17:23:05','Quisque ligula ipsum, euismod aturesit vulputate a, ultricies et elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.','Proin Sodales Quam Nec Sollicit','','publish','open','open','','proin-sodales-quam-nec-ante-sollicits','','','2012-07-31 17:23:05','2012-07-31 17:23:05','',0,'http://avada.theme-fusion.com/?p=209',3,'post','',0),(211,1,'2012-07-31 17:23:43','2012-07-31 17:23:43','Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.','Nullam Vitae Nibh Un Odiosters','','publish','open','open','','nullam-vitae-nibh-un-odio','','','2012-07-31 17:23:43','2012-07-31 17:23:43','',0,'http://avada.theme-fusion.com/?p=211',2,'post','',0),(11529,1,'2012-07-31 17:26:20','2012-07-31 17:26:20','Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.','Praesent Et Urna Turpis','','publish','open','open','','praesent-et-urna-turpis-sadips','','','2012-07-31 17:26:20','2012-07-31 17:26:20','',0,'http://avada.theme-fusion.com/?p=213',0,'post','',0),(11530,1,'2012-07-31 17:25:18','2012-07-31 17:25:18','Quisque ligulas ipsum, euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae.\n\nVestibulum sodales ante a purus volutpat euismod. Proin sodales quam nec ante sollicitudin lacinia. Ut egestas bibendum tempor. Morbi non nibh sit amet ligula blandit ullamcorper in nec risus. Pellentesque fringilla diam faucibus tortor bibendum vulputate. Etiam turpis urna, rhoncus et mattis ut, dapibus eu nunc. Nunc sed aliquet nisi. Nullam ut magna non lacus adipiscing volutpat. Aenean odio mauris, consectetur quis consequat quis, blandit a nunc. Sed orci erat, placerat ac interdum ut, suscipit eu augue. Nunc vitae mi tortor. Ut vel justo quis lectus elementum ullamcorper volutpat vel libero.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exercitation.</blockquote>\nDonec volutpat nibh sit amet libero ornare non laoreet arcu luctus. Donec id arcu quis mauris euismod placerat sit amet ut metus. Sed imperdiet fringilla sem eget euismod. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque adipiscing, neque ut pulvinar tincidunt, est sem euismod odio, eu ullamcorper turpis nisl sit amet velit. Nullam vitae nibh odio, non scelerisque nibh. Vestibulum ut est augue, in varius purus.\n\nProin dictum lobortis justo at pretium. Nunc malesuada ante sit amet purus ornare pulvinar. Donec suscipit dignissim ipsum at euismod. Curabitur malesuada lorem sed metus adipiscing in vehicula quam commodo. Sed porttitor elementum elementum. Proin eu ligula eget leo consectetur sodales et non mauris. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\nNunc tincidunt, elit non cursus euismod, lacus augue ornare metus, egestas imperdiet nulla nisl quis mauris. Suspendisse a pharetra urna. Morbi dui lectus, pharetra nec elementum eget, vulputate ut nisi. Aliquam accumsan, nulla sed feugiat vehicula, lacus justo semper libero, quis porttitor turpis odio sit amet ligula. Duis dapibus fermentum orci, nec malesuada libero vehicula ut. Integer sodales, urna eget interdum eleifend, nulla nibh laoreet nisl, quis dignissim mauris dolor eget mi. Donec at mauris enim. Duis nisi tellus, adipiscing a convallis quis, tristique vitae risus. Nullam molestie gravida lobortis. Proin ut nibh quis felis auctor ornare. Cras ultricies, nibh at mollis faucibus, justo eros porttitor mi, quis auctor lectus arcu sit amet nunc. Vivamus gravida vehicula arcu, vitae vulputate augue lacinia faucibus.\n\nUt porttitor euismod cursus. Mauris suscipit, turpis ut dapibus rhoncus, odio erat egestas orci, in sollicitudin enim erat id est. Sed auctor gravida arcu, nec fringilla orci aliquet ut. Nullam eu pretium purus. Maecenas fermentum posuere sem vel posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ornare convallis lectus a faucibus. Praesent et urna turpis. Fusce tincidunt augue in velit tincidunt sed tempor felis porta. Nunc sodales, metus ut vestibulum ornare, est magna laoreet lectus, ut adipiscing massa odio sed turpis. In nec lorem porttitor urna consequat sagittis. Nullam eget elit ante. Pellentesque justo urna, semper nec faucibus sit amet, aliquam at mi. Maecenas eget diam nec mi dignissim pharetra.\n','Donec At Mauris Enims','','publish','open','open','','donec-at-mauris-enim-duis-nisi-tellus','','','2012-07-31 17:25:18','2012-07-31 17:25:18','',0,'http://avada.theme-fusion.com/?p=215',1,'post','',0),(4112,1,'2013-10-16 15:37:47','2013-10-16 15:37:47','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 1','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-1','','','2013-10-16 15:37:47','2013-10-16 15:37:47','',0,'http://avada.theme-fusion.comxml/?post_type=product&amp;p=4112',0,'product','',0),(4114,1,'2013-10-16 15:46:22','2013-10-16 15:46:22','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra. Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 2','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-2','','','2013-10-16 15:46:22','2013-10-16 15:46:22','',0,'http://avada.theme-fusion.comxml/product/product-2/',0,'product','',0),(4115,1,'2013-10-16 15:47:29','2013-10-16 15:47:29','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 3','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-3','','','2013-10-16 15:47:29','2013-10-16 15:47:29','',0,'http://avada.theme-fusion.comxml/product/product-3/',0,'product','',0),(4116,1,'2013-10-16 15:47:52','2013-10-16 15:47:52','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 4','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-4','','','2013-10-16 15:47:52','2013-10-16 15:47:52','',0,'http://avada.theme-fusion.comxml/product/product-4/',0,'product','',0),(4117,1,'2013-10-16 15:48:15','2013-10-16 15:48:15','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 5','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-5','','','2013-10-16 15:48:15','2013-10-16 15:48:15','',0,'http://avada.theme-fusion.comxml/product/product-5/',0,'product','',0),(11204,1,'2015-01-23 05:11:31','2015-01-23 05:11:31','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">Sharing Box Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada has included a quick Sharing Box Shortcode so you can get your message out to the world! Choose an appropriate tagline that complements your blog, and customize it by choosing the tagline color as well as the sharing box\'s background color. This shortcode allows you to personalize your icons, personally set the title and the description that will appear when it\'s shared, and specifically allows you to upload a custom image for Pinterest.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][sharing tagline=\"Share This Story, Choose Your Platform!\" tagline_color=\"\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"\" icons_boxed_radius=\"4px\" box_colors=\"\" icon_colors=\"\" tooltip_placement=\"\" backgroundcolor=\"\" class=\"\" id=\"\"][/sharing][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Tagline & Content Customization</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Create your own custom tagline and content to really let viewers know what your blog is all about. Click one of the social icons to see how it works! Tweak the tagline color as well as the sharing box\'s background color.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][sharing tagline=\"This Is Your Custom Tagline!\" tagline_color=\"#62a7c9\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" box_colors=\"\" icon_colors=\"#62a7c9\" tooltip_placement=\"\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][/sharing][sharing tagline=\"This Is Your Custom Tagline!\" tagline_color=\"#ffffff\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"\" icons_boxed_radius=\"4px\" box_colors=\"#92be43\" icon_colors=\"#ffffff\" tooltip_placement=\"\" backgroundcolor=\"#a2cc55\" class=\"\" id=\"\"][/sharing][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Social Icons Customization</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Personalize your social media icons by setting their color, and whether or not they\'re displayed with a background. Increase the radius of the box to have circular icons. You can also determine the tooltip\'s position, whether it\'s top, bottom, left, or right.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][sharing tagline=\"Customize Your Icons\" tagline_color=\"\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"\" icons_boxed_radius=\"4px\" box_colors=\"\" icon_colors=\"#3B5998|#4298ed|#bf0018|#27354b|#d23123|#0064a9|#000000|#3b6094|#b7b7b7\" tooltip_placement=\"bottom\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][/sharing][sharing tagline=\"Customize Your Icons\" tagline_color=\"\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"yes\" icons_boxed_radius=\"0px\" box_colors=\"#3B5998|#4298ed|#bf0018|#27354b|#d23123|#0064a9|#000000|#3b6094|#b7b7b7\" icon_colors=\"#ffffff\" tooltip_placement=\"left\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][/sharing][sharing tagline=\"Customize Your Icons\" tagline_color=\"\" title=\"Sample Title\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" description=\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat orem ipsum dolor sit amet, consectetur adipisicing elit. \" pinterest_image=\"\" icons_boxed=\"yes\" icons_boxed_radius=\"100px\" box_colors=\"#3B5998|#4298ed|#bf0018|#27354b|#d23123|#0064a9|#000000|#3b6094|#b7b7b7\" icon_colors=\"#ffffff\" tooltip_placement=\"Right\" backgroundcolor=\"#ffffff\" class=\"\" id=\"\"][/sharing][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the sharing shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>tagline</strong> - The <em>custom tagline text.</em> For example, <em>Share This Story, Choose Your Platform!</em>[/li_item][li_item icon=\"\"]<strong>tagline_color</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the tagline\'s color. Leave blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>title</strong> - The <em>custom title</em> of the blog post you want to share. For example, <em>My Blog Post</em>.[/li_item][li_item icon=\"\"]<strong>link</strong> - The actual URL path that will be shared on the chosen platform. For example, <em>http://www.example.com/</em>.[/li_item][li_item icon=\"\"]<strong>description</strong> - The <em>custom description text</em> you want to share on those platforms.[/li_item][li_item icon=\"\"]<strong>pinterest_image</strong> - The URL path of the image you want to share on Pinterest, starting with <em>http://</em> and usually ending on<em> .jpg, .png </em>or<em> .gif.</em>[/li_item][li_item icon=\"\"]<strong>icons_boxed</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets the icons to be boxed or not.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>icons_boxed_radius</strong> - Accepts a pixel value that sets the box\'s radius. For example, <em>4px.</em>[/li_item][li_item icon=\"\"]<strong>box_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon box\'s colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>icon_colors</strong> - Accepts a hexcode <em>( #000000 ).</em> Sets the social icon\'s colors. Use one value for all, or unique colors for each. Separate unique colors with a vertical line. For example, <em>#AA0000|#00AA00|#0000AA</em>. Leave Blank for Theme Options selection.[/li_item][li_item icon=\"\"]<strong>tooltip_placement</strong> - Can be one of these values: <em>default, left, right, top, </em>or<em> bottom.</em> Sets the Social Icon Tooltip position.[/li_item][li_item icon=\"\"]<strong>backgroundcolor</strong> - Accepts a hexcode <em>( #000000 )</em> or RGBA values <em>( rgba(0,0,0,0) )</em>. Sets the background\'s color. Leave Blank for Theme Option selection.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Sharing Box','','publish','closed','closed','','sharing-box','','','2015-01-23 05:11:31','2015-01-23 05:11:31','',0,'http://avada.theme-fusion.comxml/?page_id=11204',0,'page','',0),(11229,1,'2015-01-25 01:49:31','2015-01-25 01:49:31','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Premium Slider Shortcodes</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada makes it so easy to build beautiful, and unique pages with all our included tools, especially with the Premium Sliders. Be creative with the Layer Slider, Revolution Slider and Fusion Slider. All these sliders are 100% fully responsive, looks beautiful in fixed or full width, and includes some pretty amazing options. </p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusionslider name=\"avada-home\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Revolution Slider</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Avada includes the popular Revolution Slider by ThemePunch. This slider is a beautifully animated slider that is 100% responsive and has some amazing options. The Revolution Slider\'s wide array of options include customizing the slider layout, determining the source of slides, resolution, grid size, and so much more!</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][rev_slider Avada_Page_Slider][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Layer Slider</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada also includes the stunning Layer Slider by Kreatura. This silder is 100% responsive and includes a very flexible set of options such as setting the thumbnails, customizing the animation speed and transitions, and so much more!</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][layerslider id=\"1\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Fusion Slider</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Avada\'s very own Fusion Slider is a beautifully simplistic slider with amazing flexibility that produces stunning results. This responsive slider gives you full control of the slider width and height so you can easily create fixed, full width or full screen sliders. Create image and video slides with support for self hosted videos, youtube and vimeo. Add title and subhead text along with buttons, and control various styles and settings.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusionslider name=\"final_fixed_width\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Fully Responsive & Compatible with Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Use any of the three premium sliders above in a boxed, full width, or even full screen layout. Experiment with our columns shortcodes and incorporate these beautiful sliders anywhere in your website.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][tagline_box backgroundcolor=\"\" shadow=\"no\" shadowopacity=\"0.1\" border=\"1px\" bordercolor=\"\" highlightposition=\"top\" content_alignment=\"left\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" modal=\"\" button_size=\"large\" button_shape=\"square\" button_type=\"flat\" buttoncolor=\"\" button=\"Purchase Now\" title=\"Avada makes is easy to build beautiful, unique pages with the included tools\" description=\"Our theme options, page options, shortcodes and more give you the power you need to create.\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][/tagline_box][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Avada?[/title][fusion_text]\n<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section & blog section</li>\n	<li>We offer free support because we care about your site as much as you do.</li>\n	<li>Avada will constantly be updated with brand new features and additions</li>\n	<li>Advanced Theme Options makes it easy for you to customize your settings</li>\n</ul>\n[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Use The Sliders Anywhere With Shortcodes[/title][rev_slider Avada_Small_Slider][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with these premium slider shortcodes is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Revolution Slider[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>Slider_Name</strong> - Replace this line with the <em>unique slider name</em> of the Revolution Slider you\'ve created.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Layer Slider[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>id</strong> - Replace this line with the <em>unique slider name</em> of the Revolution Slider you\'ve created.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"single\" sep_color=\"\" class=\"\" id=\"\"]Fusion Slider[/title][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>name</strong> - Can be one of these values: <em>final_fixed_width, final_full_screen, final_fill_width, avada_home, avada_small, </em>or<em> self_hosted_video. </em>This is the shortcode name that can be used in the post content area.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Premium Sliders','','publish','closed','closed','','premium-sliders','','','2015-01-25 01:49:31','2015-01-25 01:49:31','',0,'http://avada.theme-fusion.comxml/?page_id=11229',0,'page','',0),(11234,1,'2015-01-25 02:36:40','2015-01-25 02:36:40','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">Slider Shortcode</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada\'s Slider Shortcode is ideal for users who prefer a simpler, and more basic slider to showcase their website’s images. Although the options and settings to customize the slider is limited, it’s very quick and easy to upload image or video slides.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/05/blog_2.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/05/blog_1.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2014/06/two_third_2.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2014/06/two_third_1.jpg[/slide][/slider][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Unlimited Slides</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Upload as much images or videos as you\'d like! Insert an image, a Youtube video, or a Vimeo video. Set the images or videos to link to other pages, or to open in a lightbox.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" lightbox=\"no\"]http://freereincenter.com/wp-content/uploads/2013/02/logo2x.png[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg[/slide][slide type=\"video\"][youtube id=\"dSn72h_6I9Q\" width=\"940\" height=\"600\"][/slide][slide type=\"video\"][vimeo id=\"32987274\" width=\"940\" height=\"600\"][/slide][/slider][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Use the Slider Shortcode with our columns shortcode to insert it anywhere on the page.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"double\" sep_color=\"\" class=\"\" id=\"\"]Why Choose Avada?[/title][fusion_text]<ul class=\"arrow\">\n	<li>Fully responsive so your content will always look good on any screen size</li>\n	<li>Awesome sliders give you the opportunity to showcase important content</li>\n	<li>Unlimited color options with a backed color picker, including the gradients</li>\n	<li>Multiple layout options for home pages, portfolio section & blog section</li>\n	<li>We offer free support because we care about your site as much as you do.</li>\n	<li>Avada will constantly be updated with brand new features and additions</li>\n	<li>Advanced Theme Options makes it easy for you to customize your settings</li>\n</ul>[/fusion_text][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][slider width=\"100%\" height=\"100%\" class=\"\" id=\"\"][slide type=\"image\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" lightbox=\"no\"]http://freereincenter.com/wp-content/uploads/2013/02/logo2x.png[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/10/portfolio_6.jpg[/slide][slide type=\"image\" link=\"\" linktarget=\"_self\" lightbox=\"yes\"]http://freereincenter.com/wp-content/uploads/2013/05/portfolio_5.jpg[/slide][slide type=\"video\"][youtube id=\"dSn72h_6I9Q\" width=\"940\" height=\"600\"][/slide][slide type=\"video\"][vimeo id=\"32987274\" width=\"940\" height=\"600\"][/slide][/slider][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the slider shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>width</strong> - Accepts a pixel value or a percentage to set the width. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>height</strong> - Accepts a pixel value or a percentage to set the height. For example, <em>1px, </em>or<em> 50%</em>. Leave Blank for full width.[/li_item][li_item icon=\"\"]<strong>type</strong> - Can be one of these values: <em>video, or image. </em>Sets the type of slide.[/li_item][li_item icon=\"\"]<strong>link</strong> - The URL path where the image links to. For example, <em>http://www.example.com/</em>[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>linktarget</strong> - Can be one of these values: <em>_blank</em> for new window, or <em>_self</em> for same window.[/li_item][li_item icon=\"\"]<strong>lightbox</strong> - Can be one of these values: <em>yes, </em>or<em> no. </em>Sets the image to be displayed in a lightbox or not.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Slider Shortcode','','publish','closed','closed','','slider-shortcode','','','2015-01-25 02:36:40','2015-01-25 02:36:40','',0,'http://avada.theme-fusion.comxml/?page_id=11234',0,'page','',0),(11676,1,'2016-08-29 20:20:03','2016-08-29 20:20:03','','portfolio_1.jpg','','inherit','closed','closed','','portfolio-1-jpg','','','2016-08-29 20:20:03','2016-08-29 20:20:03','',0,'http://freereincenter.com/wp-content/uploads/revslider/captions_tall/portfolio_1.jpg',0,'attachment','image/jpeg',0),(11245,1,'2015-01-25 08:29:22','2015-01-25 08:29:22','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">WooCommerce Fetured Products Slider</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">This shortcode is perfect for displaying your featured products attractively. It\'s very simple to use, as well. Simply insert the shortcode and it does all the work for you!</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][featured_products_slider class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>No Setup Required</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Insert the shortcode and your featured products will be pulled automatically! Featured products are products that you have \"Starred\" in the WooCommerce settings. This shortcode also works wonderfully with our columns shortcode.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][featured_products_slider class=\"\" id=\"\"][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Featured Product Slider[/title][fusion_text]This is the WooCommerce Featured product slide. A beautiful design with nice large product images that will surely grab the viewers attention. Fully responsive and looks fantastic in any sized column or mobile device.[/fusion_text][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Beautiful design with large product images[/li_item][li_item icon=\"\"]Automatically pulls your Featured products[/li_item][li_item icon=\"\"]Use the shortcode in any sized column[/li_item][li_item icon=\"\"]Full responsive and looks great on mobile devices[/li_item][li_item icon=\"\"]Unlimited use per page[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the Woo featured shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','WooCommerce Featured','','publish','closed','closed','','woocommerce-featured','','','2015-01-25 08:29:22','2015-01-25 08:29:22','',0,'http://avada.theme-fusion.comxml/?page_id=11245',0,'page','',0),(11251,1,'2015-01-25 08:32:50','2015-01-25 08:32:50','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<h1 style=\"margin-top: 0px;\">WooCommerce Products Carousel</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">Avada comes with a WooCommerce product carousel slider that can be insterted on any page and automatically pull your product posts. Specify only one category to show, or a combination of them, or show all. Show or hide the rollover elements like categories, price and buttons.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][products_slider picture_size=\"fixed\" cat_slug=\"\" number_posts=\"5\" show_cats=\"no\" show_price=\"no\" show_buttons=\"no\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>Customization Settings</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Specify which categories to include or exclude in the carousel. Also determine the size of the images, number of products to be displayed, and to show or hide different rollover elements.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][products_slider picture_size=\"fixed\" cat_slug=\"category-1\" number_posts=\"8\" show_cats=\"yes\" show_price=\"yes\" show_buttons=\"yes\" class=\"\" id=\"\"][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Use With Columns</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Use this shortcode with our columns shortcode to place it anywhere on your website. This shortcode is 100% responsive and will look good on any screen resolution.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][fusion_text]<h3>Use Carousel With Columns</h3>\nThe recent work carousel can be used inside of column shortcodes to control the size. By default it will display all categories of portfolio posts. Users can specify that only a specific category is displayed instead of all categories, which gives you full control over what posts are seen by viewers.[/fusion_text][/one_third][two_third last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][products_slider picture_size=\"auto\" cat_slug=\"\" number_posts=\"5\" show_cats=\"no\" show_price=\"yes\" show_buttons=\"no\" class=\"\" id=\"\"][/two_third][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the Woo carousel shortcode is listed below.</p>[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>picture_size</strong> - Can be one of these values: <em>fixed, </em>or<em> auto.</em> Sets the size of your image to be fixed or not.[/li_item][li_item icon=\"\"]<strong>cat_slug</strong> - The <em>id</em> of the category from which you want the posts to be displayed. Use a <em>comma</em> for multiple categories.[/li_item][li_item icon=\"\"]<strong>number_posts</strong> - Accepts a numerical value to show how many posts are displayed. For example, <em>7</em>.[/li_item][li_item icon=\"\"]<strong>show_cats</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the categories.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>show_price</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the rollover price.[/li_item][li_item icon=\"\"]<strong>show_buttons</strong> - Can be one of these values: <em>yes, </em>or<em> no</em>. This will show or hide the rollover buttons.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]WooCommerce Product Carousel[/title][products_slider picture_size=\"auto\" cat_slug=\"\" number_posts=\"7\" show_cats=\"no\" show_price=\"yes\" show_buttons=\"no\" class=\"\" id=\"\"][separator style_type=\"single\" top_margin=\"30\" bottom_margin=\"30\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"][title size=\"2\" content_align=\"left\" style_type=\"\" sep_color=\"\" class=\"\" id=\"\"]Features and Customizations[/title][one_half last=\"no\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Unlimited use and items per carousel and per page[/li_item][li_item icon=\"\"]Specify a specific category to display in recent work carousel[/li_item][li_item icon=\"\"]Specify the number of posts that will be displayed[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" class=\"\" id=\"\"][checklist icon=\"fa-check-square-o\" iconcolor=\"\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]Show/hide categories, price and buttons on rollover[/li_item][li_item icon=\"\"]Use with column shortcodes to control the width[/li_item][li_item icon=\"\"]Set the link target attribute to control how the link opens[/li_item][/checklist][/one_half]','WooCommerce Product Carousel','','publish','closed','closed','','woocommerce-product-carousel','','','2015-01-25 08:32:50','2015-01-25 08:32:50','',0,'http://avada.theme-fusion.comxml/?page_id=11251',0,'page','',0),(11255,1,'2015-01-25 08:43:26','2015-01-25 08:43:26','[fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"40px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"margin-top: 0px;\">WooCommerce Default Shortcodes</h1>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; margin-top: -15px; text-align: left;\">WooCommerce includes several built-in shortcodes for you to display your products. With Avada\'s custom styles, they really help your products stand out. This is the Recent Products shortcode that allows you to insert your products by category on any page. Adjust column size, items per page, order by format.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][recent_products per_page=\"4\" columns=\"4\" orderby=\"date\" order=\"desc\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"yes\" bordersize=\"0px\" bordercolor=\"#eaeaea\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>WooCommerce Recent Products</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Display products you\'ve recently added to WooCommerce. This shortcode automatically pulls your products for you. Exclude or include categories, specify how many items will be displayed, and change the order by format and type. This shortcode is 100% fully responsive.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][recent_products per_page=\"6\" columns=\"3\" orderby=\"date\" order=\"desc\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px; text-align: left;\"><span style=\"color: #333333;\"><strong>WooCommerce Featured Products</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px; text-align: left;\">Display featured products you\'ve marked as starred in the WooCommerce settings.This shortcode automatically pulls your products for you. Exclude or include categories, specify how many items will be displayed, and change the order by format and type. This shortcode is 100% fully responsive.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][featured_products per_page=\"8\" columns=\"4\" orderby=\"date\" order=\"desc\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>WooCommerce Product Categories</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Display all or some of your categories to your viewers. This shortcode allows you to display a category box and a number that shows how many products are in that category.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][product_categories number=\"\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>WooCommerce Products By SKU/ID</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">This shortcode allows you to display products based on SKU or ID, and it can be used in any size column and the size will adapt.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][products skus=\"003,005,007,004\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>WooCommerce Products By Category</strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">This is the Products By Category shortcode that allows you to insert your products by category on any page. Adjust column size, items per page, order by format.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"60px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text][product_category category=\"category-1\" per_page=\"2\" columns=\"2\" orderby=\"date\" order=\"desc\"][/fusion_text][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"0px\" paddingbottom=\"0px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][one_full last=\"yes\" spacing=\"yes\" background_color=\"#f6f6f6\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"40px\" class=\"\" id=\"\"][fusion_text]\n<p style=\"font-size: 18px; margin-bottom: 12px;\"><span style=\"color: #333333;\"><strong>Complete Set of Options </strong></span></p>\n<p style=\"font-size: 17px; line-height: 27px; margin-bottom: 0px;\">Every option and description included with the alert shortcode is listed below.</p>\n[/fusion_text][/one_full][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"0px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"30px\" paddingbottom=\"80px\" paddingleft=\"0px\" paddingright=\"0px\" menu_anchor=\"\" equal_height_columns=\"yes\" hundred_percent=\"no\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>type</strong> - Can be one of these values: <em>general, error, success, notice, </em>or<em> custom.</em> Sets the type of alert message.[/li_item][li_item icon=\"\"]<strong>accent_color</strong> - <em>Custom </em>setting only. Accepts a hexcode <em>( #000000 ). </em> Sets the border, text and icon color.[/li_item][li_item icon=\"\"]<strong>background_color</strong> - <em>Custom</em> setting only. Accept a hexcode <em>( #000000 ). </em>Sets the background color.[/li_item][li_item icon=\"\"]<strong>border_size</strong> - <em>Custom </em>setting only. Accepts a pixel value. For example, <em>1px.</em> Sets border width.[/li_item][li_item icon=\"\"]<strong>icon</strong> - A <a href=\"http://fortawesome.github.io/Font-Awesome/icons/\" target=\"_blank\">font awesome</a> icon value. For example, <em>fa-glass.</em>[/li_item][li_item icon=\"\"]<strong>box_shadow</strong> - Can be one of these values: <em>yes,</em> or <em>no</em>. This will show or hide a box shadow below the alert box.[/li_item][/checklist][/one_half][one_half last=\"yes\" spacing=\"yes\" background_color=\"#f8f8f8\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"1px\" border_color=\"#eaeaea\" border_style=\"solid\" padding=\"30px\" class=\"\" id=\"\"][checklist icon=\"fa-check\" iconcolor=\"#333333\" circle=\"no\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]<strong>animation_type</strong> - Can be one of these values: <em>none, </em><em>bounce, fade, flash, shake, </em>or<em> slide.</em> Sets the animation to use on the shortcode.[/li_item][li_item icon=\"\"]<strong>animation_direction</strong> - Can be one of these values: <em>down, right, left, </em>or up. Sets the incoming direction for the animation.<strong>\n</strong>[/li_item][li_item icon=\"\"]<strong>animation_speed</strong> - Accepts a numerical value from <em>.1</em>, which is the slowest, to <em>1</em>, which is the fastest.[/li_item][li_item icon=\"\"]<strong>class</strong> - Add a <em>custom class</em> to the wrapping HTML element for further css customization.[/li_item][li_item icon=\"\"]<strong>id</strong> - Add a <em>custom id</em> to the wrapping HTML element for further css customization.[/li_item][/checklist][/one_half][/fullwidth][fullwidth backgroundcolor=\"\" backgroundimage=\"http://freereincenter.com/wp-content/uploads/2014/11/home_slider.jpg\" backgroundrepeat=\"no-repeat\" backgroundposition=\"left top\" backgroundattachment=\"fixed\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" bordersize=\"1px\" bordercolor=\"\" borderstyle=\"solid\" paddingtop=\"35px\" paddingbottom=\"75px\" paddingleft=\"40px\" paddingright=\"40px\" menu_anchor=\"\" equal_height_columns=\"no\" hundred_percent=\"no\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 100,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\" type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" shadow=\"no\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','WooCommerce Default','','publish','closed','closed','','woocommerce-default','','','2015-01-25 08:43:26','2015-01-25 08:43:26','',0,'http://avada.theme-fusion.comxml/?page_id=11255',0,'page','',0),(11297,1,'2015-04-12 09:35:11','2015-04-12 09:35:11','[fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"40px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">We receive new ratings and feedback from our Avada customers all over the world! They praise Avada and our amazing support team, the Avada Avengers! We thrive on this and would love to share this customer feedback with you. Check below to read our most recent reviews directly from our Themeforest review page!</span></h2>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"100px\" padding_bottom=\"20px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_tabs design=\"clean\" layout=\"horizontal\" justified=\"yes\" backgroundcolor=\"\" inactivecolor=\"\" bordercolor=\"\" class=\"\" id=\"\"][fusion_tab title=\"March 2015\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_2.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][fusion_tab title=\"February 2015\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_1.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][fusion_tab title=\"January 2015\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_2.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][fusion_tab title=\"December 2014\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_1.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][fusion_tab title=\"November 2014\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_2.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][fusion_tab title=\"Previous Reviews\" icon=\"\"]<p>[separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" icon=\"\" width=\"\" class=\"\" id=\"\"]</p>\n<p><img class=\"aligncenter size-full wp-image-10699\" src=\"http://freereincenter.com/wp-content/uploads/2013/05/blog_1.jpg\" alt=\"blog_2\" width=\"700\" height=\"500\" /></a></p>\n[/fusion_tab][/fusion_tabs][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/page_bkgd8.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"75px\" padding_left=\"40px\" padding_right=\"40px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Join The 126,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','ThemeForest Reviews','','publish','closed','closed','','themeforest-reviews','','','2015-04-12 09:35:11','2015-04-12 09:35:11','',0,'http://avada.theme-fusion.comxml/?page_id=11297',0,'page','',0),(11304,1,'2015-04-12 09:40:47','2015-04-12 09:40:47','[fullwidth background_color=\"#313437\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"up\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat-x\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e5e5\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 90px; line-height: 100px; margin-bottom: 10px;\"><span style=\"color: #ffffff;\">The Power of Avada</span></h1>\n<h2 style=\"text-align: center; font-size: 33px; line-height: 42px;\"><span style=\"color: #ffffff;\">Gives You Freedom To Build Anything</span></h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"2\" bottom_margin=\"2\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"300px\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(255,255,255,.15)|rgba(255,255,255,.15)\" accent_color=\"rgba(255,255,255,.75)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][separator style_type=\"none\" top_margin=\"25\" bottom_margin=\"30\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"300px\" alignment=\"center\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2015/04/demos_cropped1-compressor.png\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"75px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\">Avada Is More Than A Theme, It’s A Powerful Design Tool</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 17px; line-height: 30px;\">Avada gives you the ability to build virtually any design style.  These professionally designed demos were built entirely with our options and require no custom coding.  <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Every demo is included for free</a></strong> and can be easily <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">imported with one click</a></strong>.  Avada Classic demo is the main demo that showcases the majority of the features that come with Avada.  <strong><a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" target=\"_blank\">Any feature on the Classic Demo can be combined on any other demo!</a></strong>  Start with one of our demos or use our powerful options to easily build your own unique design.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"8\" bottom_margin=\"8\" sep_color=\"rgba(255,255,255,.7)\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"300px\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_intro_img2-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Avada Allows You To Build Any Design. Unleash Your Creativity.</span></h2>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"125px\" padding_bottom=\"1%\" padding_left=\"10%\" padding_right=\"10%\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.075)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Classic Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/classic-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Classic</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">The original multi-purpose demo that showcases most of our features &amp; layouts. Anything seen here can be used on any other demo.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Classic[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.075)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/agency\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Agency\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/agency22-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Agency</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Agency is modern and perfect for creative agencies, designers and other professional services. Featuring a side header &amp; beautiful graphics.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/agency\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Agency[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/cafe/\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Cafe Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/cafe2-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Cafe</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Rich and sophisticated, yet still down to earth. Avada Cafe is absolutely stunning and and makes you want a yummy sandwich.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/cafe/\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Cafe[/button][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"1%\" padding_left=\"10%\" padding_right=\"10%\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"#ffffff\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/travel\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Travel Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/travel-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Travel</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">A beautifully clean Travel demo with stunning imagery and a clear message. Avada Travel is sure to be a hit.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/travel\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Travel[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"#ffffff\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/fashion\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Fashion Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/fashion1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Fashion</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Fashion is sleek and modern with a stylish edge that you may not of thought possible with Avada.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/fashion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Fashion[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/app\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Mobile App Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/app1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada App</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">This is a one page site showing off the beauty of a parallax scroll and simplicity of a landing page.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/app\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada App[/button][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"1%\" padding_left=\"10%\" padding_right=\"10%\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/law\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Law Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/law-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Law</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Law is a new demo geared towards Lawyers. It is currently in the works and will release in a future update.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Law[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/hosting\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Hosting Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/hosting-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Hosting</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Hosting is a new demo geared towards web hosting servcies. It is currently in the works and will release in a future update.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Hosting[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/architecture\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Architecture Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/architecture1-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Architecture</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Architecture is a new demo geared towards architecture. It is currently in the works and will release in a future update.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Architecture[/button][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/11/avada_collage_design1-compressor.jpg\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"110px\" padding_left=\"10%\" padding_right=\"10%\" hundred_percent=\"yes\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/hotel\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Hotel Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/hotel-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Hotel</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Hotel is a beautiful high end demo geared toward the hotel industry. It is currently in the works and will release in a future update.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Hotel[/button][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/lifestyle\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Lifestyle Demo\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/lifestyle-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Lifestyle</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">Avada Lifestyle is a new demo geared towards health, fitness and well being. It is currently in the works and will release in a future update.</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"large\"  stretch=\"default\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Lifestyle[/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"#ffffff\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_position=\"all\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding=\"11%\" margin_top=\"\" margin_bottom=\"3%\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"no\" lightbox_image=\"\" style_type=\"none\" hover_type=\"liftup\" bordercolor=\"rgba(000,000,000,.06)\" bordersize=\"2px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"http://avada.theme-fusion.com/church\" linktarget=\"_blank\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Church\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/church-compressor.jpg\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"font-size: 19px; line-height: 27px; text-align: center;\">Avada Church</h2>\n[/fusion_text][fusion_text]\n<p style=\"text-align: center; font-size: 15px; line-height: 26px;\">We have several more demos being worked on to add to our collection. All are free to anyone who has already bought Avada!</p>\n[/fusion_text][separator style_type=\"none\" top_margin=\"5\" bottom_margin=\"5\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"center\" class=\"\" id=\"\"][button link=\"http://avada.theme-fusion.com/church\" color=\"custom\" size=\"large\"  stretch=\"\"  type=\"\" shape=\"\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|transparent\" gradient_hover_colors=\"rgba(000,000,000,.04)|rgba(000,000,000,.04)\" accent_color=\"#333333\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"1px\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" modal=\"\" animation_type=\"0\" animation_direction=\"left\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Avada Church[/button][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center; font-size: 30px; line-height: 40px;\"><span style=\"color: #ffffff;\">Customize Your Entire Site With Ease, No Coding Experience Required!</span></h2>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#a0ce4e\" backgroundcolor=\"#a0ce4e\" class=\"\" id=\"\"][fullwidth background_color=\"#f6f6f6\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"85px\" padding_bottom=\"90px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" hover_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Design Description\" src=\"http://freereincenter.com/wp-content/uploads/2014/11/design_desc-compressor.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_repeat=\"no-repeat\" background_position=\"center center\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"75px\" padding_left=\"3px\" padding_right=\"3px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">How Will You Use Avada? Join The 150,000+ Satisfied Avada Users!</span></h1>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  stretch=\"default\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"rgba(255,255,255,.1)|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.25)|\" accent_color=\"rgba(255,255,255,.7)\" accent_hover_color=\"#ffffff\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"] BUY AVADA NOW![/button][/fullwidth]','Demos','','publish','closed','closed','','demos','','','2015-04-12 09:40:47','2015-04-12 09:40:47','',0,'http://avada.theme-fusion.comxml/?page_id=11304',0,'page','',0),(11313,1,'2015-04-12 10:12:42','2015-04-12 10:12:42','[fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center;\">Avada Has Over [tooltip title=\"Join The Avada Community!\"]126<strong>,000+ Users</strong>[/tooltip] And Counting</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 18px; line-height: 27px;\">Making It The Most Trusted &amp; Complete WordPress Theme On The Market.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Theme Image\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/browsers1.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#f8f8f8\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Free Updates &amp; Support: You Need It, We Gladly Provide It.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Our #1 priority is you, the user. We believe in our product and hold ourselves to the highest standards. We truly care about your site as much as you do, which is why we offer the best support around at our dedicated support center. In addition, Avada constantly offers free updates with new features requested by our users. You can count on us.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Macbook Image\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_half][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][counters_box  columns=\"4\" color=\"\" title_size=\"\" icon_size=\"\" icon_top=\"\" body_color=\"\" body_size=\"\" border_color=\"\" class=\"\" id=\"\"][counter_box value=\"70000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Wonderful Users &amp; Counting[/counter_box][counter_box value=\"25000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Support Threads Resolved[/counter_box][counter_box value=\"8000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Hours of Development[/counter_box][counter_box value=\"11000\" delimiter=\"\" unit=\"\" unit_pos=\"suffix\" icon=\"\" direction=\"up\"]Cups of Coffee[/counter_box][/counters_box][separator style_type=\"none\" top_margin=\"40\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Endless Possibilities: The Only Theme You Need</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada\'s powerful theme and meta options along with its unique structure lets you create any design style with just one theme. These simple yet powerful options allow you to create any type of website. No two versions of Avada will ever look the same.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/combo_text.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Incredible Features: The Proof Is In The Pudding</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada is loaded with useful features, each one with its own meaningful purpose. We listen to our users and integrate their feature requests on a regular basis. Avada is not only built by us, but also by our users.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"100px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Ultra-Responsive Design</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada is 100% responsive, every element including the premium sliders are responsive. And the responsive mode can easily be turned on or off in theme options![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Theme Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]We include an extremely advanced admin panel allowing users to quickly &amp; easily customize the theme. These options are intuitive, powerful and best of all, fun to use![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Powerful Page Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada\'s meta options make it easy to customize your content for each page, blog, portfolio or FAQ post. Apply sliders, backgrounds, colors, icons, sidebars to name a few.[/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Headers &amp; Megamenu</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada includes 5 header designs to choose from, a sticky header option &amp; an amazing widgetized megamenu! Unlike other themes, we give you control over the header .[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Fusion-Core Shortcodes</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Our Shortcode Generator is a pleasure to use with an amazingly beautiful user interface! Quickly &amp; easily build custom pages using all the shortcodes Avada includes.[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Premium Sliders</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Avada has you covered and includes sliders for regular images &amp; videos, animated slides, or post sliders. Layer Slider, Revolution Slider, Fusion Slider and Elastic Slider![/fusion_text][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Translation &amp; RTL</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Not only is Avada translation ready, we also Include several languages already translated! Need RTL? No problem! And Avada is 100% WPML &amp; qTranslate compatible![/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Blog Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]6 Layouts to choose from; unlimited blog pages, custom categories per page, premium sliders, awesome rollover effects, custom featured image size per post and more![/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"15\" bottom_margin=\"15\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2>Advanced Portfolio Options</h2>\n[/fusion_text][separator style_type=\"none\" top_margin=\"-10\" bottom_margin=\"-10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]Multiple layout styles, unlimited portfolio pages, custom categories per page, awesome rollover effects, full or half-width detail page, custom featured image size and more![/fusion_text][/one_third][/fullwidth][section_separator divider_candy=\"top\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"35px\" padding_bottom=\"40px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Those Are Just A Few Main Features, There Are Plenty More</h1>\n[/fusion_text][separator style_type=\"double\" top_margin=\"5\" bottom_margin=\"35\" sep_color=\"#555555\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=â€œfa-star\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Easy Installation &amp; Setup</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Customizable Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Click Demo Content Importer</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Auto Theme Updater</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Retina Ready For Enabled Devices</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Backgrounds Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Awesome Widgetized MegaMenu</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Colors / Skins</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Powerful Customization Options</p>\n[/li_item][/checklist][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=â€œfa-star\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">One Page Parallax For Any Page</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">WooCommerce Design Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">bbPress Forum Design Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Icons Instead of Images</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Eye-Catching CSS3 Animations</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Boxed or Wide Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Extensive Doc &amp; HD Videos</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Top Notch Support Service</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Constant Updates &amp; New Features</p>\n[/li_item][/checklist][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][checklist icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=\"fa-icon=â€œfa-star\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\" iconcolor=\"#333333\" circle=\"yes\" circlecolor=\"\" size=\"small\" class=\"\" id=\"\"][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Incredible Shortcode Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Custom Menu Per Page/Post</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Font Awesome Icon Integration</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Advanced Typography Options</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Strong SEO Base Built In</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Unlimited Sidebar Creation</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Multiple Custom Widgets</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Four Premium Sliders</p>\n[/li_item][li_item icon=\"\"]\n<p style=\"font-size: 17px !important; color: #b1b1b1 !important;\">Fully Optimized For Speed</p>\n[/li_item][/checklist][/one_third][/fullwidth][fullwidth background_color=\"#a0ce4e\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"solid\" padding_top=\"35px\" padding_bottom=\"15px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.09)|\" accent_color=\"rgba(255,255,255,.8)\" accent_hover_color=\"rgba(255,255,255,.9)\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]Buy Avada Now![/button][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"double\" top_margin=\"25\" bottom_margin=\"25\" sep_color=\"#c3e28c\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][/one_third][/fullwidth][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">What Else? Full Design Integration For WooCommerce</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Need an online shop? No problem, Avada includes integration for the most popular shop plugin, WooCommerce. Our custom design and unique shop shortcodes will allow your products to shine.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/woo_feature2.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Ridiculously Easy Setup: True One Click Demo Import</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Many themes claim to have a quick setup, but leave you dealing with several XML files to manually import. Who wants to do that? We sure don\'t. Avada truly offers a quick, easy setup. Install the theme, click the demo content button and you receive a demo setup of pages, post, sliders, sidebars, widgets, theme options and more. It doesn\'t get any easier, our demo content importer is a beautiful thing.</p>\n[/fusion_text][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"fusion2\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]WHAT ELSE YOU GOT?[/button][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"27\" bottom_margin=\"\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"demo_content\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_half][/fullwidth][modal name=\"fusion2\" title=\"How About This Wicked Cool Popup Modal?\" size=\"large\" background=\"\" border_color=\"\" show_footer=\"yes\" class=\"\" id=\"\"]\n<h1 style=\"text-align: center;\"><span style=\"color: #333333;\">Avada\'s Humbled History</span></h1>\n[separator style_type=\"single\" top_margin=\"15\" bottom_margin=\"10\" sep_color=\"#cdcdcd\" icon=\"fa-heart-o\" width=\"820px\" class=\"\" id=\"\"] <a href=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\"><img class=\"alignnone size-full wp-image-9655\" src=\"http://avada.theme-fusion.com/wp-content/uploads/2014/06/avada_history.jpg\" alt=\"test_graphic\" width=\"858\" height=\"497\" /></a>[/modal][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Shortcodes: We Make Them, You Use Them.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Shortcodes are the backbone of page design for any theme, and Avada offers a huge set. We include all the standard shortcodes and also a wide variety of unique shortcodes, each with their own amazing options to customize to your heart\'s content. Avada shortcodes allow you to build a variety of pages, and with our shortcode generator it\'s not only useful, it\'s fun.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"0\" animation_direction=\"up\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"shortcodes\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/shortcodes2.jpg\" />[/imageframe][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">Layout Options: Decision, Decisions, Decisions</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">Avada does not limit you to one setup, we prefer to give you options. From boxed layout to wide, left sidebars to right and multiple headers; we let you decide. That\'s right, you can have your cake and eat some too.</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd13.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"85px\" padding_bottom=\"45px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Left Sidebar / Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Content / Right Sidebar</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">No Sidebar Full Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Boxed Layout</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Full Width Layout</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">100% Width For Page Content</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Logo / Menu</h2>\n[/fusion_text][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Menu / Logo &amp; Menu</h2>\n[/fusion_text][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/full_width.png\" />[/imageframe][separator style_type=\"none\" top_margin=\"10\" bottom_margin=\"10\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][fusion_text]\n<h2 style=\"text-align: center;\">Menu / Logo / Menu</h2>\n[/fusion_text][/one_third][/fullwidth][fullwidth background_color=\"#fff\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"45px\" padding_bottom=\"65px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important;\">Custom Pages: Have No Limits.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important;\">Avada gives you limitless potential to build amazing pages. Easily create unique page layouts using the tools we provide. In addition, we have you covered with dozens of beautiful pre-designed pages you can quickly choose from.</p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"40\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][imageframe lightbox=\"yes\" lightbox_image=\"\" style_type=\"none\" bordercolor=\"\" bordersize=\"0px\" borderradius=\"0\" stylecolor=\"\" align=\"center\" link=\"\" linktarget=\"_self\" animation_type=\"fade\" animation_direction=\"down\" animation_speed=\"1\" hide_on_mobile=\"no\" class=\"\" id=\"\"] <img alt=\"Avada Admin\" src=\"http://freereincenter.com/wp-content/uploads/2014/06/demo_content.png\" />[/imageframe][/one_third][/fullwidth][fullwidth background_color=\"#333333\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"30px\" padding_bottom=\"35px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 30px !important; color: #fff !important;\">User Reviews: We Love our Users, And They Love Us.</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 24px !important; color: #b1b1b1 !important;\">We are fully dedicated to user base. When you buy Avada, there is no need to worry about customer support. With over 50,000 users and counting, you cannot go wrong with Avada. Check out what our users are saying about Avada!</p>\n[/fusion_text][/fullwidth][section_separator divider_candy=\"bottom\" icon=\"\" icon_color=\"\" bordersize=\"1px\" bordercolor=\"#333333\" backgroundcolor=\"#333333\" class=\"\" id=\"\"][fullwidth background_color=\"\" background_image=\"\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"0px\" border_color=\"#e5e4e4\" border_style=\"\" padding_top=\"65px\" padding_bottom=\"50px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][fusion_text]\n<h1 style=\"text-align: center; font-size: 31px !important; font-style: italic !important;\">“This is the Best Theme I have ever seen.\"</h1>\n<p style=\"text-align: center; margin-top: -10px; font-size: 17px !important; line-height: 26px !important; color: #747474 !important; font-style: italic !important;\">\"WOW I dont really know what else to say. This is the Best Theme I have ever seen. I am a full time web dev, and this theme blows me away. I wanted to thank you for all your hard work. I am really looking forward to building my new site! I think you thought of everything and then some. Thank you so much for this theme, WOW- AMAZING!\"<strong> - MarketingMonsters</strong></p>\n[/fusion_text][separator style_type=\"double\" top_margin=\"15\" bottom_margin=\"45\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Aajami\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]I bought this theme and i would like to recommend it to every one interested in building a website without knowledge of php or html. It is very convenient and the customer service is very reactive. I will say it in French â€œBravoâ€ for this work![/testimonial][/testimonials][/one_third][one_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Lucasgriffin\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Amazing theme and top class support, as Iâ€™m a beginner, Luke helped me above and beyond and was more than patient, his responses were quick and he has a genuine care for you to enjoy and move forward with your theme!.. highly recommended theme and author! [/testimonial][/testimonials][/one_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Gojcus\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Let me say something. You have an amazing theme and amazing/awesome support. They helped me on weekend. This is what I call an â€œextra mileâ€ in customer relationship. So I gave 5 stars for the theme and if I could, Iâ€™d give 10 stars for support.[/testimonial][/testimonials][/one_third][separator style_type=\"none\" top_margin=\"20\" bottom_margin=\"20\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][one_half last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"William Genske\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]Thank you for your very professional and prompt response. I went to look for answers to my own questions and quickly realized that the information I was requesting was very easy to find. As were the videos and the instructions. In fact everything has been perfect so far. This is by far the most well supported theme I have ever had the pleasure to work with. Lots of wonderful options. I wished I had found you before I spent money on a competitors theme. Thanks again for the great support and for a great product. [/testimonial][/testimonials][/one_half][one_half last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][testimonials design=\"\" backgroundcolor=\"\" textcolor=\"\" random=\"\" class=\"\" id=\"\"][testimonial name=\"Stuartyboy\" avatar=\"\" image=\"\" image_border_radius=\"\" company=\"Avada Theme\" link=\"\" target=\"\"]If I could give 100 stars for support and attention to detail I definitely would. Iâ€™ve purchased a good number of Wordpress themes from various developers that look good on Themeforest but after you buy them you find numerous problems, bugs, crazy admin and very very poor support. I purchased the Avada theme and there were a couple of problems too, but the guys from ThemeFusion were remarkable â€“ I really mean this. The speed of support and attention to detail is quite phenomenal. You will be extremely pleased.[/testimonial][/testimonials][/one_half][/fullwidth][fullwidth background_color=\"\" background_image=\"http://freereincenter.com/wp-content/uploads/2014/06/bkgd_bw2.jpg\" background_parallax=\"fixed\" parallax_speed=\"0.3\" enable_mobile=\"no\" background_repeat=\"no-repeat\" background_position=\"left top\" video_url=\"\" video_aspect_ratio=\"16:9\" video_webm=\"\" video_mp4=\"\" video_ogv=\"\" video_preview_image=\"\" overlay_color=\"\" overlay_opacity=\"0.5\" video_mute=\"yes\" video_loop=\"yes\" fade=\"no\" border_size=\"1px\" border_color=\"#c6c6c6\" border_style=\"\" padding_top=\"25px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_right=\"0px\" hundred_percent=\"no\" equal_height_columns=\"no\" hide_on_mobile=\"no\" menu_anchor=\"\" class=\"\" id=\"\"][two_third last=\"no\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][fusion_text]<h1 style=\"text-align: center; font-size: 30px !important;\">Join The 126,000+ Satisfied Avada Users!</h1>[/fusion_text][/two_third][one_third last=\"yes\" spacing=\"yes\" center_content=\"no\" hide_on_mobile=\"no\" background_color=\"\" background_image=\"\" background_repeat=\"no-repeat\" background_position=\"left top\" border_size=\"0px\" border_color=\"\" border_style=\"\" padding=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"\" animation_speed=\"0.1\" class=\"\" id=\"\"][separator style_type=\"none\" top_margin=\"7\" bottom_margin=\"7\" sep_color=\"\" border_size=\"\" icon=\"\" icon_circle=\"\" icon_circle_color=\"\" width=\"\" alignment=\"\" class=\"\" id=\"\"][button link=\"http://themeforest.net/item/avada-responsive-multipurpose-theme/2833226?ref=ThemeFusion\" color=\"custom\" size=\"xlarge\"  type=\"flat\" shape=\"round\" target=\"_blank\" title=\"\" gradient_colors=\"transparent|\" gradient_hover_colors=\"rgba(255, 255, 255, 0.15)|\" accent_color=\"rgba(0,0,0,.5)\" accent_hover_color=\"#333333\" bevel_color=\"\" border_width=\"2px\" icon=\"\" icon_position=\"left\" icon_divider=\"yes\" modal=\"\" animation_type=\"bounce\" animation_direction=\"up\" animation_speed=\"1\" alignment=\"center\" class=\"\" id=\"\"]I\'m Sold, Buy Avada Now![/button][/one_third][/fullwidth]','Home Version 19','','publish','closed','closed','','home-version-19','','','2015-04-12 10:12:42','2015-04-12 10:12:42','',0,'http://avada.theme-fusion.comxml/?page_id=11313',0,'page','',0),(4118,1,'2013-10-16 15:48:31','2013-10-16 15:48:31','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 6','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-6','','','2013-10-16 15:48:31','2013-10-16 15:48:31','',0,'http://avada.theme-fusion.comxml/product/product-6/',0,'product','',0),(4124,1,'2013-10-16 15:52:33','2013-10-16 15:52:33','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 7','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-7','','','2013-10-16 15:52:33','2013-10-16 15:52:33','',0,'http://avada.theme-fusion.comxml/product/product-7/',0,'product','',0),(4125,1,'2013-10-16 15:52:45','2013-10-16 15:52:45','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetra.  Sed in cursus quam, sed commodo augue. Sed laoreet tempus pulvinar. Sed porta ullamcorper quam.','Product 8','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eu posuere nibh, non dapibus ipsum. Donec at dignissim erat. Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero. Nunc non arcu luctus leo luctus consectetur. Aenean consequat purus nisl, eu semper neque vestibulum pharetr commodo augue.  Aliquam ligula risus, ornare vitae tempus id, gravida non lacus. Duis vitae quam eu velit aliquet placerat. Nulla commodo feugiat lacinia. Proin id mauris non magna condimentum accumsan vitae sit amet diam. Aliquam sagittis tempor risus, eu adipiscing libero.\n\n[checklist icon=\"check\" iconcolor=\"#aaaaaa\" circle=\"no\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>\n	<li>Vivamus condimentum nunc eu dolor imperdiet faucibus</li>\n	<li>Phasellus tempus magna in tellus</li>\n	<li>Wellentesque, quis pretium nibh tempor</li>\n	<li>Fusce a metus nec sapien placerat placerat</li>\n	<li>Vivamus at metus et mauris gravida sodales et turpis</li>\n</ul>\n[/checklist]','publish','open','closed','','product-8','','','2013-10-16 15:52:45','2013-10-16 15:52:45','',0,'http://avada.theme-fusion.comxml/product/product-8/',0,'product','',0),(11531,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11531','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11531',4,'nav_menu_item','',0),(11532,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11532','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11532',5,'nav_menu_item','',0),(11533,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11533','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11533',115,'nav_menu_item','',0),(11534,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11534','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11534',50,'nav_menu_item','',0),(11535,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11535','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11535',47,'nav_menu_item','',0),(11536,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11536','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11536',58,'nav_menu_item','',0),(11537,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11537','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11537',57,'nav_menu_item','',0),(11538,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11538','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11538',37,'nav_menu_item','',0),(11539,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11539','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11539',38,'nav_menu_item','',0),(11540,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11540','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11540',3,'nav_menu_item','',0),(11541,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11541','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11541',60,'nav_menu_item','',0),(11542,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11542','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11542',55,'nav_menu_item','',0),(11543,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11543','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11543',61,'nav_menu_item','',0),(11544,1,'2016-08-29 20:19:47','2016-08-29 20:19:47',' ','','','publish','closed','closed','','11544','','','2016-08-29 20:19:47','2016-08-29 20:19:47','',0,'http://freereincenter.com/?p=11544',6,'nav_menu_item','',0),(11545,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11545','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11545',7,'nav_menu_item','',0),(11546,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11546','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11546',8,'nav_menu_item','',0),(11547,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11547','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11547',9,'nav_menu_item','',0),(11548,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11548','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11548',59,'nav_menu_item','',0),(11549,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11549','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11549',10,'nav_menu_item','',0),(11550,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11550','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11550',52,'nav_menu_item','',0),(11551,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11551','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11551',12,'nav_menu_item','',0),(11552,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11552','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11552',48,'nav_menu_item','',0),(11553,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11553','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11553',51,'nav_menu_item','',0),(11554,1,'2016-08-29 20:19:48','2016-08-29 20:19:48','','About Us','','publish','closed','closed','','about-us','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11554',1,'nav_menu_item','',0),(11555,1,'2016-08-29 20:19:48','2016-08-29 20:19:48','','Contact','','publish','closed','closed','','contact','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11555',4,'nav_menu_item','',0),(11556,1,'2016-08-29 20:19:48','2016-08-29 20:19:48','','FAQ','','publish','closed','closed','','faq','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11556',2,'nav_menu_item','',0),(11557,1,'2016-08-29 20:19:48','2016-08-29 20:19:48','','Services','','publish','closed','closed','','services','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11557',3,'nav_menu_item','',0),(11558,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11558','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11558',13,'nav_menu_item','',0),(11559,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11559','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11559',43,'nav_menu_item','',0),(11560,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11560','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11560',53,'nav_menu_item','',0),(11561,1,'2016-08-29 20:19:48','2016-08-29 20:19:48',' ','','','publish','closed','closed','','11561','','','2016-08-29 20:19:48','2016-08-29 20:19:48','',0,'http://freereincenter.com/?p=11561',15,'nav_menu_item','',0),(11562,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11562','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11562',14,'nav_menu_item','',0),(11563,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11563','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',54,'http://freereincenter.com/?p=11563',116,'nav_menu_item','',0),(11564,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11564','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11564',49,'nav_menu_item','',0),(11565,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11565','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11565',54,'nav_menu_item','',0),(11566,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11566','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11566',18,'nav_menu_item','',0),(11567,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11567','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11567',17,'nav_menu_item','',0),(11568,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11568','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11568',16,'nav_menu_item','',0),(11569,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11569','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11569',44,'nav_menu_item','',0),(11570,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11570','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11570',56,'nav_menu_item','',0),(11571,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11571','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11571',144,'nav_menu_item','',0),(11572,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11572','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11572',141,'nav_menu_item','',0),(11573,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11573','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11573',156,'nav_menu_item','',0),(11574,1,'2016-08-29 20:19:49','2016-08-29 20:19:49',' ','','','publish','closed','closed','','11574','','','2016-08-29 20:19:49','2016-08-29 20:19:49','',0,'http://freereincenter.com/?p=11574',153,'nav_menu_item','',0),(11575,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11575','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11575',151,'nav_menu_item','',0),(11576,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11576','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11576',145,'nav_menu_item','',0),(11577,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11577','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11577',135,'nav_menu_item','',0),(11578,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11578','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11578',134,'nav_menu_item','',0),(11579,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11579','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11579',133,'nav_menu_item','',0),(11580,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11580','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11580',132,'nav_menu_item','',0),(11581,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11581','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11581',131,'nav_menu_item','',0),(11582,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11582','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11582',129,'nav_menu_item','',0),(11583,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11583','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11583',125,'nav_menu_item','',0),(11584,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11584','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11584',155,'nav_menu_item','',0),(11585,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11585','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11585',119,'nav_menu_item','',0),(11586,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11586','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11586',122,'nav_menu_item','',0),(11587,1,'2016-08-29 20:19:50','2016-08-29 20:19:50','','Post Sliders','','publish','closed','closed','','post-sliders','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11587',142,'nav_menu_item','',0),(11588,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11588','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11588',21,'nav_menu_item','',0),(11589,1,'2016-08-29 20:19:50','2016-08-29 20:19:50',' ','','','publish','closed','closed','','11589','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11589',20,'nav_menu_item','',0),(11590,1,'2016-08-29 20:19:50','2016-08-29 20:19:50','','About Us','','publish','closed','closed','','about-us-2','','','2016-08-29 20:19:50','2016-08-29 20:19:50','',0,'http://freereincenter.com/?p=11590',1,'nav_menu_item','',0),(11591,1,'2016-08-29 20:19:51','2016-08-29 20:19:51','','Blog','','publish','closed','closed','','blog-2','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11591',4,'nav_menu_item','',0),(11592,1,'2016-08-29 20:19:51','2016-08-29 20:19:51','','FAQ','','publish','closed','closed','','faq-2','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11592',5,'nav_menu_item','',0),(11593,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11593','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11593',105,'nav_menu_item','',0),(11594,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11594','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11594',104,'nav_menu_item','',0),(11595,1,'2016-08-29 20:19:51','2016-08-29 20:19:51','','Shopping Cart','','publish','closed','closed','','shopping-cart','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11595',103,'nav_menu_item','',0),(11596,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11596','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11596',100,'nav_menu_item','',0),(11597,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11597','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11597',26,'nav_menu_item','',0),(11598,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11598','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11598',25,'nav_menu_item','',0),(11599,1,'2016-08-29 20:19:51','2016-08-29 20:19:51','','Shop Page Full Width','','publish','closed','closed','','shop-page-full-width','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11599',102,'nav_menu_item','',0),(11600,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11600','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11600',113,'nav_menu_item','',0),(11601,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11601','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11601',112,'nav_menu_item','',0),(11602,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11602','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11602',111,'nav_menu_item','',0),(11603,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11603','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11603',110,'nav_menu_item','',0),(11604,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11604','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11604',109,'nav_menu_item','',0),(11605,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11605','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11605',108,'nav_menu_item','',0),(11606,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11606','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11606',107,'nav_menu_item','',0),(11607,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11607','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11607',81,'nav_menu_item','',0),(11608,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11608','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11608',80,'nav_menu_item','',0),(11609,1,'2016-08-29 20:19:51','2016-08-29 20:19:51',' ','','','publish','closed','closed','','11609','','','2016-08-29 20:19:51','2016-08-29 20:19:51','',0,'http://freereincenter.com/?p=11609',79,'nav_menu_item','',0),(11610,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11610','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11610',78,'nav_menu_item','',0),(11611,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11611','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11611',95,'nav_menu_item','',0),(11612,1,'2016-08-29 20:19:52','2016-08-29 20:19:52','','Blog Medium','','publish','closed','closed','','blog-medium','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11612',97,'nav_menu_item','',0),(11613,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11613','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11613',99,'nav_menu_item','',0),(11614,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11614','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11614',88,'nav_menu_item','',0),(11615,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11615','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11615',87,'nav_menu_item','',0),(11616,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11616','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11616',86,'nav_menu_item','',0),(11617,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11617','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11617',85,'nav_menu_item','',0),(11618,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11618','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11618',158,'nav_menu_item','',0),(11619,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11619','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11619',29,'nav_menu_item','',0),(11620,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11620','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11620',28,'nav_menu_item','',0),(11621,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11621','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11621',31,'nav_menu_item','',0),(11622,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11622','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11622',30,'nav_menu_item','',0),(11623,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11623','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11623',98,'nav_menu_item','',0),(11624,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11624','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11624',96,'nav_menu_item','',0),(11625,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11625','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11625',94,'nav_menu_item','',0),(11626,1,'2016-08-29 20:19:52','2016-08-29 20:19:52',' ','','','publish','closed','closed','','11626','','','2016-08-29 20:19:52','2016-08-29 20:19:52','',0,'http://freereincenter.com/?p=11626',93,'nav_menu_item','',0),(11627,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11627','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11627',91,'nav_menu_item','',0),(11628,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11628','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11628',66,'nav_menu_item','',0),(11629,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11629','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11629',65,'nav_menu_item','',0),(11630,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11630','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11630',2,'nav_menu_item','',0),(11631,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11631','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11631',3,'nav_menu_item','',0),(11632,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','Magazine Style 3','','publish','closed','closed','','magazine-style-3','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11632',34,'nav_menu_item','',0),(11633,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','Magazine Style 2','','publish','closed','closed','','magazine-style-2','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11633',33,'nav_menu_item','',0),(11634,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','Magazine Style 1','','publish','closed','closed','','magazine-style-1','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11634',32,'nav_menu_item','',0),(11635,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11635','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11635',24,'nav_menu_item','',0),(11636,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11636','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11636',22,'nav_menu_item','',0),(11637,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','FS Fixed Width','','publish','closed','closed','','fs-fixed-width','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11637',42,'nav_menu_item','',0),(11638,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','FS Full Screen','','publish','closed','closed','','fs-full-screen','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11638',41,'nav_menu_item','',0),(11639,1,'2016-08-29 20:19:53','2016-08-29 20:19:53','','FS Full Width','','publish','closed','closed','','fs-full-width','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11639',40,'nav_menu_item','',0),(11640,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11640','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11640',64,'nav_menu_item','',0),(11641,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11641','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11641',149,'nav_menu_item','',0),(11642,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11642','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11642',121,'nav_menu_item','',0),(11643,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11643','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11643',62,'nav_menu_item','',0),(11644,1,'2016-08-29 20:19:53','2016-08-29 20:19:53',' ','','','publish','closed','closed','','11644','','','2016-08-29 20:19:53','2016-08-29 20:19:53','',0,'http://freereincenter.com/?p=11644',120,'nav_menu_item','',0),(11645,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11645','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11645',124,'nav_menu_item','',0),(11646,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11646','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11646',130,'nav_menu_item','',0),(11647,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11647','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11647',139,'nav_menu_item','',0),(11648,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11648','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11648',143,'nav_menu_item','',0),(11649,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11649','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11649',128,'nav_menu_item','',0),(11650,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11650','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11650',126,'nav_menu_item','',0),(11651,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11651','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11651',76,'nav_menu_item','',0),(11652,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11652','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11652',75,'nav_menu_item','',0),(11653,1,'2016-08-29 20:19:54','2016-08-29 20:19:54','','Portfolio Info Page','','publish','closed','closed','','portfolio-info-page','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11653',70,'nav_menu_item','',0),(11654,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11654','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11654',74,'nav_menu_item','',0),(11655,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11655','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11655',73,'nav_menu_item','',0),(11656,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11656','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11656',72,'nav_menu_item','',0),(11657,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11657','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11657',82,'nav_menu_item','',0),(11658,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11658','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11658',89,'nav_menu_item','',0),(11659,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11659','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11659',83,'nav_menu_item','',0),(11660,1,'2016-08-29 20:19:54','2016-08-29 20:19:54',' ','','','publish','closed','closed','','11660','','','2016-08-29 20:19:54','2016-08-29 20:19:54','',0,'http://freereincenter.com/?p=11660',90,'nav_menu_item','',0),(11661,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11661','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11661',36,'nav_menu_item','',0),(11662,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11662','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11662',45,'nav_menu_item','',0),(11663,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11663','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11663',137,'nav_menu_item','',0),(11664,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11664','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11664',136,'nav_menu_item','',0),(11665,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11665','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11665',152,'nav_menu_item','',0),(11666,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11666','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11666',123,'nav_menu_item','',0),(11667,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11667','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11667',146,'nav_menu_item','',0),(11668,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11668','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11668',150,'nav_menu_item','',0),(11669,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11669','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11669',154,'nav_menu_item','',0),(11670,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11670','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11670',147,'nav_menu_item','',0),(11671,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11671','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11671',140,'nav_menu_item','',0),(11672,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11672','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11672',159,'nav_menu_item','',0),(11673,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11673','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11673',160,'nav_menu_item','',0),(11674,1,'2016-08-29 20:19:55','2016-08-29 20:19:55',' ','','','publish','closed','closed','','11674','','','2016-08-29 20:19:55','2016-08-29 20:19:55','',0,'http://freereincenter.com/?p=11674',23,'nav_menu_item','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `params` longtext NOT NULL,
  `advanced` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=122 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"margin\":\"0px\"},\"hover\":\"\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":[\"\"],\"hover\":\"\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(110,'.tp-caption.avada_huge_white_text','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#ffffff\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}','{\"idle\":{\"position\":\"absolute\"},\"hover\":\"\"}'),(111,'.tp-caption.avada_huge_black_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#000000\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}',NULL),(112,'.tp-caption.avada_big_black_text','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#333333\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}','{\"idle\":{\"position\":\"absolute\"},\"hover\":\"\"}'),(113,'.tp-caption.avada_big_white_text','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#fff\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}','{\"idle\":{\"position\":\"absolute\"},\"hover\":\"\"}'),(114,'.tp-caption.avada_big_black_text_center','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#333333\",\"font-size\":\"38px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\",\"text-align\":\"center\"}',NULL),(115,'.tp-caption.avada_med_green_text','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}','{\"idle\":{\"position\":\"absolute\"},\"hover\":\"\"}'),(116,'.tp-caption.avada_small_gray_text','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#747474\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}','{\"idle\":{\"position\":\"absolute\"},\"hover\":\"\"}'),(117,'.tp-caption.avada_small_white_text','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\"}',NULL),(118,'.tp-caption.avada_block_black','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"#000\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\",\"color\":\"#fff\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"font-size\":\"22px\",\"line-height\":\"34px\"}','{\"idle\":[],\"hover\":\"\"}'),(119,'.tp-caption.avada_block_green','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#000\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#A0CE4E\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"margin\":\"0px\"},\"hover\":\"\"}'),(120,'.tp-caption.avada_block_white','{\"translated\":5,\"type\":\"text\",\"version\":\"custom\"}','null','{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":\"0px 10px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#000\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"margin\":\"0px\"},\"hover\":\"\"}'),(121,'.tp-caption.avada_block_white_trans','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"custom\",\"translated\":\"5\"}',NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"padding\":[\"1px\", \"10px\", \"0px\", \"10px\"],\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}',NULL);
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

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

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

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Avada_Full_Width','Avada_Full_Width','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Avada_Full_Width\",\"alias\":\"Avada_Full_Width\",\"shortcode\":\"[rev_slider alias=\\\\\\\"Avada_Full_Width\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"auto\",\"width\":\"1100\",\"height\":\"450\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"\",\"max_width\":\"\",\"force_full_width\":\"off\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Plear\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#ffffff\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"round\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"0\",\"leftarrow_offset_vert\":\"0\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"0\",\"rightarrow_offset_vert\":\"0\",\"enable_bullets\":\"off\",\"navigation_bullets_style\":\"round\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"0.7\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"none\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"google_font\":[\"PT+Sans+Narrow:400,700\"],\"custom_css\":\"\",\"custom_javascript\":\"\",\"version\":\"\"}','{\"version\":\"5.0.7\"}',''),(2,'Avada_Page_Slider','Avada_Page_Slider','{\"title\":\"Avada_Page_Slider\",\"alias\":\"Avada_Page_Slider\",\"shortcode\":\"[rev_slider Avada_Page_Slider]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"1100\",\"height\":\"320\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"top\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"3\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/harisdev.blogdns.com\\/avada_\\/classic\\/wp-content\\/uploads\\/sites\\/80\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"hide_thumbs\":200,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\",\"enable_bullets\":\"off\",\"enable_thumbnails\":\"on\",\"enable_tabs\":\"off\",\"enable_arrows\":\"off\",\"navigation_arrow_style\":\"square-old\",\"navigation_bullets_style\":\"square-old\",\"arrows_always_on\":\"false\",\"bullets_always_on\":\"false\",\"thumbs_always_on\":\"false\",\"hide_arrows\":200,\"hide_bullets\":200,\"bullets_align_vert\":\"bottom\",\"thumbnails_align_vert\":\"bottom\",\"bullets_align_hor\":\"center\",\"thumbnails_align_hor\":\"center\",\"bullets_offset_hor\":\"0\",\"thumbnails_offset_hor\":\"0\",\"bullets_offset_vert\":20,\"thumbnails_offset_vert\":20,\"enable_progressbar\":\"off\",\"version\":\"\"}','{\"version\":\"5.0.7\"}',''),(3,'captions_tall','captions_tall','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-access-token\":\"\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"posts_list\":\"\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"captions_tall\",\"alias\":\"captions_tall\",\"shortcode\":\"[rev_slider alias=\\\\\\\"captions_tall\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"auto\",\"width\":\"290\",\"height\":\"506\",\"width_notebook\":\"1024\",\"height_notebook\":\"768\",\"enable_custom_size_notebook\":\"off\",\"width_tablet\":\"778\",\"height_tablet\":\"960\",\"enable_custom_size_tablet\":\"off\",\"width_mobile\":\"480\",\"height_mobile\":\"720\",\"enable_custom_size_iphone\":\"off\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"0\",\"max_width\":\"\",\"force_full_width\":\"off\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"delay\":\"9000\",\"start_js_after_delay\":\"0\",\"def-transitions\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"0\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"on\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"3\",\"background_dotted_overlay\":\"none\",\"background_color\":\"#E9E9E9\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"navigation_arrow_style\":\"custom\",\"arrows_always_on\":\"true\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"0\",\"leftarrow_offset_vert\":\"0\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"0\",\"rightarrow_offset_vert\":\"0\",\"enable_bullets\":\"off\",\"navigation_bullets_style\":\"square-old\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"enable_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"enable_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"touchenabled\":\"on\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"0.7\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"lazy_load_type\":\"all\",\"seo_optimization\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"version\":\"\"}','{\"version\":\"5.0.7\"}',''),(4,'Avada_Small_Slider','Avada_Small_Slider','{\"title\":\"Avada_Small_Slider\",\"alias\":\"Avada_Small_Slider\",\"shortcode\":\"[rev_slider Avada_Small_Slider]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_51\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"528\",\"height\":\"240\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"9000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"top\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"1\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"hide_thumbs\":200,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\",\"enable_arrows\":\"off\",\"navigation_arrow_style\":\"round\",\"navigation_bullets_style\":\"round\",\"arrows_always_on\":\"false\",\"bullets_always_on\":\"false\",\"thumbs_always_on\":\"false\",\"hide_arrows\":200,\"hide_bullets\":200,\"bullets_align_vert\":\"bottom\",\"thumbnails_align_vert\":\"bottom\",\"bullets_align_hor\":\"center\",\"thumbnails_align_hor\":\"center\",\"bullets_offset_hor\":\"0\",\"thumbnails_offset_hor\":\"0\",\"bullets_offset_vert\":20,\"thumbnails_offset_vert\":20,\"enable_progressbar\":\"on\",\"version\":\"\"}','{\"version\":\"5.0.7\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"background_type\":\"solid\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_3.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"date_from\":\"\",\"date_to\":\"\",\"slide_bg_color\":\"#f6f6f6\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"bg_end_position\":\"center top\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"save_performance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\"}','[{\"style\":\"\",\"text\":\"Image 2\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_4.jpg\",\"left\":70,\"top\":0,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":300,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8700,\"width\":940,\"height\":450,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 3\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/mac.png\",\"left\":649,\"top\":54,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":7500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"width\":449,\"height\":342,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 4\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"left\":584,\"top\":189,\"animation\":\"lft\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1100,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":7500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900,\"width\":168,\"height\":219,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"top\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 5\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"left\":522,\"top\":242,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1400,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":7500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7600,\"width\":85,\"height\":166,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Avada WP Theme\",\"type\":\"text\",\"left\":-1,\"top\":94,\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":1000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_big_black_text\",\"time\":2100,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"4\",\"endTimeFinal\":8000,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6900,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"museoslab500regular\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#333333\",\"font-size\":\"42px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}},{\"text\":\"Made With Care For Our Users\",\"type\":\"text\",\"left\":0,\"top\":150,\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":1000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_med_green_text\",\"time\":2400,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"5\",\"endTimeFinal\":8000,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6600,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"Lid est laborum dolo rumes fugats untras. Et harums ser quidem <br>rerum facilisdolores nemis omnis fugiats vitaes nemo minima<br> rerums unsers sadips amets sadips ipsums\",\"type\":\"text\",\"left\":0,\"top\":195,\"animation\":\"tp-fade\",\"easing\":\"easeOutExpo\",\"speed\":1000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_small_gray_text\",\"time\":2800,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"6\",\"endTimeFinal\":8000,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6200,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#747474\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"[button link=\\\"http:\\/\\/themeforest.net\\/item\\/avada-responsive-multipurpose-theme\\/2833226?ref=ThemeFusion\\\" color=\\\"default\\\" size=\\\"large\\\" type=\\\"flat\\\" shape=\\\"round\\\" target=\\\"_blank\\\" title=\\\"\\\" gradient_colors=\\\"\\\" gradient_hover_colors=\\\"\\\" accent_color=\\\"\\\" accent_hover_color=\\\"\\\" bevel_color=\\\"\\\" border_width=\\\"0px\\\" shadow=\\\"no\\\" icon=\\\"\\\" icon_divider=\\\"yes\\\" icon_position=\\\"left\\\" modal=\\\"\\\" animation_type=\\\"0\\\" animation_direction=\\\"up\\\" animation_speed=\\\"1\\\" class=\\\"\\\" id=\\\"\\\"]Purchase Now[\\/button]\",\"type\":\"text\",\"left\":0,\"top\":293,\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":3000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_small_gray_text\",\"time\":2700,\"endtime\":\"8700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"7\",\"endTimeFinal\":6000,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6300,\"width\":2697,\"height\":20,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#747474\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}}]','[]'),(2,1,2,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/freereincenter.com\\/wp-content\\/uploads\\/revslider\\/Avada_Full_Width\\/slide_5.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":[\"fade\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"date_from\":\"\",\"date_to\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"bg_end_position\":\"center top\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"save_performance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\"}','[{\"style\":\"\",\"text\":\"Image 2\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad.png\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":64},\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":500,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":0,\"timeLast\":8500,\"width\":500,\"height\":308,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\",\"padding\":[0,0,0,0],\"font-style\":\"normal\",\"color-transparency\":1,\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":1,\"border-color\":\"transparent\",\"border-transparency\":1,\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"pers\":600,\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 2\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":0,\"mask_y_start\":0,\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":0,\"mask_y_end\":0,\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":480},\"video_height\":{\"desktop\":360},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":20},\"line-height\":{\"desktop\":22},\"font-weight\":{\"desktop\":400},\"color\":{\"desktop\":\"#ffffff\"}},\"x_origin_start\":\"inherit\",\"y_origin_start\":\"inherit\",\"x_origin_end\":\"inherit\",\"y_origin_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":0,\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":0,\"border-radius\":[0,0,0,0],\"x\":0,\"y\":0,\"z\":0,\"skewx\":0,\"skewy\":0,\"scalex\":1,\"scaley\":1,\"opacity\":1,\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":1,\"originalWidth\":500,\"originalHeight\":308},{\"text\":\"Avada Is Better Than Ever\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":90},\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_black\",\"time\":1100,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":1,\"timeLast\":7900,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\",\"border-width\":\"0px\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":[],\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"avada is better than...\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":2,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"100% Fully Responsive\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":130},\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_black\",\"time\":1400,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":2,\"timeLast\":7600,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"100\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0\",\"10px\",\"0px\",\"10px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\",\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":[],\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"100% fully responsiv...\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":3,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"With Numerous\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":200},\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_green\",\"time\":1700,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":3,\"timeLast\":7300,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#A0CE4E\",\"background-transparency\":\"100\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#000\"},\"font-size\":{\"desktop\":\"22px\"},\"line-height\":{\"desktop\":\"34px\"},\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"font-weight\":{\"desktop\":\"100\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"with numerous\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":4,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Additions & Optimizations\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":240},\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_green\",\"time\":2000,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":4,\"timeLast\":7000,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#A0CE4E\",\"background-transparency\":\"100\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#000\"},\"font-size\":{\"desktop\":\"22px\"},\"line-height\":{\"desktop\":\"34px\"},\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"font-weight\":{\"desktop\":\"100\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"additions & optimiza...\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":5,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"It Doesn\'t Get Better Than This\",\"type\":\"text\",\"left\":{\"desktop\":0},\"top\":{\"desktop\":318},\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_black\",\"time\":2300,\"endtime\":9300,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":5,\"timeLast\":6700,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"fusion-revslider-mobile-padding\",\"attrTitle\":\"\",\"attrRel\":\"\",\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"parallax_level\":\"-\",\"static_start\":\"1\",\"static_end\":\"2\",\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"100\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"10px\",\"0\",\"10px\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-align\":\"left\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"100\",\"border-color\":\"#222222\",\"border-style\":\"none\",\"border-width\":\"0px\",\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":[],\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"it doesn\'t get bette...\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"unique_id\":6,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','[\"\"]'),(3,1,3,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_3.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"date_from\":\"\",\"date_to\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"bg_end_position\":\"center top\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\"}','[{\"text\":\"Create Fantastic Sliders With Animations\",\"type\":\"text\",\"left\":332,\"top\":75,\"animation\":\"lft\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":8250,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"top\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"BE CREATIVE\",\"type\":\"text\",\"left\":132,\"top\":160,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_huge_white_text\",\"time\":900,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":8250,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8100,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"museoslab500regular\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#ffffff\",\"font-size\":\"130px\",\"line-height\":\"45px\",\"font-family\":\"museoslab500regular\"}},{\"text\":\"The Possibilities Are Endless\",\"type\":\"text\",\"left\":391,\"top\":260,\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":750,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":1100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":8250,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7900,\"width\":-1,\"height\":-1,\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"[fontawesome icon=\\\"thumbs-up\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":132,\"top\":351,\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":1300,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"3\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7700,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"rocket\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":262,\"top\":351,\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":1600,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"4\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7400,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"search\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":382,\"top\":351,\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":1900,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"5\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":7100,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"music\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":522,\"top\":351,\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":2200,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"6\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6800,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"leaf\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":642,\"top\":351,\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":2500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"7\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6500,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"globe\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":782,\"top\":351,\"animation\":\"sfb\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":2800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"8\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":6200,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]},{\"text\":\"[fontawesome icon=\\\"heart\\\" circle=\\\"no\\\" size=\\\"large\\\" iconcolor=\\\"#fff\\\" circlecolor=\\\"\\\" circlebordercolor=\\\"\\\"]\",\"type\":\"text\",\"left\":922,\"top\":351,\"animation\":\"sft\",\"easing\":\"easeOutExpo\",\"speed\":500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"noshadow\",\"time\":3100,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"9\",\"endTimeFinal\":8500,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":5900,\"width\":-1,\"height\":-1,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"whitespace\":\"nowrap\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"-50px\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":[]}]','[]'),(4,2,1,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_1.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Choose Image\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"bg_end_position\":\"center top\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\"}','[{\"text\":\"Ultra Responsive\",\"type\":\"text\",\"left\":584,\"top\":87,\"animation\":\"lfr\",\"easing\":\"Power3.easeInOut\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":166,\"height\":34,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"Loaded With Options\",\"type\":\"text\",\"left\":597,\"top\":129,\"animation\":\"lfr\",\"easing\":\"Power3.easeInOut\",\"speed\":750,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":203,\"height\":34,\"serial\":1,\"endTimeFinal\":8250,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}}]','[]'),(5,2,2,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2012\\/11\\/slide_2.jpg\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Choose Image\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"bg_end_position\":\"center top\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\"}','[{\"text\":\"Ultra Responsive\",\"type\":\"text\",\"left\":584,\"top\":87,\"animation\":\"lfr\",\"easing\":\"Power3.easeInOut\",\"speed\":300,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":500,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":166,\"height\":34,\"serial\":\"0\",\"endTimeFinal\":8700,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8500,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"text\":\"Loaded With Options\",\"type\":\"text\",\"left\":597,\"top\":129,\"animation\":\"lfr\",\"easing\":\"Power3.easeInOut\",\"speed\":750,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_block_white\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":203,\"height\":34,\"serial\":1,\"endTimeFinal\":8250,\"endSpeedFinal\":300,\"realEndTime\":9000,\"timeLast\":8200,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":100,\"border-style\":\"none\",\"border-width\":\"0px\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#fff\",\"font-size\":\"22px\",\"line-height\":\"34px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}}]','[]'),(6,3,1,'{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":[\"random\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"6000\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/freereincenter.com\\/wp-content\\/uploads\\/revslider\\/captions_tall\\/portfolio_1.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\"}','[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/revslider\\/captions_tall\\/box21.png\",\"left\":{\"desktop\":-70},\"top\":{\"desktop\":341},\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":750,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":1200,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":0,\"timeLast\":4800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":419,\"height\":434,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 1\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":1,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Avada Theme\",\"type\":\"text\",\"left\":{\"desktop\":24},\"top\":{\"desktop\":365},\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"avada_big_white_text\",\"time\":1650,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":1,\"timeLast\":4350,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":234,\"height\":45,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"museoslab500regular\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-size\":{\"desktop\":\"42px\"},\"line-height\":{\"desktop\":\"45px\"},\"font-family\":\"museoslab500regular\",\"font-weight\":{\"desktop\":\"400\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"avada theme\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":2,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Over 100 New Features\",\"type\":\"text\",\"left\":{\"desktop\":20},\"top\":{\"desktop\":421},\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"avada_block_white\",\"time\":1850,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":2,\"timeLast\":4150,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":254,\"height\":34,\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":\"100\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-size\":{\"desktop\":\"22px\"},\"line-height\":{\"desktop\":\"34px\"},\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"font-weight\":{\"desktop\":\"400\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"over 100 new feature...\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":3,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','[\"\"]'),(7,3,2,'{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":[\"random\"],\"0\":\"Remove\",\"slot_amount\":[\"7\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"delay\":\"6000\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/freereincenter.com\\/wp-content\\/uploads\\/revslider\\/captions_tall\\/portfolio_2.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"slide_parallax_level\":\"-\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"thumb_dimension\":\"slider\",\"save_performance\":\"off\",\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\"}','[{\"style\":\"\",\"text\":\"Image 1\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/revslider\\/captions_tall\\/box21.png\",\"left\":{\"desktop\":-51},\"top\":{\"desktop\":330},\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":750,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"time\":750,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":0,\"timeLast\":5250,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":419,\"height\":434,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"image 1\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":1,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Avada:\",\"type\":\"text\",\"left\":{\"desktop\":25},\"top\":{\"desktop\":362},\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"avada_big_white_text\",\"time\":1200,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":1,\"timeLast\":4800,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":118,\"height\":45,\"alt\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"museoslab500regular\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-size\":{\"desktop\":\"42px\"},\"line-height\":{\"desktop\":\"45px\"},\"font-family\":\"museoslab500regular\",\"font-weight\":{\"desktop\":\"400\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"avada:\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":2,\"autolinebreak\":false,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}},{\"text\":\"Awesome Sliders\",\"type\":\"text\",\"left\":{\"desktop\":25},\"top\":{\"desktop\":414},\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":300,\"hiddenunder\":false,\"link_slide\":\"nothing\",\"video_autoplay\":false,\"style\":\"avada_block_white\",\"time\":1500,\"endtime\":6000,\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"serial\":2,\"timeLast\":4500,\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"resizeme\":false,\"scrollunder_offset\":\"\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":{\"desktop\":\"auto\"},\"max_width\":{\"desktop\":\"auto\"},\"whitespace\":{\"desktop\":\"nowrap\"},\"width\":190,\"height\":34,\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"padding\":[\"0px\",\"10px\",\"0px\",\"10px\"],\"background-color\":\"#000\",\"background-transparency\":\"100\",\"border-style\":\"none\",\"border-width\":\"0px\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\"},\"inline\":[],\"deformation-hover\":{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"static_styles\":{\"color\":{\"desktop\":\"#fff\"},\"font-size\":{\"desktop\":\"22px\"},\"line-height\":{\"desktop\":\"34px\"},\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\",\"font-weight\":{\"desktop\":\"400\"}},\"subtype\":\"\",\"specialsettings\":{},\"internal_class\":\"\",\"hover\":false,\"alias\":\"awesome sliders\",\"loop_animation\":\"none\",\"loop_easing\":\"linearEaseNone\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"alt_option\":\"media_library\",\"alt\":\"\",\"video_width\":{\"desktop\":\"480\"},\"video_height\":{\"desktop\":\"360\"},\"2d_rotation\":null,\"2d_origin_x\":50,\"2d_origin_y\":50,\"static_start\":\"1\",\"static_end\":\"last\",\"seo-optimized\":false,\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"cover_mode\":\"custom\",\"x_origin_start\":\"50\",\"y_origin_start\":\"50\",\"x_origin_end\":\"50\",\"y_origin_end\":\"50\",\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"endWithSlide\":false,\"unique_id\":3,\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','[\"\"]'),(8,4,1,'{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":6000,\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_4.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\"}','[{\"style\":\"\",\"text\":\"Image 5\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\",\"left\":230,\"top\":71,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1000,\"endtime\":\"5700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":4500,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":5000,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"width\":176,\"height\":37,\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"style\":\"\",\"text\":\"Image 6\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/iphone.png\",\"left\":72,\"top\":29,\"animation\":\"lfr\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":800,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":4500,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":5200,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"1\",\"width\":85,\"height\":166,\"endWithSlide\":true,\"x_start\":\"right\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"Wordpress Theme\",\"type\":\"text\",\"left\":230,\"top\":119,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":1000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_med_green_text\",\"time\":1400,\"endtime\":\"5700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":5000,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":4600,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"width\":-1,\"height\":-1,\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}}]','[]'),(9,4,2,'{\"title\":\"Slide\",\"state\":\"published\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":6000,\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"http:\\/\\/freereincenter.com\\/wp-content\\/\",\"fullwidth_centering\":\"true\",\"background_type\":\"image\",\"slide_bg_color\":\"#E7E7E7\",\"image\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/slide_4.jpg\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\"}','[{\"style\":\"\",\"text\":\"Image 5\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/logo.png\",\"left\":245,\"top\":76,\"animation\":\"lfl\",\"easing\":\"easeOutExpo\",\"speed\":1500,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1400,\"endtime\":\"5700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"0\",\"endTimeFinal\":4500,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":4600,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"width\":176,\"height\":37,\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"left\",\"x_end\":\"inherit\",\"y_start\":\"inherit\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}},{\"text\":\"#1 Selling Theme\",\"type\":\"text\",\"left\":245,\"top\":126,\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":1000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"avada_med_green_text\",\"time\":1700,\"endtime\":\"5700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"1\",\"endTimeFinal\":5000,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":4300,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"width\":-1,\"height\":-1,\"endWithSlide\":true,\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"},\"inline\":[],\"deformation-hover\":[],\"static_styles\":{\"color\":\"#A0CE4E\",\"font-size\":\"24px\",\"line-height\":\"24px\",\"font-family\":\"PTSansRegular, Arial, Helvetica, sans-serif\"}},{\"style\":\"\",\"text\":\"Image 5\",\"type\":\"image\",\"image_url\":\"http:\\/\\/theme-fusion.com\\/avadaxml\\/wp-content\\/uploads\\/2013\\/10\\/ipad2.png\",\"left\":31,\"top\":34,\"animation\":\"lfb\",\"easing\":\"easeOutExpo\",\"speed\":2000,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"time\":1000,\"endtime\":\"\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"serial\":\"2\",\"endTimeFinal\":4000,\"endSpeedFinal\":300,\"realEndTime\":6000,\"timeLast\":5000,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"1\",\"width\":168,\"height\":219,\"endWithSlide\":true,\"x_start\":\"inherit\",\"x_end\":\"inherit\",\"y_start\":\"bottom\",\"y_end\":\"inherit\",\"z_start\":\"inherit\",\"z_end\":\"inherit\",\"x_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_start\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_start\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_y_end\":\"inherit\",\"opacity_start\":\"inherit\",\"opacity_end\":\"inherit\",\"deformation\":{\"parallax\":\"-\"}}]','[]');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

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

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (30,2,0),(29,2,0),(28,2,0),(11476,35,0),(26,2,0),(25,2,0),(24,2,0),(23,2,0),(22,2,0),(21,2,0),(42,1,0),(167,2,0),(11475,35,0),(430,2,0),(428,2,0),(431,2,0),(11477,35,0),(11478,19,0),(11478,20,0),(11478,21,0),(11479,20,0),(11479,21,0),(11479,22,0),(11479,25,0),(11479,26,0),(11480,19,0),(11480,21,0),(11480,23,0),(11480,25,0),(11481,19,0),(11481,21,0),(11481,22,0),(11481,25,0),(11481,32,0),(11482,19,0),(11482,20,0),(11483,19,0),(11483,20,0),(11483,23,0),(11483,25,0),(1876,27,0),(1877,28,0),(1878,30,0),(1879,24,0),(1880,30,0),(1881,28,0),(11485,35,0),(11486,35,0),(11487,35,0),(11488,35,0),(11489,35,0),(11490,35,0),(11491,36,0),(11492,36,0),(11493,36,0),(11494,36,0),(11495,36,0),(11496,36,0),(11497,36,0),(11498,35,0),(11499,35,0),(11500,35,0),(11501,35,0),(11502,35,0),(11503,35,0),(11504,35,0),(11505,35,0),(11506,35,0),(11507,35,0),(11516,35,0),(11517,35,0),(11518,35,0),(11519,35,0),(11520,35,0),(11521,35,0),(11522,35,0),(11529,16,0),(11526,11,0),(11526,14,0),(11526,16,0),(11526,8,0),(11526,9,0),(11526,10,0),(11527,8,0),(11527,9,0),(11528,8,0),(11528,9,0),(211,8,0),(211,9,0),(11529,8,0),(11529,9,0),(4112,33,0),(11530,11,0),(11530,14,0),(11530,17,0),(11530,8,0),(11530,9,0),(4112,4,0),(4112,29,0),(4114,33,0),(4114,4,0),(4114,29,0),(4115,33,0),(4115,4,0),(4115,29,0),(4116,33,0),(4116,4,0),(4116,29,0),(4117,33,0),(4117,4,0),(4117,29,0),(4118,33,0),(4118,4,0),(4118,29,0),(4124,33,0),(4124,4,0),(4124,29,0),(4125,33,0),(4125,4,0),(4125,29,0),(11531,35,0),(11532,35,0),(11533,35,0),(11534,35,0),(11535,35,0),(11536,35,0),(11537,35,0),(11538,35,0),(11539,35,0),(11540,35,0),(11541,35,0),(11542,35,0),(11543,35,0),(11544,35,0),(11545,35,0),(11546,35,0),(11547,35,0),(11548,35,0),(11549,35,0),(11550,35,0),(11551,35,0),(11552,35,0),(11553,35,0),(11554,34,0),(11555,34,0),(11556,34,0),(11557,34,0),(11558,35,0),(11559,35,0),(11560,35,0),(11561,35,0),(11562,35,0),(11563,35,0),(11564,35,0),(11565,35,0),(11566,35,0),(11567,35,0),(11568,35,0),(11569,35,0),(11570,35,0),(11571,35,0),(11572,35,0),(11573,35,0),(11574,35,0),(11575,35,0),(11576,35,0),(11577,35,0),(11578,35,0),(11579,35,0),(11580,35,0),(11581,35,0),(11582,35,0),(11583,35,0),(11584,35,0),(11585,35,0),(11586,35,0),(11587,35,0),(11588,35,0),(11589,35,0),(11590,37,0),(11591,37,0),(11592,37,0),(11593,35,0),(11594,35,0),(11595,35,0),(11596,35,0),(11597,35,0),(11598,35,0),(11599,35,0),(11600,35,0),(11601,35,0),(11602,35,0),(11603,35,0),(11604,35,0),(11605,35,0),(11606,35,0),(11607,35,0),(11608,35,0),(11609,35,0),(11610,35,0),(11611,35,0),(11612,35,0),(11613,35,0),(11614,35,0),(11615,35,0),(11616,35,0),(11617,35,0),(11618,35,0),(11619,35,0),(11620,35,0),(11621,35,0),(11622,35,0),(11623,35,0),(11624,35,0),(11625,35,0),(11626,35,0),(11627,35,0),(11628,35,0),(11629,35,0),(11630,37,0),(11631,37,0),(11632,35,0),(11633,35,0),(11634,35,0),(11635,35,0),(11636,35,0),(11637,35,0),(11638,35,0),(11639,35,0),(11640,35,0),(11641,35,0),(11642,35,0),(11643,35,0),(11644,35,0),(11645,35,0),(11646,35,0),(11647,35,0),(11648,35,0),(11649,35,0),(11650,35,0),(11651,35,0),(11652,35,0),(11653,35,0),(11654,35,0),(11655,35,0),(11656,35,0),(11657,35,0),(11658,35,0),(11659,35,0),(11660,35,0),(11661,35,0),(11662,35,0),(11663,35,0),(11664,35,0),(11665,35,0),(11666,35,0),(11667,35,0),(11668,35,0),(11669,35,0),(11670,35,0),(11671,35,0),(11672,35,0),(11673,35,0),(11674,35,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,13),(3,3,'category','',0,0),(4,4,'product_type','',0,8),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_type','',0,0),(8,8,'category','',0,6),(9,9,'category','',0,6),(10,10,'category','',0,1),(11,11,'post_tag','',0,2),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,2),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,2),(17,17,'post_tag','',0,1),(18,18,'portfolio_skills','',0,0),(19,19,'portfolio_category','',0,5),(20,20,'portfolio_category','',0,4),(21,21,'portfolio_category','',0,4),(22,22,'portfolio_category','',0,2),(23,23,'portfolio_category','',0,2),(24,24,'faq_category','',0,1),(25,25,'portfolio_skills','',0,4),(26,26,'portfolio_skills','',0,1),(27,27,'faq_category','',0,1),(28,28,'faq_category','',0,2),(29,29,'product_tag','',0,8),(30,30,'faq_category','',0,2),(31,31,'portfolio_skills','',0,0),(32,32,'portfolio_skills','',0,1),(33,33,'product_cat','',0,8),(34,34,'nav_menu','',0,4),(35,35,'nav_menu','',0,161),(36,36,'nav_menu','',0,7),(37,37,'nav_menu','',0,5);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,33,'order','0'),(2,33,'product_count_product_cat','8'),(3,29,'product_count_product_tag','8');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'menu1','menu1',0),(3,'Camp Rockbrook','camp-rockbrook',0),(4,'simple','simple',0),(5,'grouped','grouped',0),(6,'variable','variable',0),(7,'external','external',0),(8,'Creative','creative',0),(9,'Design','design',0),(10,'Videos','videos',0),(11,'artwork','artwork',0),(12,'Cat 1','cat1',0),(13,'Design','design',0),(14,'Photo','photo',0),(15,'Slideshow','slideshow',0),(16,'Video','video',0),(17,'Videos','videos',0),(18,'Branding','branding',0),(19,'Cat 1','cat1',0),(20,'Cat 2','cat2',0),(21,'Cat 3','cat3',0),(22,'Cat 4','cat4',0),(23,'Cat 5','cat-5',0),(24,'Design Process','design-process',0),(25,'HTML/CSS','htmlcss',0),(26,'Logo Design','logo-design',0),(27,'Misc','misc',0),(28,'Pricing','pricing',0),(29,'Tag 1','tag-1',0),(30,'Technical','technical',0),(31,'User Interface','user-interface',0),(32,'Web Development','web-development',0),(33,'Category 1','category-1',0),(34,'404','404',0),(35,'Main','main',0),(36,'One Page','one-page',0),(37,'Top','top',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','freereincenter'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','bbp-evergreen'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp390_widgets,wp410_dfw,bws_shortcode_button_tooltip'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','440'),(15,1,'wp_user-settings','editor=tinymce&hidetb=1&libraryContent=browse&wplink=1&mfold=o&imgsize=medium&dfw_width=822&ed_size=412&advImgDetails=hide&post_dfw=off'),(16,1,'wp_user-settings-time','1469021689'),(17,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(18,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(19,1,'nav_menu_recently_edited','2'),(20,1,'closedpostboxes_nav-menus','a:0:{}'),(21,1,'closedpostboxes_nav-menus','a:1:{i:0;s:24:\"nav-menu-theme-locations\";}'),(22,1,'closedpostboxes_page','a:0:{}'),(23,1,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(37,1,'session_tokens','a:1:{s:64:\"84e0114f30c47d36fb5e2c0bdef4f763df26bbeead43fadc5db99205d7e6f824\";a:4:{s:10:\"expiration\";i:1472673537;s:2:\"ip\";s:14:\"68.235.241.165\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36\";s:5:\"login\";i:1472500737;}}'),(25,1,'aim',''),(26,1,'yim',''),(27,1,'jabber',''),(28,1,'first_login','2016-03-31 19:22:39'),(29,1,'last_login','2016-03-31 19:22:39'),(30,1,'wporg_favorites',''),(31,1,'wpseo_ignore_tour','1'),(32,1,'wpseo_seen_about_version','3.1.2'),(34,1,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:168:\"Don\'t miss your crawl errors: <a href=\"http://freereincenter.com/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:153:\"Yoast SEO has been updated to version 3.4.2. <a href=\"http://freereincenter.com/wp-admin/admin.php?page=wpseo_dashboard&intro=1\">Find out what\'s new!</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:19:\"wpseo-dismiss-about\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:2;a:2:{s:7:\"message\";s:303:\"You do not have your postname in the URL of your posts and pages, it is highly recommended that you do. Consider setting your permalink structure to <strong>/%postname%/</strong>.<br/>You can fix this on the <a href=\"http://freereincenter.com/wp-admin/options-permalink.php\">Permalink settings page</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:30:\"wpseo-dismiss-permalink-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}'),(38,1,'_yoast_wpseo_profile_updated','1472504029'),(39,1,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(40,2,'nickname','imh-support'),(41,2,'first_name',''),(42,2,'last_name',''),(43,2,'description',''),(44,2,'rich_editing','true'),(45,2,'comment_shortcuts','false'),(46,2,'admin_color','fresh'),(47,2,'use_ssl','0'),(48,2,'show_admin_bar_front','true'),(49,2,'wp_capabilities','a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}'),(50,2,'wp_user_level','10'),(51,2,'_yoast_wpseo_profile_updated','1472504029'),(52,2,'dismissed_wp_pointers',''),(53,2,'session_tokens','a:1:{s:64:\"3c78042aa517a5661e6e411a107c92f1d5b9457d0b805998571c5e0cb8986d0c\";a:4:{s:10:\"expiration\";i:1472676750;s:2:\"ip\";s:12:\"216.54.31.82\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0\";s:5:\"login\";i:1472503950;}}'),(54,2,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(55,2,'wp_dashboard_quick_press_last_post_id','11683'),(56,2,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:168:\"Don\'t miss your crawl errors: <a href=\"http://freereincenter.com/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:303:\"You do not have your postname in the URL of your posts and pages, it is highly recommended that you do. Consider setting your permalink structure to <strong>/%postname%/</strong>.<br/>You can fix this on the <a href=\"http://freereincenter.com/wp-admin/options-permalink.php\">Permalink settings page</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:30:\"wpseo-dismiss-permalink-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'freereincenter','$P$BWW3z02o6HGvboqO6rOOJkzZJvBbWJ0','freereincenter','freereincenter@gmail.com','http://www.freereincenter.com','2013-03-20 16:15:42','',0,'freereincenter'),(2,'imh-support','$P$B.iNXt0.JpyKVAmm/YKhGkjOfdkaV..','imh-support','docs@inmotionhosting.com','','2016-08-29 20:52:17','',0,'imh-support');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `description` longtext COLLATE utf8mb4_unicode_520_ci,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` longtext COLLATE utf8mb4_unicode_520_ci,
  `attribute_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `order_id` bigint(20) NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(191),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) NOT NULL DEFAULT '0',
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) NOT NULL,
  `location_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) NOT NULL,
  `instance_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `method_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `location_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`(191)),
  KEY `tax_rate_state` (`tax_rate_state`(191)),
  KEY `tax_rate_class` (`tax_rate_class`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

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

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

-- Dump completed on 2016-08-29 17:54:21
